Metadata-Version: 2.4
Name: ghttp-tool
Version: 0.1.8
Summary: Multifunctional HTTP Lib
Author-email: GPGStudio <gpgstudio.original@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/GPGSTUDIO/GHTTP
Project-URL: Repository, https://github.com/GPGSTUDIO/GHTTP
Project-URL: Bug Reports, https://github.com/GPGSTUDIO/GHTTP/issues
Keywords: HTTP,TCP,Ethernet,Internet,Lan,Wan,
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: 3.16
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Dynamic: license-file

# **Multifunction HTTP lib!**!

Installing:
```bash
pip install ghttp-tool
```

See examples in https://gpgstudio.ru/pypi/ghttp/examples

How to start:
Create simple server:
```python
import ghttp
ghttp.serve()
```

Simple http client:
```python
import ghttp
ghttp.get('localhost:8080')
ghttp.post()
ghttp.delete()
ghttp.put()
s = ghttp.Session()
s.get('localhost:8080')
s.post()
s.delete()
s.put()
# And more...
```

Check how to use:
```python
import ghttp
ghttp.help()
```

In latest version:
> Fixed important bug in with_stream
