A simple wrapper for Cinema21 private API.
pip install cinema21
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])You can read the source code. The whole code is self explanatory.