gitextract_ihudd3jc/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows/ │ ├── docs.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README/ │ ├── APP_METHODS.md │ ├── DEVELOPER_METHODS.md │ ├── LIST_METHODS.md │ ├── README.md │ ├── REVIEWS_METHODS.md │ ├── SEARCH_METHODS.md │ ├── SIMILAR_METHODS.md │ └── SUGGEST_METHODS.md ├── README.md ├── SECURITY.md ├── build_docs.py ├── docs/ │ ├── README.md │ ├── api/ │ │ ├── app.rst │ │ ├── developer.rst │ │ ├── list.rst │ │ ├── reviews.rst │ │ ├── search.rst │ │ ├── similar.rst │ │ └── suggest.rst │ ├── conf.py │ ├── configuration.rst │ ├── error_handling.rst │ ├── examples.rst │ ├── fields.rst │ ├── index.rst │ ├── installation.rst │ ├── quickstart.rst │ └── requirements.txt ├── examples/ │ ├── README.md │ ├── app_methods_example.py │ ├── developer_methods_example.py │ ├── list_methods_example.py │ ├── reviews_methods_example.py │ ├── search_methods_example.py │ ├── similar_methods_example.py │ └── suggest_methods_example.py ├── gplay_scraper/ │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── core/ │ │ ├── __init__.py │ │ ├── gplay_methods.py │ │ ├── gplay_parser.py │ │ └── gplay_scraper.py │ ├── exceptions.py │ ├── models/ │ │ ├── __init__.py │ │ └── element_specs.py │ └── utils/ │ ├── __init__.py │ ├── constants.py │ ├── error_handling.py │ ├── helpers.py │ └── http_client.py ├── output/ │ ├── app_example.json │ ├── developer_example.json │ ├── list_example.json │ ├── reviews_example.json │ ├── search_example.json │ ├── similar_example.json │ └── suggest_example.json ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── test_app_methods.py ├── test_basic.py ├── test_developer_methods.py ├── test_list_methods.py ├── test_package.py ├── test_reviews_methods.py ├── test_search_methods.py ├── test_similar_methods.py └── test_suggest_methods.py