├── .gitignore ├── .pypirc.template ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── setup.cfg ├── setup.py ├── shortid ├── __init__.py ├── alphabet.py └── encoder.py └── test ├── requiremets.txt └── test_shortid.py /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *~ 3 | *\# 4 | 5 | *.pyc 6 | *.egg-info 7 | .venv 8 | 9 | MANIFEST 10 | dist/ 11 | -------------------------------------------------------------------------------- /.pypirc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/.pypirc.template -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/setup.py -------------------------------------------------------------------------------- /shortid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/shortid/__init__.py -------------------------------------------------------------------------------- /shortid/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/shortid/alphabet.py -------------------------------------------------------------------------------- /shortid/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/shortid/encoder.py -------------------------------------------------------------------------------- /test/requiremets.txt: -------------------------------------------------------------------------------- 1 | nose==1.3.3 2 | pyflakes==0.8.1 3 | -------------------------------------------------------------------------------- /test/test_shortid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpix/shortid/HEAD/test/test_shortid.py --------------------------------------------------------------------------------