cinema21

A simple Cinema21 API wrapper.


Keywords
cinema21, unofficial, api
License
MIT
Install
pip install cinema21==1.0.1

Documentation

cinema21-py

PyPI - Status PyPI - Version PyPI - License PyPI - Python Version

A simple wrapper for Cinema21 private API.

Installation

pip install cinema21

Examples

Initialize

>>> import cinema21
>>> cinema = cinema21.Cinema21()

Fetch available city

>>> cinema.cities()
Cities(cities=[list of City object])

Fetch currently playing movie by city

>>> cinema.playing(10)  # 10 is the id of Jakarta
Movies(movies=[list of Movie object])

References

You can read the source code. The whole code is self explanatory.