Metadata-Version: 1.1
Name: google-play-reader
Version: 0.0.1.dev9
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
Description: # google_play_reader
        
        [![Build Status](https://travis-ci.org/luiscruz/google_play_reader.svg?branch=master)](https://travis-ci.org/luiscruz/google_play_reader)
        
        Python3 library to get information about apps on Google Play Store.
        
        ## Install
        
        ```
        $pip install git+https://github.com/luiscruz/google_play_reader.git
        ```
        
        ## 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
        ```
        
        
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
