rt_api
rt_api is a python client for the Rooster Teeth Api. It allows easy access to resources such as episodes, seasons, shows, and users.
It supports Python 2.7, 3.4-3.7, as well as PyPy.
Installation
To install rt_api, run:
pip install rt_api
Alternatively rt_api can be installed from source by cloning the repository and running setuptools:
git clone https://github.com/NickMolloy/rt_api
cd rt_api
python setup.py install
Using rt_api
The main entry point for the library is the Api class. Instantiating this class will give access to all of the API functionality. For example:
from rt_api.api import Api
api = Api() # Instantiate api. Generates default access token.
latest_episodes = api.episodes() # Get an iterable of the latest episodes
newest_episode = next(latest_episodes)
print(newest_episode.title) # Print out episode title
show = newest_episode.show # Get a reference to the show the episode is from
print(show.name) # Print out name of the show
If you want to be able to perform actions as a specific user, you must first authenticate:
from rt_api.api import Api
api = Api()
api.authenticate("myUsername", "myPassword") # Authenticate as myUsername
From this point, all actions performed will be done in the context of that user. For instance, the current user is available through the me attribute of the api:
my_user = api.me # Get the user object associated with the authenticated user
my_user.queue # Get the current user's episode watch list
For more information on the available actions, see the package documentation, or some examples.
Release files for rt-api 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rt_api-1.1.1.tar.gz | 14.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rt_api-1.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.2 kB
Release files / rt_api-1.1.1.tar.gz
| Download URL | rt_api-1.1.1.tar.gz |
|---|---|
| Size | 14.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2b845922bcd8c7da770ff2f5b43c81ba975818dcf5cd1319064c74d90f986df3
|
|
BLAKE2b-256 checksum How to use checksums |
04dd3846a54e08064d3a305883a09e36973ab3de055788c8d33db18f7e44bfae
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / rt_api-1.1.1-py3-none-any.whl
| Download URL | rt_api-1.1.1-py3-none-any.whl |
|---|---|
| Size | 14.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5e44400f66c6f08f885b4360f786c92361c86eb96573852f3d2c0821f99375b3
|
|
BLAKE2b-256 checksum How to use checksums |
17ea9aab59a8372de6045d03d872f26b6f4e145ec43dbd993980c4f672e18010
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |