Metadata-Version: 2.1
Name: pypi-wayback
Version: 0.1.2
Summary: PyPI wayback machine
Author: Alexander Kovrigin
Author-email: alexander.kovrigin@jetbrains.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
Requires-Dist: flask (>=3.0.3,<4.0.0)
Requires-Dist: gunicorn (>=23.0.0,<24.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# PyPI Wayback Machine

Retrieve the PyPI page of a package at a specific date.

## Usage
Start the program with the following command:
```bash
python -m pypi_wayback_machine --port 8080
```

Access the pypi page of a package at a specific date by visiting the following URL:
```
http://localhost:8080/<date>/<package_name>
```

For example, to access the PyPI page of the package `requests` on the 1st of January 2020, visit:
```
http://localhost:8080/2020-01-01/requests
```

