Metadata-Version: 2.1
Name: defweb
Version: 0.1.2
Summary: Python webserver with https and upload support
Home-page: UNKNOWN
Author: Paul Tikken
Author-email: paul.tikken@gmail.com
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=3.5
Description-Content-Type: text/markdown

#### DEFWEB

Defweb is an enhancement of the standard http.server of python3.
Defweb supports https en file uploads.

##### Installing

Installing the package via pypi:

```
pip install defweb
```
##### Options

```bash
usage: __main__.py [-h] [-s] [-r] [-p PORT] [-b BIND] [-d [DIR]]
                   [-i [SERVER NAME]]

optional arguments:
  -h, --help           show this help message and exit
  -s, --secure         use https instead of http
  -r, --recreate_cert  re-create the ssl certificate
  -p PORT              port to use; defaults to 8000
  -b BIND              ip to bind to; defaults to 127.0.0.1
  -d [ DIR ]           path to use as document root
  -i [ SERVER NAME ]   server name to send in headers
```
##### Usage

```bash
python3 -m defweb
```

