├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── surt ├── DefaultIAURLCanonicalizer.py ├── GoogleURLCanonicalizer.py ├── IAURLCanonicalizer.py ├── URLRegexTransformer.py ├── __init__.py ├── handyurl.py └── surt.py ├── tests └── test_surt.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt *.md 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /surt/DefaultIAURLCanonicalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/DefaultIAURLCanonicalizer.py -------------------------------------------------------------------------------- /surt/GoogleURLCanonicalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/GoogleURLCanonicalizer.py -------------------------------------------------------------------------------- /surt/IAURLCanonicalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/IAURLCanonicalizer.py -------------------------------------------------------------------------------- /surt/URLRegexTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/URLRegexTransformer.py -------------------------------------------------------------------------------- /surt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/__init__.py -------------------------------------------------------------------------------- /surt/handyurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/handyurl.py -------------------------------------------------------------------------------- /surt/surt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/surt/surt.py -------------------------------------------------------------------------------- /tests/test_surt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/tests/test_surt.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetarchive/surt/HEAD/tox.ini --------------------------------------------------------------------------------