Eventually it will be the most lightweight REST API built with Flask.
- GET and POST requests
- Custom headers
- Raw request input
- Real-time response
- No database required
- (CORS) handling via proxy
- Python 3.x
- pip (Python package installer)
├── README.md ├── requirements.txt ├── server.py ├── styles.css ├── scripts.js ├── index.html
- Start the Flask server:
python server.py
-
Open web browser to: http://localhost:5000
-
Make API requests
server.py
: Flask backend that handles proxy requestsindex.html
: Main application interfacestyles.css
: Application stylingscripts.js
: Frontend functionality
- Invalid endpoints
- Network failures
- Malformed requests
- Server errors
- This sucks today. Tomorrow it will suck less.