Metadata-Version: 2.4
Name: aisastra-aura-sdk
Version: 1.4.0
Summary: Official Python SDK for the AURA Developer Platform Graph API
Author: AiSastra Technologies
Author-email: AiSastra Technologies <developers@aisastra.com>
License: MIT
Project-URL: Homepage, https://aura.aisastra.com/developers
Project-URL: Repository, https://github.com/AlokSingh1212/aura-marketplace
Keywords: aura,aisastra,graph-api,developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# Official Python SDK for AURA Developer Platform

Install from source:

```bash
pip install ./packages/python-sdk
```

```python
from aura_sdk import AuraClient

user = AuraClient.with_user_token("USER_OAUTH_TOKEN")
pages = user.get_pages()

app = AuraClient.with_api_key("aura_live_...")
me = app.get_me()
```
