Skip to main content

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.

Install Buffy

pip install DZDBuffy

Example

Lets write some code using the Buffy client

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DZDBuffy-0.2.8.tar.gz (357.3 kB view details)

Uploaded Source

Built Distribution

DZDBuffy-0.2.8-py3-none-any.whl (35.6 kB view details)

Uploaded Python 3

File details

Details for the file DZDBuffy-0.2.8.tar.gz.

File metadata

  • Download URL: DZDBuffy-0.2.8.tar.gz
  • Upload date:
  • Size: 357.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for DZDBuffy-0.2.8.tar.gz
Algorithm Hash digest
SHA256 189c4ee4c1d012fbb86246f06ef89fb007d269bdab23b6243b374af4174f4241
MD5 4fa3ed18524eaf7e0cd7796747364165
BLAKE2b-256 56b834dd7c6507c7ee6d8a4177c5bf2e28729e7cd79445c2edcab27426483b84

See more details on using hashes here.

File details

Details for the file DZDBuffy-0.2.8-py3-none-any.whl.

File metadata

  • Download URL: DZDBuffy-0.2.8-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

Hashes for DZDBuffy-0.2.8-py3-none-any.whl
Algorithm Hash digest
SHA256 3020654905c21a424d6473aad2b8be277470ddfcf1fa84078f2ee26add491e2e
MD5 39d9093bbf89f6b3dd641d2619214cab
BLAKE2b-256 53f90ea34f8a08a6130a0d8dd530c53a71578db1237f0e3270bc473690a8968f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page