Metadata-Version: 2.1
Name: pip-author-stats
Version: 0.0.1
Summary: A tool to generate statistics report for PyPI authors
Home-page: https://github.com/chigwell/pip_author_stats
Author: Eugene Evstafev
Author-email: chigwel@gmail.com
License: UNKNOWN
Description: # PyPI Author Stats Reporter
        
        This tool is designed to fetch and analyze package data from PyPI for a specific author. It generates comprehensive reports about the packages including total downloads, average downloads, and identifies the most downloaded package.
        
        ## Features
        
        - Fetches package names associated with a specific PyPI author.
        - Retrieves download statistics for each package.
        - Generates a detailed JSON report including summary statistics and individual package data.
        
        ## Installation
        
        Ensure you have Python and the required packages installed:
        
        ```bash
        pip install requests pandas matplotlib json5 bs4
        ```
        
        ## Usage
        
        To use the script, simply run it with Python and specify the PyPI author:
        
        ```python
        author = "your-pypi-author-username"
        report = generate_report(author)
        print(report)
        ```
        
        The script will output a JSON formatted report with detailed statistics about the author's packages on PyPI.
        
        ## Report Details
        
        The generated report contains:
        
        - Total number of packages by the author.
        - Total number of downloads across all packages.
        - Average number of downloads per package.
        - Maximum and minimum number of downloads for individual packages.
        - The name of the most downloaded package.
        
        ## Contributing
        
        Contributions to improve this script are welcome. Please feel free to fork, modify, and make pull requests.
        
        ## License
        
        This script is open-sourced software licensed under the MIT license.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
