https://github.com/richrd/pyco-http
Super minimal "pico sized" python HTTP server (or API interface)
https://github.com/richrd/pyco-http
Last synced: 7 months ago
JSON representation
Super minimal "pico sized" python HTTP server (or API interface)
- Host: GitHub
- URL: https://github.com/richrd/pyco-http
- Owner: richrd
- Created: 2014-11-12T18:55:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T14:48:42.000Z (over 8 years ago)
- Last Synced: 2024-12-28T18:39:37.268Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
PycoHTTP
========
Super minimal "pico sized" python HTTP server (or API interface)
## Only supports:
* 1 request at a time, no concurrency
* Only GET requests
* Does NOT serve files (or anything) by default
* Responses are defined via a Python callback
# Purpose:
* Adding minimal web interfaces to Python apps.
# Why do this?
* For learning purpouses
* To use in my projects