├── .flake8 ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── anitopy ├── __init__.py ├── anitopy.py ├── element.py ├── keyword.py ├── parser.py ├── parser_helper.py ├── parser_number.py ├── token.py └── tokenizer.py ├── requirements.txt ├── requirements_dev.txt ├── setup.py └── tests ├── __init__.py ├── fixtures ├── __init__.py ├── failing_table.py └── table.py └── test_anitopy.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/README.rst -------------------------------------------------------------------------------- /anitopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/__init__.py -------------------------------------------------------------------------------- /anitopy/anitopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/anitopy.py -------------------------------------------------------------------------------- /anitopy/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/element.py -------------------------------------------------------------------------------- /anitopy/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/keyword.py -------------------------------------------------------------------------------- /anitopy/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/parser.py -------------------------------------------------------------------------------- /anitopy/parser_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/parser_helper.py -------------------------------------------------------------------------------- /anitopy/parser_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/parser_number.py -------------------------------------------------------------------------------- /anitopy/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/token.py -------------------------------------------------------------------------------- /anitopy/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/anitopy/tokenizer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | enum34;python_version<'3.4' -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/failing_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/tests/fixtures/failing_table.py -------------------------------------------------------------------------------- /tests/fixtures/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/tests/fixtures/table.py -------------------------------------------------------------------------------- /tests/test_anitopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorcmoura/anitopy/HEAD/tests/test_anitopy.py --------------------------------------------------------------------------------