Skip to content

🎬 Python 2.7 & 3.4+ package for Filmweb unofficial mobile API. Docs @ https://pyfilmweb.readthedocs.io

License

Notifications You must be signed in to change notification settings

skibbipl/pyfilmweb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyfilmweb

Documentation Status

Python package for Filmweb unofficial mobile API.

Features

  • search function
  • access to movies, games, TV shows, persons, TV channels, cinemas
  • access to trailers and Filmweb productions
  • access to user features
  • no scraping - uses API, which is more fast and reliable
  • support for python 2.7 & 3.4+

Installation

pip install pyfilmweb

Example

from filmweb.filmweb import Filmweb
fw = Filmweb()
items = fw.search('Jak działa jamniczek')
item = items[0] # grab first result
info = item.get_info() # fetch more info
print('Title: {} ({}) Rate: {} ({} votes) Description: {}'.format(item.name, item.year, item.rate, item.votes, info['description_short']))

For more, see full documentation - https://pyfilmweb.readthedocs.io/.

About

🎬 Python 2.7 & 3.4+ package for Filmweb unofficial mobile API. Docs @ https://pyfilmweb.readthedocs.io

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Python 100.0%