Metadata-Version: 2.1
Name: pypi-examiner
Version: 0.3
Summary: A simple client to fetch the few things PyPI does not expose via API
Home-page: https://chris.partridge.tech/
Author: Chris Partridge
Author-email: tweedge-public@partridge.tech
License: Apache License 2.0
Project-URL: Source, https://github.com/tweedge/pypi-examiner
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# pypi-examiner

[![License](https://img.shields.io/github/license/tweedge/pypi-examiner)](https://github.com/tweedge/pypi-examiner)
[![Downloads](https://img.shields.io/pypi/dm/pypi-examiner)](https://pypi.org/project/pypi-examiner/)
[![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)

PyPI Examiner scrapes PyPI for a few things the JSON API doesn't provide. Currently, this supports:

* Finding the current maintainer's usernames for any package

This package should not be considered especially stable at this time, and may cease to function or may be heavily revised without notice.

### Usage

```
pypi = examiner()
result = pypi.who_maintains("unishox2_py3")
# result is: ["tweedge"]
```

If the package does not exist or another error has arose, then the result is `[""]`
