├── .gitignore ├── README.md ├── equitext.py ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | doc/ 3 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foobuzz/equitext/HEAD/README.md -------------------------------------------------------------------------------- /equitext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foobuzz/equitext/HEAD/equitext.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foobuzz/equitext/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foobuzz/equitext/HEAD/tests.py --------------------------------------------------------------------------------