>>> 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