File transport adapter for Requests
Project description
Requests-File is a transport adapter for use with the Requests Python library to allow local filesystem access via file:// URLs.
To use:
import requests
from requests_file import FileAdapter
s = requests.Session()
s.mount('file://', FileAdapter())
resp = s.get('file:///path/to/file')
Features
Will open and read local files
Might set a Content-Length header
That’s about it
No encoding information is set in the response object, so be careful using Response.text: the chardet library will be used to convert the file to a unicode type and it may not detect what you actually want.
EACCES is converted to a 403 status code, and ENOENT is converted to a 404. All other IOError types are converted to a 400.
Contributing
Contributions welcome! Feel free to open a pull request against https://github.com/dashea/requests-file
License
To maximise compatibility with Requests, this code is licensed under the Apache license. See LICENSE for more details.
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
Hashes for requests_file-1.4.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b3927545f8ccd424fce30ca5987a0561db1598f811f7bdff124c24b33a057cf |
|
MD5 | 2e022efbd5899a104a02844515e9d414 |
|
BLAKE2b-256 | ab5b203b875c232c74868306b0aa2d8b8f9c94c58a6fd1e293a1eda33d332323 |