Skip to content

Amir-Hossein-ID/IMDBee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IMDBee

A python module to retrieve data from imdb

Install

$ python -m pip install IMDBee

How to Use

from IMDBee import Query, fetch

query = Query()
title = query.title(id='tt0468569')

# tell the library which details you need
title.title_text.text()

# fetch the requested data
title = fetch(query).title

print(title.title_text.text)s # -> "The Dark Knight"

Why IMDBee

  • Unlike similar libraries IMDBee doesn't scrape title pages to get info, it gets the only information you need without any additional data and this makes it fast.
  • ...

TODO

  • auto complete field names
  • documentation

About

A python module to retrieve data from imdb

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages