A Pythonic data uri parser
Project description
data_uri_parser
Data URI manipulation made easy.
This isn't very robust, and will reject a number of valid data URIs. However, it meets the most useful case: a mimetype, a charset, and the base64 flag.
How to install
pip install data_uri_parser
Parsing
>>> uri = DataURI('data:text/plain;charset=utf-8;base64,VGhlIHF1aWNrIGJyb3duIGZveCBqdW1wZWQgb3ZlciB0aGUgbGF6eSBkb2cu') >>> uri.mimetype 'text/plain' >>> uri.charset 'utf-8' >>> uri.is_base64 True >>> uri.data 'The quick brown fox jumped over the lazy dog.'
Note that DataURI.data
won't decode the data bytestring into a unicode string based on the charset.
Creating from a string
>>> made = DataURI.make('text/plain', charset='us-ascii', base64=True, data='This is a message.') >>> made DataURI('data:text/plain;charset=us-ascii;base64,VGhpcyBpcyBhIG1lc3NhZ2Uu') >>> made.data 'This is a message.'
Creating from a file
This is really just a convenience method.
>>> png_uri = DataURI.from_file('somefile.png') >>> png_uri.mimetype 'image/png' >>> png_uri.data '\x89PNG\r\n...'
Notes
Originally from: https://gist.github.com/zacharyvoase/5538178
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size data_uri_parser-0.1.6-py3-none-any.whl (3.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size data-uri-parser-0.1.6.tar.gz (3.8 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for data_uri_parser-0.1.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 509d1332ef9cb31a2d1bcd2f6abc6a6e5741d8dad0a138e3510d461d11706e28 |
|
MD5 | 49e000e1378f9ef3b9940077719d9144 |
|
BLAKE2-256 | a7650da18da2a2052be05cbfe89091551c891f9049ff2d4d511749faadfbee32 |