Intelligent asynchronous HTTP client
Project description
Introduction
Fido is a simple, asynchronous HTTP client built on top of Crochet and Twisted with an implementation inspired by the book “Twisted Network Programming Essentials”. It is intended to be used in environments where there is no event loop, and where you cannot afford to spin up lots of threads (otherwise you could just use a ThreadPoolExecutor).
Here is an example of using Fido:
future = fido.fetch('http://www.example.com') # Work happens in a background thread... response = future.wait(timeout=2) print(response.body)
Frequently Asked Questions
Do you support TLS?
Yes, although this has not been vetted by security professionals. One should use this functionality at their own risk. In more detail: Fido uses the Twisted defaults, which delegate to pyOpenSSL and service_identity for the actual TLS work.
Note that to get this you need to install the tls extra:
$ pip install --upgrade fido[tls]
Is the API stable?
Probably not. However, it is currently very simple, so it shouldn’t be hard to upgrade code if there’s a non backwards-compatible change.
Do I need to initialize Crochet?
No, crochet.setup is automatically invoked by fido.fetch.
How do I use an http_proxy?
Just set the http_proxy (all lowercase) environment variable to the URL of the http proxy before starting your python process.
Example:
$ export http_proxy="http://localhost:8000" $ python -c 'import fido; print(fido.fetch("http://www.example.com").wait().body)'
Installation
Fido can be installed using pip install, like so:
$ pip install --upgrade fido
If you want TLS capabilities:
$ pip install --upgrade fido[tls]
License
Copyright (c) 2015, Yelp, Inc. All rights reserved. Apache v2
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
File details
Details for the file fido-4.2.0.tar.gz
.
File metadata
- Download URL: fido-4.2.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40ed48197f6f2b33f7881439aa464e17943a7508d9e114ad9b7bf77be8ab7320 |
|
MD5 | 44a15d209cf7ce95cc1cbb4fa427bd2a |
|
BLAKE2b-256 | 1ed815fb08a8e0b54ccc92d55fadf0da638441c2edd6aab03d86580430b34a1c |