Metadata-Version: 2.1
Name: android_category
Version: 0.0.3
Summary: Tool to retrieve the category of an app given a url to the source code (git/local).
Home-page: https://github.com/luiscruz/android_category
Author: Luis Cruz
Author-email: luismirandacruz@gmail.com
License: UNKNOWN
Description: # android_category
        
        Tool to retrieve the category of an app given a url to the source code (git/local).
        
        ## Install
        
        ```
        pip install android-category
        ```
        
        ## Usage
        
        ### As a library
        
        
        ```
        from android_category import android_category
        
        repo = "https://github.com/ccrama/Slide/"
        category = android_category.get_app_category_from_repo_git()
        print(category)
        ```
        
        Should output:
        
        ```
        NEWS_AND_MAGAZINES
        ```
        
        ### CLI
        
        We can also run the tool in the command line:
        
        ```
        android_category https://github.com/ccrama/Slide/
        ```
        
        Should output:
        
        ```
        NEWS_AND_MAGAZINES
        ```
        
        Get more options by running:
        
        ```
        android_category --help
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
