SDK for the lord of the rings API
Project description
LordOfTheRings SDK
Installation
pip install AaronBlaser-SDK==1.0.1
Usage
- Import the LordOfTheRings class
from lordoftherings import LordOfTheRings
- Initialize the class with your API Token
api = LordOfTheRings('YOUR API TOKEN')
- Make calls to the API
- /movie
all_movies = api.movies().get_all().fetch()
- /movie/{id}
movie = api.movies("5cd95395de30eff6ebccde56").get()
- /movie/{id}/quote
movie_quotes = api.movies("5cd95395de30eff6ebccde5b").quotes.get_all().fetch()
- /quote
quotes = api.quotes().get_all().fetch()
- /quote/{id}
single_quote = api.quotes("5cd96e05de30eff6ebccebc9").get()
- Make calls using sorting, filtering, and pagination
- Filtering
match = api.movies().get_all().filter_by(name='The Lord of the Rings Series').fetch()
negate_match = api.movies().get_all().filter_by(name=('not', 'The Lord of the Rings Series')).fetch()
include = api.movies().get_all().filter_by(name=['The Lord of the Rings Series', 'The Desolation of Smaug']).fetch()
exclude = api.movies().get_all().filter_by(name=[('not', 'The Lord of the Rings Series'), ('not', 'The Desolation of Smaug')]).fetch()
less_than = api.movies().get_all().filter_by(budgetInMillions=('<', 100)).fetch()
greater_than = api.movies().get_all().filter_by(runtimeInMinutes=('>', 160)).fetch()
- Sorting
sorted_movies = api.movies().get_all().sort_by("name:asc").fetch()
- Pagination
paged_movies_1 = api.movies().get_all().limit(2).fetch()
paged_movies_2 = api.movies().get_all().limit(3).page(2).fetch()
paged_movies_3 = api.movies().get_all().limit(1).page(1).offset(1).fetch()
- Combine all Three
filter_sorted_paged = api.movies().get_all().limit(5).filter_by(name=('not', 'The Lord of the Rings Series')).sort_by('name:asc').fetch()
Testing
- Unit Tests
There is a file called test_lordoftherings.py in the tests folder that has some unit tests in it. Run this file to run the tests
- Replace with your token
self.auth_token = 'YOUR API TOKEN'
- Example Usage File
There is a file called test_usage.py in the tests that has many examples of how you can use this SDK. Add your auth token and uncomment the examples you want to run, then run the file.
- Replace with your token
api = LordOfTheRings('YOUR API TOKEN')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file AaronBlaser-SDK-1.0.1.tar.gz.
File metadata
- Download URL: AaronBlaser-SDK-1.0.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d9dcf90755d6a323152e55c56c84585386508beec6d449aaf11ff55ee3ee4a1
|
|
| MD5 |
d9aeddf37852fb6237ad496a35319201
|
|
| BLAKE2b-256 |
3ec4c246abeb7acda982f69ebd1755a6c9c33c80ee23242860e334159c1005e6
|
File details
Details for the file AaronBlaser_SDK-1.0.1-py3-none-any.whl.
File metadata
- Download URL: AaronBlaser_SDK-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d7b27ff68eeae785d775db3e841b0cd832074401381b27ed1087d512ebc0392
|
|
| MD5 |
decc7e5a1e100f6c86b7b0d5918cd333
|
|
| BLAKE2b-256 |
b57a3088294ba81818bf6d6e368a99ad7e4d8256a4c866c635644b50f975f51c
|