Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 633 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 633 Bytes

Python-Adn is an easy way to access ADN data.

>>> app = Adn(access_token="your access token")
>>> app.getUser(user_id=1)
>>> app.createPost(text="test-adn-python") => https://alpha.app.net/nava/post/1009559

If you would like to authenticate with you client_token.

>>> app = Adn(client_secret="your client secret", client_id="Your client id")
>>> app.access_token = app.getClientToken()
>>> app.getUser(user_id=2)

* please note you cannot hit certain endpoints without user access token