Apache Atlas client
Project description
Apache Atlas Client in Python
Apache Atlas client in Python. Only compatible with Apache Atlas REST API v2.
Free software: Apache Software License 2.0
Documentation: https://atlasclient.readthedocs.io.
Get started
>>> from atlasclient.client import Atlas >>> client = Atlas('<atlas.host>', port=21000, username='admin', password='admin') >>> client.entityguid(<guid>).status >>> params = {'attrName': 'name', 'attrValue': 'data', 'offset': '1', 'limit':'10'} >>> search_results = client.search_attribute(**params) >>> for s in search_results: ... for e in s.entities: ... print(e.name) ... print(e.guid)
Features
Lazy loading: requests are only performed when data are required and not yet available
Resource object relationships: REST API from sub-resources are done transparently for the user, for instance the user does not have to know that it needs to trigger a different REST request for getting the classifications of a specific entity.
TODO features
allow multiprocessing
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2018-01-09)
First push.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file atlasclient-0.1.0.tar.gz
.
File metadata
- Download URL: atlasclient-0.1.0.tar.gz
- Upload date:
- Size: 51.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f47d3146c1cbbcd8e74355306f92867d60d5005d8499e092dc3e831cf53f2b94 |
|
MD5 | 02d9ec954b8c2b1bc878804ce10c73d5 |
|
BLAKE2b-256 | bceec4765f32fd121a23ab3a35d12e0a51caf4c890a139cf8770a4267ec569d3 |