https://github.com/descent098/ezcv-http
A repo with the various methods to integrate an http server with live reloading into ezcv
https://github.com/descent098/ezcv-http
Last synced: 4 months ago
JSON representation
A repo with the various methods to integrate an http server with live reloading into ezcv
- Host: GitHub
- URL: https://github.com/descent098/ezcv-http
- Owner: Descent098
- License: mit
- Created: 2022-04-15T06:24:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-30T02:34:26.000Z (over 3 years ago)
- Last Synced: 2025-06-29T15:05:42.715Z (7 months ago)
- Language: Python
- Homepage:
- Size: 5.73 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EZCV HTTP
A repo with the various methods I tested to create several pieces of functionality:
1. Content reloading (update the output when content is changed)
2. An http server into [ezcv](https://github.com/Descent098/ezcv)
3. Live reloading
All of these folders implement some, or all of these peices of functionality. They're documented here for posterity as well as a resource for learning various methods of implementing this functionality.
## Project breakdown
| Project name | Required libraries | Functionality implemented |
| --------------------- | ------------------------------------------------------------ | ---------------------------------------------- |
| Flask ezcv livereload | [ezcv](https://github.com/Descent098/ezcv), [Flask](https://flask.palletsprojects.com/en/2.1.x/), [livereload](https://github.com/lepture/python-livereload) | Content reloading, http server, live reloading |
| Flask ezcv | [ezcv,](https://github.com/Descent098/ezcv) [Flask](https://flask.palletsprojects.com/en/2.1.x/) | Content reloading, http server |
| Watchdog Generation | [ezcv](https://github.com/Descent098/ezcv), [watchdog](https://github.com/gorakhargosh/watchdog/) | Content reloading |
| WSGI Native Testing | [ezcv](https://github.com/Descent098/ezcv), [werkzeug](https://werkzeug.palletsprojects.com/en/2.1.x/) | http server |
| Socket Testing | [ezcv](https://github.com/Descent098/ezcv) | http server |