Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 536 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 536 Bytes

Images Downloader App

FastAPI application to download thousands of images asynchronously in few minutes.

Run API in development mode

$ pip install -r requirements.txt
$ export PYTHON_ENV=development
$ uvicorn src.main:app --reload

Run API in production mode

$ docker build -t images-downloader:latest .
$ docker-compose up -d