├── .coveragerc ├── .gitignore ├── .landscape.yaml ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── adult.csv.gz ├── ci ├── .travis_install.sh └── .travis_test.sh ├── datacleaner ├── __init__.py ├── _version.py └── datacleaner.py ├── setup.py └── tests.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- 1 | doc-warnings: yes 2 | 3 | ignore-patterns: 4 | - __init__.py 5 | 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/README.md -------------------------------------------------------------------------------- /adult.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/adult.csv.gz -------------------------------------------------------------------------------- /ci/.travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/ci/.travis_install.sh -------------------------------------------------------------------------------- /ci/.travis_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/ci/.travis_test.sh -------------------------------------------------------------------------------- /datacleaner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/datacleaner/__init__.py -------------------------------------------------------------------------------- /datacleaner/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/datacleaner/_version.py -------------------------------------------------------------------------------- /datacleaner/datacleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/datacleaner/datacleaner.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhiever/datacleaner/HEAD/tests.py --------------------------------------------------------------------------------