Skip to content

userapp-io/userapp-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python library for UserApp

Getting started

Finding your App Id and Token

If you don't have a UserApp account, you need to create one.

  • App Id: The App Id identifies your app. After you have logged in, you should see your App Id instantly. If you're having trouble finding it, follow this guide.

  • Token: A token authenticates a user on your app. If you want to create a token for your logged in user, follow this guide. If you want to authenticate using a username/password, you can acquire your token by calling api.user.login(...)

Installing and loading the library

Install using pip:

$ pip install userapp

Load the library:

import userapp

Creating your first client

api = userapp.API(app_id="YOUR APP ID")

Additional ways of creating a client

If you want to create a client with additional options the easiest way is to pass the options as shown below.

api = userapp.API(debug=True, throw_errors=True)

Calling services and methods

This client has no hard-coded API definitions built into it. It merly acts as a proxy which means that you'll never have to update the client once new API methods are released. If you want to call a service/method all you have to do is look at the API documentation and follow the convention below:

result = api.[service].[method]([argument]=[value])

Some examples

The API user.login and its arguments login and password translates to:

login_result = api.user.login(login="test", password="test")

The API user.invoice.search and its argument user_id translates to:

invoices = api.user.invoice.search(user_id="test123")

The API property.save and its arguments name, type and default_value translates to:

property = api.property.save(name="my new property", type="boolean", default_value=True)

The API user.logout without any arguments translates to:

api.user.logout()

Configuration

Options determine the configuration of a client.

Available options

  • Version (version): Version of the API to call against. Default 1.
  • App Id (app_id): App to authenticate against. Default null.
  • Token (token): Token to authenticate with. Default null.
  • Debug mode (debug): Log steps performed when sending/recieving data from UserApp. Default: False.
  • Secure mode (secure): Call the API using HTTPS. Default: True.
  • Base address (base_address): The address to call against. Default: api.userapp.io.
  • Throw errors (throw_errors): Whether or not to throw an exception when response is an error. I.e. result {"error_code":"SOME_ERROR","message":"Some message"} results in an exception of type userapp.UserAppServiceException.

Setting options

Options are easiest set in the object constructor. I.e. as shown below:

api = userapp.API(debug=True)

Options can also be set after object creation using api.set_option(name, value), as shown below:

api.set_option("debug", True)

Example code

A more detailed set of examples can be found in /examples.

Example code (sign up a new user)

api = userapp.API(app_id="YOUR APP-ID")
api.user.save(login="johndoe81", password="iwasfirst!111")

Example code (logging in and updating a user)

api = userapp.API(app_id="YOUR APP-ID")

api.user.login(login="johndoe81", password="iwasfirst!111")
api.user.save(user_id="self", first_name="John", last_name="Doe")

api.user.logout()

Example code (finding a specific user)

api = userapp.API(app_id="YOUR APP-ID", token="YOUR TOKEN")

search_result = api.user.search(filters={'query':'*bob*'}, sort={'created_at':'desc'})

print(search_result.items)

Versioning

If you want to configure the client to call a specific API version you can do it by either setting the version option, or by calling the client using the convention api.v[version number]. If no version is set it will automatically default to 1.

Examples

Since no version has been specified, this call will be made against version 1 (default).

api.user.login(login="test", password="test")

Since the version has been explicitly specified using options, the call will be made against version 2.

api = userapp.API(version=2)
api.user.login(login="test", password="test")

Since the version has been explicitly specified, the call will be made against version 3.

api.v3.user.login(login="test", password="test")

Error handling

Debugging

Sometimes to debug an API error it's important to see what is being sent/recieved from the calls that one make to understand the underlying reason. If you're interested in seeing these logs, you can set the client option debug to True.

api = userapp.API(debug=True)
api.user.login(login="test", password="test")

Catching errors

When the option throw_errors is set to True (default) the client will automatically throw a userapp.UserAppServiceException exception when a call results in an error. I.e.

try:
	api.user.save(user_id="invalid user id")
except userapp.UserAppServiceException as e:
	if e.error_code == "INVALID_ARGUMENT_USER_ID":
		# Handle specific error
		print("Invalid user!")
	else:
		raise

Setting throw_errors to False is more of a way to tell the client to be silent. This will not throw any service specific exceptions. Though, it might throw a userapp.UserAppException.

result = api.user.save(user_id="invalid user id")

if hasattr(result, 'error_code') and result.error_code == "INVALID_ARGUMENT_USER_ID":
	# Handle specific error
	print("Invalid user!")

Special cases

Even though this client works as a proxy and there are no hard-coded API definitions built into it, there are still a few tweaks that are API specific.

Calling API user.login will automatically set the client token

In other words:

login_result = api.user.login(login="test", password="test")

Is exactly the same as:

login_result = api.user.login(login="test", password="test")
api.set_option("token", login_result.token)

Calling API user.logout will automatically remove the client token

In other words:

api.user.logout()

Is exactly the same as:

api.user.logout()
api.set_option("token", "")

Code Convention Magic

To improve language integration, this library automatically translates naming conventions between the Python and UserApp domain. Ex. a call to an API such as user.getSubscriptionDetails can be done in good ol' Pythonian spirit as api.user.get_subscription_details() and user.paymentMethod.get as user.payment_method.get(), etc.

Todo

  • Integrate with the Tornado IOLoop (use tornado.httpclient)

Credits

Mr. Grue - Awesome guy who did the initial work

License

MIT - For more details, see LICENSE.