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
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: Click (==7.0)
Requires-Dist: GitPython (==2.1.11)
Requires-Dist: google-play-reader (>=0.0.1.dev16)

# 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
```



