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
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file data-uri-parser-0.1.11.tar.gz.
File metadata
- Download URL: data-uri-parser-0.1.11.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.6.8 Linux/5.13.0-1023-aws
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abe8263a3f218cf884b6c72d93c791b0096483506103a46b2fb4e1a9aeb55eac
|
|
| MD5 |
0168dab3087ac0a44eeae51717744830
|
|
| BLAKE2b-256 |
dbb88cedcdf6309e6b9b6ed001f7bd9996eea690726b078c94c9733aaa7ff661
|
File details
Details for the file data_uri_parser-0.1.11-py3-none-any.whl.
File metadata
- Download URL: data_uri_parser-0.1.11-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.6.8 Linux/5.13.0-1023-aws
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7eb68b42157a60d551a01785c7f8e00207893640d1b8083fbb1e082f7fca4fa
|
|
| MD5 |
259ab86c7bc14913d41a73c5d9d714fa
|
|
| BLAKE2b-256 |
56aa9bfcc8e1f1caf1b13cb01fe871bad3bf674fd0e5ed352ab0a0ca50d62c7a
|