Simple image uploader
Project description
About
Microservice for uploading all insecure images to Imgur by url.
Use Redis as cache backend and metadata storage.
Installation
Install uwsgi and python3 plugin:
sudo apt-get install uwsgi uwsgi-plugin-python3
Make virtualenv:
cd /opt pyvenv-3.4 img_service source img_service/bin/activate
Install from PyPI:
pip install imgtohttps
Create config file for app:
[uwsgi] plugins = python34 master = true enable-threads = true processes = 4 module = imgtohttps.application:app virtualenv = /opt/img_service chdir = /opt/img_service touch-reload = /opt/img_service/reload env=APP_SETTINGS=settings.Production
Connect to nginx:
server {
listen 127.0.0.1:2100;
access_log off;
location / {
uwsgi_pass unix:/run/uwsgi/app/img_service/socket;
include uwsgi_params;
}
}
Usage
Request:
curl -X POST -H "Content-Type: application/json" -d '{"url": "http://example.com/image.png"}' http://localhost:2100
Response:
{"url": "https://i.imgur.com/AxQwu0h.png"}
Error:
{"error": "Some error message"}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
imgtohttps-0.5.1.tar.gz
(16.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file imgtohttps-0.5.1.tar.gz.
File metadata
- Download URL: imgtohttps-0.5.1.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d2b9a19d55e3a0891db01c087dc3330d4292871ba659c8e5b0b470e1db6dfbd
|
|
| MD5 |
0bdc7dc799a783dbdc370f0b44a988bb
|
|
| BLAKE2b-256 |
a5b302a6cba8ef104acf20f3617bca3a9f690181875936f3609553a4752db364
|
File details
Details for the file imgtohttps-0.5.1-py2.py3-none-any.whl.
File metadata
- Download URL: imgtohttps-0.5.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eeb0613fe3f53f0d0eff1f3b89f9a8e45df59e32c8549a78ab3f178bdb30d2c
|
|
| MD5 |
1bb2dbc9ecd5da06b772a85e32ab9bb4
|
|
| BLAKE2b-256 |
954902c705922ae27d87a7eddf1b2199ea162f95b618640eb88a0df116f888db
|