Skip to content

Python library for the TasteKid API. Use the entire API with 3 lines of code.

Notifications You must be signed in to change notification settings

mchccc/TasteKid-API-Python-Client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

TasteKid.com is a cool idea where people add their likes and dislikes and the system applies this to a suggestion system.

Built for you is a Python lib to make it super easy for you to use this within your project. With 3 lines of code - you have enough to work with.

>>> from tastekid.api import Similar
>>> s = Similar()
>>> r = s.query('The Matrix')
>>> r.movies
>>> r.music
>>> r.authors
>>> r.shows
>>> r.books
>>> m = r.movies[0].similar()
>>> m.movies
>>> #... etc

One result <ResultNode>
 
>>> m = r.movies[0] #could be "Minority Report"
>>> m.name #Minority Support
>>> m.type #movie
>>> m.teaser #...some description
>>> m.wikipedia #wikipedia url
>>> m.youtube.id #youtube video id
>>> m.youtube.title #youtube video title
>>> m.youtube.url #url to youtube page


About

Python library for the TasteKid API. Use the entire API with 3 lines of code.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages