This is a Python implementation of RFC6570, URI Template, and can expand

templates up to and including Level 4 in that specification.

WWW: https://github.com/uri-templates/uritemplate-py/
This commit is contained in:
Nicola Vitale 2015-03-03 15:41:26 +00:00
parent d0385f818d
commit e0d98e9032
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=380378
4 changed files with 26 additions and 0 deletions

View File

@ -948,6 +948,7 @@
SUBDIR += py-twitter
SUBDIR += py-twitter-tools
SUBDIR += py-txamqp
SUBDIR += py-uritemplate
SUBDIR += py-urllib3
SUBDIR += py-wolframalpha
SUBDIR += py-xmlrpc

View File

@ -0,0 +1,19 @@
# Created by: Nicola Vitale <nivit@FreeBSD.org>
# $FreeBSD$
PORTNAME= uritemplate
PORTVERSION= 0.6
#PORTREVISION= 0
CATEGORIES= net
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Python implementation of URI Template
LICENSE= APACHE20
USE_PYTHON= autoplist distutils
USES= python
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (uritemplate-0.6.tar.gz) = a30e230aeb7ebedbcb5da9999a17fa8a30e512e6d5b06f73d47c6e03c8e357fd
SIZE (uritemplate-0.6.tar.gz) = 3508

View File

@ -0,0 +1,4 @@
This is a Python implementation of RFC6570, URI Template, and can expand
templates up to and including Level 4 in that specification.
WWW: https://github.com/uri-templates/uritemplate-py/