whttp

Create the skeleton for a python package/project


License
MIT
Install
pip install whttp==0.0.1

Documentation

whttp

Command line interface and Python library wrapper for the winhttp library

PyPi Code style: black

How to install

pip install whttp

How to use (CLI)

whttp https://www.example.org/

How to use (Python Library)

from whttp import HTTPClient
client = HTTPClient()
reply = client.get('https://www.example.org/')
print(reply.text)