Lines Matching refs:URITemplate
2 from uritemplate import URITemplate, expand, partial, variables
372 t = URITemplate(k)
396 t = URITemplate(uri)
412 t = URITemplate(uri)
420 t = URITemplate('https://api.github.com/users{/user}')
427 t = URITemplate('https://api.github.com/users{/user}{/repo}')
436 t = URITemplate(uri)
444 self.assertEqual(hash(URITemplate(uri)), hash(uri))
448 t = URITemplate(uri)
455 t = URITemplate('{foo}')
461 t = URITemplate('{foo}')
468 t = URITemplate('{foo}')
481 t = URITemplate('{foo}')
488 t = URITemplate('{foo}')
489 u = URITemplate('{foo}')
496 t = URITemplate('')
576 self.assertEqual(partial(self.uri), URITemplate(self.uri))
580 URITemplate('https://api.github.com/users/sigmavirus24{/other}')
585 URITemplate(self.uri).variable_names)