Metadata-Version: 2.4
Name: protocolcodes
Version: 0.1.0
Summary: HTTP status codes and protocol reference API client — protocolcodes.com
Project-URL: Homepage, https://protocolcodes.com
Project-URL: Documentation, https://protocolcodes.com/developers/
Project-URL: Repository, https://github.com/fyipedia/protocolcodes
Project-URL: Issues, https://github.com/fyipedia/protocolcodes/issues
Project-URL: Changelog, https://github.com/fyipedia/protocolcodes/releases
Author: FYIPedia
License-Expression: MIT
License-File: LICENSE
Keywords: api,http,networking,protocol,rest,rfc,status-code,web
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Provides-Extra: all
Requires-Dist: httpx>=0.27; extra == 'all'
Requires-Dist: mcp>=1.0; extra == 'all'
Requires-Dist: rich>=13.0; extra == 'all'
Requires-Dist: typer>=0.15; extra == 'all'
Provides-Extra: api
Requires-Dist: httpx>=0.27; extra == 'api'
Provides-Extra: cli
Requires-Dist: rich>=13.0; extra == 'cli'
Requires-Dist: typer>=0.15; extra == 'cli'
Provides-Extra: mcp
Requires-Dist: mcp>=1.0; extra == 'mcp'
Description-Content-Type: text/markdown

# protocolcodes

HTTP status codes and protocol reference API client — [protocolcodes.com](https://protocolcodes.com)

## Install

```bash
pip install protocolcodes
```

## Quick Start

```python
from protocolcodes.api import ProtocolCodes

with ProtocolCodes() as api:
    results = api.search("404")
    print(results)
```

## License

MIT
