Metadata-Version: 2.4
Name: ezhttpy
Version: 0.1.0
Summary: Jednoduchý HTTP server s vlastnými príkazmi a HTML podporou
Home-page: https://easy_http.denisvarga.eu/
Author: Denis Varga
Author-email: mail@denisvarga.eu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary



# Easy HTTP Server 

This is a simple HTTP server for Raspberry Pi or PC that can:

* display custom HTML files
* respond to custom POST requests
* has a `webserverautofile` switch for easy usage

## Usage

```python
from easy_http_server import EasyHTTPServer

server = EasyHTTPServer(port=8000, webserverautofile=True)
server.start()
```
