Metadata-Version: 2.1
Name: apache-atlas
Version: 0.0.1
Summary: Apache Atlas Python Client
Home-page: https://github.com/apache/atlas/tree/master/intg/src/main/python
Author: Apache Atlas
Author-email: dev@atlas.apache.org
License: Apache LICENSE 2.0
Keywords: atlas client,apache atlas
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.24)

# Apache Atlas - Python client

This is a python library for [Atlas](http://atlas.apache.org). Users can integrate with Atlas using the python client.
Currently, compatible with Python 3.6+

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install python client for Atlas.

```bash
> pip install apache-atlas
```
\
Verify if apache-atlas client is installed:
```bash
> pip list

Package      Version
------------ ---------
apache-atlas 0.0.1
```

## Usage

```python create_glossary.py```
```python
# create_glossary.py

from apache_atlas.base_client import AtlasClient
from apache_atlas.model.glossary import AtlasGlossary

client        = AtlasClient("http://localhost:31000", "admin", "admin123")
glossary      = AtlasGlossary(None, None, "Glossary_Test", "This is a test Glossary")
test_glossary = client.glossary.create_glossary(glossary)

print('Created Test Glossary with guid: ' + test_glossary.guid)
```
For more examples, checkout `sample-app` python  project in [atlas-examples](https://github.com/apache/atlas/tree/master/atlas-examples/sample-app/src/main/python) module.

