Metadata-Version: 2.0
Name: google-play-reader
Version: 0.0.1.dev12
Summary: Tool to get information about Android apps on Google Play
Home-page: https://luiscruz.github.io/
Author: Luis Cruz
Author-email: luismirandacruz@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Dist: requests
Requires-Dist: lxml

google\_play\_reader
====================

|Build Status|

Python3 library to get information about apps on Google Play Store.

Install
-------

::

    $pip install google_play_reader

Usage
-----

::

    from google_play_reader.models import AppEntry

    app_entry = AppEntry("com.newsblur")
    name = app_entry.get_name()
    rating_value, rating_count = app_entry.get_rating()
    downloads = app_entry.get_downloads()
    category = app_entry.get_category()
    # ...

Contributing
------------

Feel free to create pull requests. Be sure that your code passes our
checkers:

::

    $tox -e py36

Tests
~~~~~

Tests are still not being made properly. So far you can check whether it
is working by running:

::

    $python -m google_play_reader.models

.. |Build Status| image:: https://travis-ci.org/luiscruz/google_play_reader.svg?branch=master
   :target: https://travis-ci.org/luiscruz/google_play_reader



