Metadata-Version: 2.1
Name: write-pypistat
Version: 0.2.0
Summary: write-pypistat makes it easy to collect, filter and save pypi statistics to csv files.
Home-page: https://github.com/veghdev/write-pypistat
License: Apache 2.0
Project-URL: Documentation, https://github.com/veghdev/write-pypistat
Project-URL: Source, https://github.com/veghdev/write-pypistat
Project-URL: Tracker, https://github.com/veghdev/write-pypistat/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

[![CI](https://github.com/veghdev/write-pypistat/workflows/CI/badge.svg?branch=main)](https://github.com/veghdev/write-pypistat/actions/workflows/ci.yml)


# About The Project

write-pypistat makes it easy to collect, filter and save pypi statistics to csv files.

# Installation

write-pypistat requires `pypistats` and `pandas` packages.

```sh
pip install write-pypistat
```

# Usage

```python
from writepypistat import WritePypiStat

package = "pypistats"
outdir = "stats/pypistat"
write_pypistat = WritePypiStat(package, outdir)

write_pypistat.write_pypistat.write_pypistat(
    stat_type="system",
    start_date="2022",
    end_date="2022-03",
)
```

Visit our [wiki](https://github.com/veghdev/write-pypistat/wiki) site for more details.

# Contributing

We welcome contributions to the project, visit our [contributing](https://github.com/veghdev/write-pypistat/blob/main/CONTRIBUTING.md) guide for further info.

# Contact

Join our [discussions](https://github.com/veghdev/write-pypistat/discussions) page if you have any questions or comments.

# License

Copyright © 2022.

Released under the [Apache 2.0 License](https://github.com/veghdev/write-pypistat/blob/main/LICENSE).


