├── .DS_Store ├── .gitattributes ├── .gitignore ├── Changelog.md ├── LICENSE ├── README.md ├── setup.py └── turkishnlp ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc └── detector.cpython-36.pyc └── detector.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/setup.py -------------------------------------------------------------------------------- /turkishnlp/__init__.py: -------------------------------------------------------------------------------- 1 | from . import detector 2 | -------------------------------------------------------------------------------- /turkishnlp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/turkishnlp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /turkishnlp/__pycache__/detector.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/turkishnlp/__pycache__/detector.cpython-36.pyc -------------------------------------------------------------------------------- /turkishnlp/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteHanC/turkishnlp/HEAD/turkishnlp/detector.py --------------------------------------------------------------------------------