Metadata-Version: 2.4
Name: pupptyeer
Version: 0.8.0
Summary: Alias for pupptyeer-client: the Python client for the pupptyeer daemon. Install pupptyeer-client directly.
Project-URL: Homepage, https://github.com/PeterSR/pupptyeer
Project-URL: Repository, https://github.com/PeterSR/pupptyeer
Project-URL: Issues, https://github.com/PeterSR/pupptyeer/issues
Project-URL: Real client (pupptyeer-client), https://pypi.org/project/pupptyeer-client/
Author: PeterSR
License-Expression: MIT
License-File: LICENSE
Keywords: daemon,ndjson,pty,pupptyeer,terminal,tty
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Terminals
Requires-Python: >=3.8
Requires-Dist: pupptyeer-client>=0.5.0
Description-Content-Type: text/markdown

# pupptyeer

> **Use [`pupptyeer-client`](https://pypi.org/project/pupptyeer-client/) instead.**
> This package is only a thin alias that exists so the bare `pupptyeer` name
> resolves on PyPI. It contains no implementation of its own.

`pip install pupptyeer` simply pulls in [`pupptyeer-client`](https://pypi.org/project/pupptyeer-client/)
and re-exports its public API, so this works:

```python
from pupptyeer import PupptyeerClient   # same class as pupptyeer_client.PupptyeerClient
```

But you should depend on **`pupptyeer-client`** directly:

```sh
pip install pupptyeer-client
```

```python
from pupptyeer_client import PupptyeerClient
```

That is the real, documented Python client for the
[pupptyeer](https://github.com/PeterSR/pupptyeer) daemon (NDJSON over a unix socket, standard library
only). See its [README](https://pypi.org/project/pupptyeer-client/) and the
[protocol spec](https://github.com/PeterSR/pupptyeer/blob/main/PROTOCOL.md) for usage.

## License

MIT
