Skip to main content

Django app to obfuscate text data.

Project description

Build Status Coverage Status Codacy Badge BCH compliance Pypi

Django app to obfuscate text data.

Table of contents:

Compatibility

Tested with python 2.7, 3.4, 3.5, 3.6 and Django 1.9, 1.10, 1.11: Travis CI

How to install

To install the app run:

$ pip install django-obfuscate

or add it to the list of requirements of your project.

Then add ‘obfuscator’ to your INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'obfuscator',
]

Example usage

On you django project settings, configure the model names and field names to be obfuscated:

OBFUSCATOR = {
    'FIELDS': {
        'app_label.ModelClass1': ['field1', 'field2', 'field3'],
        'app_label.ModelClass2': ['field1'],
        // ...
    }
}

Run the management command to start obfuscation:

$ python manage.py obfuscate

You can run the management command passing as arguments: a model class path and a list of fields to obfuscate (thus will ignore FIELDS setting):

$ python manage.py obfuscate --model=app_label.ModelClass1 --fields=field1, field2, field3

Settings reference

OBFUSCATOR_CLASS

Default: obfuscator.utils.ObfuscatorUtils

Path to class where obfuscator methods are defined. By default, the class define tow obfuscator methods: * text - Obfuscate simple text data, respecting max-length field parameter; * email - Obfuscate email data. Only text before @ is obfuscated, respecting max-length field parameter.

This class also define an obfuscate method. This method use fields mapping (see FIELDS_MAPPING setting) to route the field type with the obfuscate method.

You can redefine this class by subclassing the default class and changing this setting to point to your class.

FIELDS_MAPPING

Default:

{
    models.CharField: 'text',
    models.TextField: 'text',
    models.EmailField: 'email'
}

Map django model field types with obfuscator methods.

FIELDS

Default: {}

Fields to be obfuscated and respective model class path. Must be a dict with keys as python dot notation to path where the models are declared and the values must be declared as lists of model fields.

If no value defined, the management command will do nothing.

Example:

{
    'contenttypes.ContentType': ['model', 'label'],
    // ...
}

License

MIT license, see the LICENSE file. You can use obfuscator in open source projects and commercial products.

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-obfuscate-0.1.2.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

django_obfuscate-0.1.2-py2.py3-none-any.whl (11.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-obfuscate-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-obfuscate-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6b5fc81ded102a64d17477ed888f3343108649bbd6620eb23ff7edc580652fdd
MD5 78cc8954869dc085a753e315718e06cc
BLAKE2b-256 36efd1f8cc43e6fa7331db75cffbd4bac88cfb24d50a86fca3cc5f98e5e6fbd1

See more details on using hashes here.

File details

Details for the file django_obfuscate-0.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_obfuscate-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ac776212c2aec43fdc351d181f508e27a322a11b52a72235e7ff02c253b532cc
MD5 13a1d100b83c80154a99aadd95b0af3e
BLAKE2b-256 9d3e51cd7fb080ff0b59a48c30d92361a046cc26e39aba666e4ace56744398a9

See more details on using hashes here.

Supported by

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