Metadata-Version: 2.1
Name: DZDBuffy
Version: 0.7.0
Summary: Versioning Caching kinda-Proxy for decoupling external responses
Home-page: https://git.connect.dzd-ev.de/dzdpythonmodules/buffy
Author: Tim Bleimehl
Author-email: tim.bleimehl@helmholtz-muenchen.de
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi
Requires-Dist: uvicorn
Requires-Dist: pydantic
Requires-Dist: requests
Requires-Dist: redis
Requires-Dist: croniter
Requires-Dist: DZDConfigs
Requires-Dist: getversion
Requires-Dist: Click
Provides-Extra: docs
Requires-Dist: mkdocs ; extra == 'docs'
Requires-Dist: mkdocstrings[python] ; extra == 'docs'
Requires-Dist: mkdocs-autorefs ; extra == 'docs'
Requires-Dist: mkdocs-material ; extra == 'docs'
Requires-Dist: mkdocs-render-swagger-plugin ; extra == 'docs'
Provides-Extra: test
Requires-Dist: shittywebserver ; extra == 'test'

<img align="right" alt=" " width="200px" src="logo.png">

# Buffy

**Versioning and caching kinda-proxy for decoupling external HTTP resources**

Maintainer: Tim Bleimehl

Status: alpha  (WIP - **do not use productive yet**)

Source: [https://git.connect.dzd-ev.de/dzdpythonmodules/buffy](https://git.connect.dzd-ev.de/dzdpythonmodules/buffy)

User documentation: [https://dzd-ev.github.io/buffy-docs.github.io/](https://dzd-ev.github.io/buffy-docs.github.io/)

Public issue tracker: [https://github.com/dzd-ev/buffy-docs.github.io/issues](https://github.com/dzd-ev/buffy-docs.github.io/issues)

___

- [Buffy](#buffy)
  - [What is this?](#what-is-this)
  - [Features](#features)
  - [Intended purpose](#intended-purpose)
  - [Clients](#clients)
  - [Quick Start Client](#quick-start-client)
    - [Install Buffy](#install-buffy)
    - [Example](#example)
  - [Quick Start Server](#quick-start-server)
    - [Requirements](#requirements)
    - [Server start](#server-start)
    - [Connecting the BuffyPyClient](#connecting-the-buffypyclient)

___

## 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.  

## Features

___

* Caching of remote http resources (a.k.a. `files you downloaded from the web`)
* Versioning of remote http resources 
* Managing of remote http resources with grouping, tagging and pinning
* Background pre-download of remote http resources
* "Smart"-Downloader
    * Resume broken downloads
    * Retry corrupted downloads

## Intended purpose

* Make your software resiliant against changing (transformation,discontinuation,outage,...) external http resources
* Dampen load on external servers - prevent `429 Too Many Requests` errors
* Pre-cache long running downloads before you need them


## Clients

At the moment there is only a [python client library](https://pypi.org/project/DZDBuffy/).  
But the Buffy-server has a [REST API](https://dzd-ev.github.io/buffy-docs.github.io/buffyserver-api/) that can be consumed from any coding language. 

**You are very welcome to contribute a client in your language  👋😃**
## Quick Start Client

___

Lets have a small example how your Buffy client code could look like.

### Install Buffy

```bash
pip install DZDBuffy
```

### Example

Lets write some code using the Buffy client


```python
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](https://dzd-ev.github.io/buffy-docs.github.io/BuffyPyClient-examples/) for more detailed examples on how to use the client


## Quick Start Server

___

### Requirements

* [Docker](https://docs.docker.com/engine/install/)
* [Docker-compose](https://docs.docker.com/compose/install/compose-plugin/)

### Server start

* Download the buffy docker-compose file 

```bash
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

```bash
docker-compose up -d
```

### Connecting the BuffyPyClient

Create a python script. 

```python
# connect to Buffy-server
from buffy.buffypyclient import BuffyPyClient

# connect to Buffy-server
c = BuffyPyClient(host="localhost", port=8008, ssl=False)
```

See the [documentation](https://dzd-ev.github.io/buffy-docs.github.io/BuffyPyClient-examples/) for more detailed examples on how to use the client
