Skip to main content

Anonymize specific django model for specific instance

Project description

Django Neuralyzer

PyPi - version Licence Python version Ruff

Anonymize instance data according to your need (GDPR, used in not-so-safe environments... )

Heavily inspired by django-anon

Like django-anon, django-neuralyzer will help you anonymize your model instance so it can be shared among developers, helping to reproduce bugs and make performance improvements in a production-like environment.

It also provide ability to target specific instance and not the whole database at once, so it can be use for GDPR compliance or "forget about be" feature of your app.

Usage

Use django-neuralyzer.BaseNeuralyzer to define your neuralyzer classes:

from django_neuralyzer.base import BaseNeuralyzer

from your_app.models import Person

class PersonNeuralyzer(BaseNeuralyzer):
   email = "example@anonymized.org"

   # You can use static values instead of callables
   is_admin = False

   class Meta:
      model = Person

# run neuralyzer: be cautious, this will affect your current database!
person = Person.objects.last()

# neuralyze full table:
PersonNeuralyzer().run()

# neuralyze only some instance
PersonNeuralyzer().run(filters={"pk": person.pk})

Lazy attributes

Lazy attributes can be defined as inline lambdas or methods, as shown below, using the lazy_attribute function/decorator.

from django_neuralyzer.base import BaseNeuralyzer, lazy_attribute

from your_app.models import Person

class PersonNeuralyzer(BaseNeuralyzer):
   name = lazy_attribute(lambda o: 'x' * len(o.name))

   @lazy_attribute
   def date_of_birth(self):
      """Keep year and month"""
      return self.date_of_birth.replace(day=1)

   class Meta:
      model = Person

Management command

First, to have access to the management command, you need to register the app

INSTALLED_APPS = [
  ...
  "django_neuralyzer",
  ...
]

2 management command are given:

  1. ensure_fields_are_handled command
  2. export_neuralyzed_fields command

Ensure that all fields are neuralyzed

Ensure that all field of your model are handle by the neuralyzer:

django-manage ensure_fields_are_handled

If you want to ensure a field is handled, but you don't want to change its value, you can set it to NEURALYZER_NOOP:

from django_neuralyzer.base import BaseNeuralyzer, NEURALYZER_NOOP

from your_app.models import Person

class PersonNeuralyzer(BaseNeuralyzer):
   id = NEURALYZER_NOOP
   name = lazy_attribute(lambda o: 'x' * len(o.name))

   class Meta:
      model = Person

this way, ensure_fields_are_handled will not complain that id is not handled.

Export neuralyzed fields

It may be handy to export what fields are neuralyzed and how. Run the

django-manage export_neuralyzed_fields

and a neuralyzed_fields.csv will be created at the root of your application.

In order to document the lazy_attribute, the docstring of the function will be used to document how this field is neuralyzed.

Why neuralyzer ?

In Men in Black, a "neuralyzer" is a tool that wipe the mind of anybody who sees the flash via isolating and editing certain element of their memory.

This is exactly what this django package intent to do (remove or fake some attributes of instances), so we find it funny to name it like that.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_neuralyzer-0.4.1.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_neuralyzer-0.4.1-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file django_neuralyzer-0.4.1.tar.gz.

File metadata

  • Download URL: django_neuralyzer-0.4.1.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for django_neuralyzer-0.4.1.tar.gz
Algorithm Hash digest
SHA256 702dd0d2e112ea771591fa41970304215a5fa4d6c1f98adfd8dbb7d94307f6b9
MD5 dcd5f122283b8644853d6bc399855121
BLAKE2b-256 a465f5b64a24a354101c99d774304e1064cc644e7480c47a6c9eaf35c8e20810

See more details on using hashes here.

File details

Details for the file django_neuralyzer-0.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_neuralyzer-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 21bfa35ad9a3d2de95449872829040305673cd87822256aacdfb80db425efbc6
MD5 315d7a1de1ba0bdddcb5300d787b50e0
BLAKE2b-256 bfd73cdb9076652dd0eef1a9bb842f1faa5c69dc584a8632e1c13b2ba6c33259

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page