django-hattori
django-hattori copied to clipboard
Command to anonymize sensitive data
In a typical scenario such as anonymizing a table of, say, 100,000 unique email addresses, it will often fail with e.g. django.db.utils.IntegrityError: (1062, "Duplicate entry '[email protected]' for key 'username'")
I have moved the batch processing to the run method. This is because under memory constraints this application cannot be executed if the number of instances is big. By paginating,...
Added model instance to replacer in order to have the instance inside kwargs.
Hey, I'm working on setting up a step in our CI pipeline that checks automatically for valid licenses of used third party packages. Therefore I need to whitelist django-hattori per...
I needed to anonimyze the `User` model data from `django.contrib.auth.models`, so I wrote an anonymizer in an app of our project but referring to a the model outside the app....