Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lopezloo/pyfilmweb
π¬ Python package for Filmweb unofficial API.
https://github.com/lopezloo/pyfilmweb
api package python python-2 python-3 python-api
Last synced: about 2 months ago
JSON representation
π¬ Python package for Filmweb unofficial API.
- Host: GitHub
- URL: https://github.com/lopezloo/pyfilmweb
- Owner: lopezloo
- License: gpl-3.0
- Archived: true
- Created: 2017-01-10T19:15:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T19:56:58.000Z (almost 3 years ago)
- Last Synced: 2024-09-25T19:22:39.103Z (about 2 months ago)
- Topics: api, package, python, python-2, python-3, python-api
- Language: Python
- Homepage: https://pyfilmweb.readthedocs.io
- Size: 86.9 KB
- Stars: 15
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=========
pyfilmweb
=========
.. image:: https://readthedocs.org/projects/pyfilmweb/badge/
:target: https://pyfilmweb.readthedocs.org/
:alt: Documentation Status______
**NOTE: This package doesn't work anymore.** Sadly Filmweb decided to discontinue their app and shut down API.
______Python package for Filmweb unofficial 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 faster and more reliable
* support for Python 2.7 & 3.4+============
Installation
============
.. code::pip install pyfilmweb
=======
Example
=======
.. code:: pythonfrom 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/.