├── .gitignore ├── AUTHORS ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── hattori ├── __init__.py ├── base.py ├── constants.py ├── exceptions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── anonymize_db.py └── utils.py ├── setup.py ├── tests ├── __init__.py ├── anonymizers.py ├── conftest.py ├── manage.py ├── models.py ├── requirements.txt ├── settings.py └── test_command.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Marc Galofré 2 | Marc Hernández -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/README.md -------------------------------------------------------------------------------- /hattori/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/__init__.py -------------------------------------------------------------------------------- /hattori/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/base.py -------------------------------------------------------------------------------- /hattori/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/constants.py -------------------------------------------------------------------------------- /hattori/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/exceptions.py -------------------------------------------------------------------------------- /hattori/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hattori/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hattori/management/commands/anonymize_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/management/commands/anonymize_db.py -------------------------------------------------------------------------------- /hattori/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/hattori/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/anonymizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/anonymizers.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/django-hattori/HEAD/tox.ini --------------------------------------------------------------------------------