RFC6266 implementation in Python
Project description
pyrfc6266
A python implementation of RFC 6266 meant to replace https://github.com/g2p/rfc6266 and its forks as they rely on LEPL.
This implementation relies on pyparsing which seems to continue to get updates.
Installation
pip install pyrfc6266
Usage
Parse a content-disposition header into its components:
>>> import pyrfc6266
>>> pyrfc6266.parse('attachment; filename="foo.html"')
('attachment', [ContentDisposition(name='filename', value='foo.html')])
Parse a header into a useful filename:
>>> import pyrfc6266
>>> pyrfc6266.parse_filename('attachment; filename="foo.html"')
'foo.html'
Turn a requests response into a filename:
>>> import requests
>>> import pyrfc6266
>>> response = requests.get('http://httpbin.org/response-headers?Content-Disposition=attachment;%20filename%3d%22foo.html%22')
>>> pyrfc6266.requests_response_to_filename(response)
'foo.html'
License
MIT
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
pyrfc6266-1.0.2.tar.gz
(4.5 kB
view hashes)
Built Distribution
Close
Hashes for pyrfc6266-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0532307f319566f337dba97577dfaefe493c3e0c40ab211449ba4566fc2cf73d |
|
MD5 | a39ed6517b58e039634416aae166a612 |
|
BLAKE2b-256 | 69fcd416c1bfb54f86259f631fd9ff6a9b813f7050129a377d94c43500109479 |