Skip to main content

Library for maintaining tracked requests sessions

Project description

fry

All right! I'm a delivery boy!

Image of Fry

Description

Fry is an extension of the python requests library with two primary goals:

  • Manage stat tracking for requests made through the FrySession
  • Internally manage dependency settings within the FrySession

Usage

import fry

adapter_settings = {
    'http://www.example.com': {
        'retry': {
            'total': 3,
            'read': 3
        },
        'adapter': {
            'pool_maxsize': 4,
        },
        'adapter_config': {
            'timeout': 0.5
        }
    }
}

fsession = fry.FrySession(stats_client=StatsdClient('example'), adapter_settings=adapter_settings)

signature = 'Example.example'
request_params = {'test': 'value'}

response = fsession.make_request('GET', 'http://www.example.com', signature, params=request_params)

Development

Update the version when updating the library in: fry/__init__.py

Build the library locally: python setup.py sdist

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

fry-0.1.4.tar.gz (4.4 kB view hashes)

Uploaded Source

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