uritemplate
Documentation – GitHub – BitBucket – Travis-CI
Simple python library to deal with URI Templates. The API looks like
from uritemplate import URITemplate, expand
# NOTE: URI params must be strings not integers
gist_uri = 'https://api.github.com/users/sigmavirus24/gists{/gist_id}'
t = URITemplate(gist_uri)
print(t.expand(gist_id='123456'))
# => https://api.github.com/users/sigmavirus24/gists/123456
# or
print(expand(gist_uri, gist_id='123456'))
# also
t.expand({'gist_id': '123456'})
print(expand(gist_uri, {'gist_id': '123456'}))
Where it might be useful to have a class
import requests
class GitHubUser(object):
url = URITemplate('https://api.github.com/user{/login}')
def __init__(self, name):
self.api_url = url.expand(login=name)
response = requests.get(self.api_url)
if response.status_code == 200:
self.__dict__.update(response.json())
When the module containing this class is loaded, GitHubUser.url is evaluated and so the template is created once. It’s often hard to notice in Python, but object creation can consume a great deal of time and so can the re module which uritemplate relies on. Constructing the object once should reduce the amount of time your code takes to run.
Installing
pip install uritemplate.py
License
Modified BSD license
Changelog - uritemplate
2.0.0 - 2016-08-29
Merge uritemplate.py into uritemplate
Changelog - uritemplate.py
3.0.2 - 2015-08-30
Fix meta-package requirements.
3.0.1 - 2015-08-29
Deprecate in favor of uritemplate. This package is now a metapackage that depends on uritemplate.
2.0.0 - 2016-08-20
Relicense uritemplate.py as Apache 2 and BSD (See https://github.com/sigmavirus24/uritemplate/pull/23)
1.0.1 - 2016-08-18
Fix some minor packaging problems.
1.0.0 - 2016-08-17
Fix handling of Unicode values on Python 2.6 and 2.7 for urllib.quote.
Confirm public stable API via version number.
0.3.0 - 2013-10-22
Add #partial to partially expand templates and return new instances of URITemplate.
0.2.0 - 2013-07-26
Refactor the library a bit and add more tests.
Backwards incompatible with 0.1.x if using URIVariable directly from uritemplate.template
0.1.1 - 2013-05-19
Add ability to get set of variable names in the current URI
If there is no value or default given, simply return an empty string
Fix sdist
0.1.0 - 2013-05-14
Initial Release
Release files for uritemplate.py 3.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| uritemplate.py-3.0.2.tar.gz | 30.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| uritemplate.py-3.0.2-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 35.5 kB
Release files / uritemplate.py-3.0.2.tar.gz
| Download URL | uritemplate.py-3.0.2.tar.gz |
|---|---|
| Size | 30.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e0cdeb0f55ec18e1580974e8017cd188549aacc2aba664ae756adb390b9d45b4
|
|
BLAKE2b-256 checksum How to use checksums |
1297e12695c7d7710143767022ce931061b4a6b5b19982b20ecf5d71cdde3da1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / uritemplate.py-3.0.2-py2.py3-none-any.whl
| Download URL | uritemplate.py-3.0.2-py2.py3-none-any.whl |
|---|---|
| Size | 4.9 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
a0c459569e80678c473175666e0d1b3af5bc9a13f84463ec74f808f3dd12ca47
|
|
BLAKE2b-256 checksum How to use checksums |
8bba6cbb9c3bf4f53997d8d1f69414fc7962f536ba43d283f0e32de68534f6a4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |