Metadata-Version: 2.0
Name: cinema21
Version: 1.0.1
Summary: A simple Cinema21 API wrapper.
Home-page: https://github.com/cwkfr/cinema21-py
Author: CWKFR
Author-email: cwkfr@protonmail.com
License: MIT
Project-URL: Bug Reports, https://github.com/cwkfr/cinema21-py/issues
Description-Content-Type: UNKNOWN
Keywords: cinema21 unofficial api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: requests

cinema21-py
=======================


.. image:: https://img.shields.io/pypi/status/cinema21.svg
   :target: https://pypi.python.org/pypi/cinema21
   :alt: PyPI - Status

.. image:: https://img.shields.io/pypi/v/cinema21.svg
   :target: https://pypi.python.org/pypi/cinema21
   :alt: PyPI - Version

.. image:: https://img.shields.io/pypi/l/cinema21.svg
   :target: https://pypi.python.org/pypi/cinema21
   :alt: PyPI - License

.. image:: https://img.shields.io/pypi/pyversions/cinema21.svg
   :target: https://pypi.python.org/pypi/cinema21
   :alt: 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.


