Versioning Caching kinda-Proxy for decoupling external responses
Project description
Buffy
Versioning caching kinda-proxy for decoupling external HTTP resources
Maintainer: Tim Bleimehl
status: alpha (WIP - do not use productive yet)
What is this?
Buffy is a server/client framework to buffer/cache your http requests.
Buffy decouples your dependency on external webservers that are not under your control.
Buffy manages HTTP downloads in the background.
You can ignore any issues with external webservers and just focus on your application.
At the moment there is only a Python client but also a REST API for language agnostic use.
Features
- Versioning of changing downloads
- Pre-cache long running downloads before you need them
- Dampen load on external servers - prevent
429 Too Many Requests
errors - As a "smart" Downloader
- Resume broken downloads
- Retry corrupted downloads
At the moment there is only a python client library. But the server has a REST API that can be consumed from any coding language. You are welcome to write a client in your language.
Quick Start Client
Lets have a small example how your Buffy client code could look like.
from buffy.buffypyclient import BuffyPyClient
# connect to buffy server
c = BuffyPyClient(ssl=False)
# create a request
req = c.create_request(
url="https://ftp.ncbi.nlm.nih.gov/pubmed/baseline/pubmed22n0003.xml.gz"
)
# save requested file
req.download_response_content_to(dir="/tmp")
This is all it takes to request a file. Next time the webserver at ftp.ncbi.nlm.nih.go
should be down the buffy client will just serve you the cached answer.
Should your Buffy server be down, the client will fall back to direct downloading the request from the source.
See the documenation for more detailed examples on how to use the client
Quick Start Server
Requirements
Server start
- Download the buffy docker-compose file
wget -O docker-compose.yaml https://git.connect.dzd-ev.de/dzdpythonmodules/buffy/-/raw/main/docker-compose.yaml?inline=false
- Start the Buffy server with docker compose
docker-compose up -d
Connecting the BuffyPyClient
Create a python script.
# connect to buffy server
from buffy.buffypyclient import BuffyPyClient
# connect to buffy server
c = BuffyPyClient(host="localhost", port=8008, ssl=False)
See the documenation for more detailed examples on how to use the client
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file DZDBuffy-0.2.6.tar.gz
.
File metadata
- Download URL: DZDBuffy-0.2.6.tar.gz
- Upload date:
- Size: 357.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a141434d9f75282e27f85753b02215f6d787a514f3062bb93a69795a71bf7cb4 |
|
MD5 | 5fa433579eb9d540100932aedebc67d4 |
|
BLAKE2b-256 | d0578dc57c629e23a91e6437567892d9928538312c29512fc1a04c8b25b96934 |
File details
Details for the file DZDBuffy-0.2.6-py3-none-any.whl
.
File metadata
- Download URL: DZDBuffy-0.2.6-py3-none-any.whl
- Upload date:
- Size: 35.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84c8ec98075129a3762884c9b54d1c6563fd88f9ecade12bce520bb9184ae550 |
|
MD5 | 6b905b66b50698a1e8906f3369652123 |
|
BLAKE2b-256 | 9ad1231ebb3ecb2dc94a8b033795fbd34049d55a0941d272a3778eb26d664ea3 |