An open API service indexing awesome lists of open source software.

https://github.com/dfithian/blob


https://github.com/dfithian/blob

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Blob

Store shareable text blobs.

## Setup

```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
APP_TITLE="My App" REDIRECT_URL=https://google.com gunicorn server:app
```

```
$ curl -X PUT -H 'X-Blob-Pin: bar' http://localhost:8080/blob/foo -d 'bazbin'
$ curl -X GET -H 'X-Blob-Pin: bar' http://localhost:8080/blob/foo
{ "blob": "bazbin", "modifiedAt": ... }
```