Skip to main content

SDK for the lord of the rings API

Project description

LordOfTheRings SDK

Installation

pip install AaronBlaser-SDK==1.0.1

Usage

  1. Import the LordOfTheRings class
from lordoftherings import LordOfTheRings
  1. Initialize the class with your API Token
api = LordOfTheRings('YOUR API TOKEN')
  1. 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()
  1. 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

  1. 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'
    
  1. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AaronBlaser-SDK-1.0.1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

AaronBlaser_SDK-1.0.1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

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

Hashes for AaronBlaser-SDK-1.0.1.tar.gz
Algorithm Hash digest
SHA256 3d9dcf90755d6a323152e55c56c84585386508beec6d449aaf11ff55ee3ee4a1
MD5 d9aeddf37852fb6237ad496a35319201
BLAKE2b-256 3ec4c246abeb7acda982f69ebd1755a6c9c33c80ee23242860e334159c1005e6

See more details on using hashes here.

File details

Details for the file AaronBlaser_SDK-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for AaronBlaser_SDK-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8d7b27ff68eeae785d775db3e841b0cd832074401381b27ed1087d512ebc0392
MD5 decc7e5a1e100f6c86b7b0d5918cd333
BLAKE2b-256 b57a3088294ba81818bf6d6e368a99ad7e4d8256a4c866c635644b50f975f51c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page