root/alpine313/: requests-file-2.1.0 metadata and description

Simple index PyPI page

File transport adapter for Requests

author_email David Shea <reallylongword@gmail.com>
classifiers
  • Development Status :: 3 - Alpha
  • Environment :: Plugins
  • Intended Audience :: Developers
  • License :: OSI Approved :: Apache Software License
  • Programming Language :: Python :: 3
description_content_type text/x-rst
license Apache 2.0
project_urls
  • Homepage, https://github.com/dashea/requests-file
requires_dist
  • requests >=1.0.0
File Tox results History
requests_file-2.1.0-py2.py3-none-any.whl
Size
4 KB
Type
Python Wheel
Python
2.7

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.