Welcome to apidocs’s documentation!¶
Contents:
Examples¶
This first example shows how simple the API can be when using for a one-off item in a script or elsewhere.
from requests import get
from uritemplate import expand
uri = 'https://api.github.com{/user}'
user = get(expand(uri, user='sigmavirus24')).json()
This second example shows how using the class will save you time for template
parsing and object creation. Making the template once means the URI is parsed
once which decreases the number of URITemplate objects created and usage of the re module.
This means that as soon as the file is parsed, the User.github_url and
Repository.github_url variables are made once and only once. They’re then
usable in every instance of those classes.
from uritemplate import URITemplate
class User(object):
github_url = URITemplate('https://api.github.com{/user}')
def __init__(self, name):
self.uri = self.github_url.expand({'user': name})
self.name = name
class Repository(object):
github_url = URITemplate('https://api.github.com{/user}{/repo}')
def __init__(self, name):
self.uri = self.github_url.expand(
dict(zip(['user', 'repo'], name.split('/')))
)
self.name = name
API¶
Implementation Details¶
Classes, their methods, and functions in this section are not part of the API
and as such are not meant to be used by users of uritemplate.py. These are
documented here purely for reference as they are inadvertently exposed via the
public API.
For example:
t = URITemplate('https://api.github.com/users{/user}')
t.variables
# => [URIVariable(/user)]
Users can interact with URIVariable objects as they see fit, but
their API may change and are not guaranteed to be consistent across versions.
Code relying on methods defined on URIVariable and other classes,
methods, and functions in this section may break in future releases.