https://github.com/owlinux1000/aos
Object storage API sample
https://github.com/owlinux1000/aos
api fastapi object-storage python
Last synced: 17 days ago
JSON representation
Object storage API sample
- Host: GitHub
- URL: https://github.com/owlinux1000/aos
- Owner: owlinux1000
- Created: 2019-04-18T02:51:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T12:29:31.000Z (about 7 years ago)
- Last Synced: 2025-09-01T20:51:08.168Z (9 months ago)
- Topics: api, fastapi, object-storage, python
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alicemacs Object Storage API (AOS)
[](https://travis-ci.org/owlinux1000/aos)
This is an example of object storage service's api implemented by fastapi.
## Features
AOS provided the following RESTful API
- Upload a file
- Download a file
- Download a meta data of uploaded file
- Delete an uploaded file
## Deploy
You can easy to use AOS via Docker!
```
git clone https://github.com/owlinux1000/aos
cd aos
docker build -t aos:latest .
docker run -p 8000:8000 aos:latest
```