https://github.com/geeksloth/flaskimio
Flask based api for image uploading and display without saving to storage.
https://github.com/geeksloth/flaskimio
buffer flask
Last synced: 4 months ago
JSON representation
Flask based api for image uploading and display without saving to storage.
- Host: GitHub
- URL: https://github.com/geeksloth/flaskimio
- Owner: geeksloth
- Created: 2022-08-15T17:15:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-18T15:55:41.000Z (almost 4 years ago)
- Last Synced: 2025-04-11T20:52:04.650Z (about 1 year ago)
- Topics: buffer, flask
- Language: Python
- Homepage:
- Size: 2.7 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flaskimio
Flask based api for image uploading and display **WITHOUT** saving to storage.
Below figure shows the image returned from **server's memory (RAM)**, NOT STORAGE (HDD). This can be used as a template for image processing, AI, edged computing systems.

## Prerequisite
Pillow and Flask are required for this template. If not installed please install them via your package manager, e.g., pip, apt, etc:
```bash
python3 -m pip install Pillow Flask
```
## Installation
1. Clone this repository and change directory into it:
```bash
git clone https://github.com/geeksloth/flaskimio.git && cd flaskimio
```
2. run the ```main.py``` script by
```python
python3 main.py
```
3. Access the api via typing ```ip:port``` in browser:
```bash
http://192.168.0.101:5000
```