├── .gitignore ├── LICENSE ├── README.md ├── morfist ├── __init__.py └── core.py └── test └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donlnz/morfist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donlnz/morfist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donlnz/morfist/HEAD/README.md -------------------------------------------------------------------------------- /morfist/__init__.py: -------------------------------------------------------------------------------- 1 | from morfist.core import * -------------------------------------------------------------------------------- /morfist/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donlnz/morfist/HEAD/morfist/core.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donlnz/morfist/HEAD/test/test.py --------------------------------------------------------------------------------