Metadata-Version: 2.1
Name: package_name_checker
Version: 1.0.0
Summary: A Flask application to check app details from Google Play Store based on package names.
Home-page: https://github.com/shishir1337/playstore_app_package_name_checker_package
Author: Md. Shishir Ahmed
Author-email: mdshishirahmed811@gmail.com
License: MIT
Keywords: flask google-play-store scraper
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# Package Name Checker

Package Name Checker is a Python package that allows you to check the uniqueness of app package names on the Google Play Store.

## Installation

You can install `package_name_checker` via pip:

```bash
pip install package_name_checker
```

## Usage

### Example Code

Here's an example of how to use `package_name_checker`:

```python
from package_name_checker import PackageNameChecker

# Initialize PackageNameChecker
checker = PackageNameChecker()

# Example usage to check a package name
package_name = "com.facebook.katana"
result = checker.check_package_name(package_name)

if result:
    print(f"Package name '{package_name}' exists on Google Play Store.")
    print(f"Details: {result}")
else:
    print(f"Package name '{package_name}' does not exist on Google Play Store.")
```

### Notes:
- Ensure you have set up your Google Custom Search API and obtained the necessary API key and search engine ID (`cx`). Replace `"your_google_custom_search_api_key"` and `"your_search_engine_id"` with your actual API key and search engine ID from Google Developer Console.
- Make sure to include a `LICENSE` file in your project directory with the appropriate license text (e.g., MIT License).

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
```

This README.md file now provides a basic structure for users to understand what your package does, how to install it, and how to use it with an example code snippet. Adjust the content and sections according to your specific package details and requirements.
