├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── _test_utils.py ├── files │ ├── embed_restricted │ ├── success_input │ └── success_output ├── requirements.txt ├── test_e2e.py └── test_unit.py ├── tox.ini └── yturl.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2,<3 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/_test_utils.py -------------------------------------------------------------------------------- /tests/files/embed_restricted: -------------------------------------------------------------------------------- 1 | reason=Invalid+parameters.&status=fail&errorcode=2 -------------------------------------------------------------------------------- /tests/files/success_input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/files/success_input -------------------------------------------------------------------------------- /tests/files/success_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/files/success_output -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/test_e2e.py -------------------------------------------------------------------------------- /tests/test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tests/test_unit.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/tox.ini -------------------------------------------------------------------------------- /yturl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdown/yturl/HEAD/yturl.py --------------------------------------------------------------------------------