Skip to main content

Django model reprs for humans!

Project description

Project generated with PyScaffold PyPI-Server GitHub Test CI Monthly Downloads

django-better-repr

Django model reprs for humans!

This project seeks to make reprs of Django models more human-friendly. This project is heavily inspired by https://github.com/dan-passaro/django-auto-repr .

Installation

pip install django-better-repr

If you want to automatically improve the repr of all models in your project then add django_better_repr to your installed apps.

# settings.py
INSTALLED_APPS = [
   ...,
   'django_better_repr',
   ...,
]

Want to customize which apps get configured but don’t want to decorate each class individually? Head on down to the Configuration section.

How to use:

The repr logic in this library is designed to produce the smallest, most meaningful repr possible for your Django models. That means that fields which aren’t set won’t show up in the repr. This should reduce noise and let you get the most value out of your reprs.

from django_better_repr import better_repr

@better_repr
class MyDjangoModel(models.Model):
    my_field = models.CharField(max_length=16)

Or, if class inheritance is more your speed:

from django_better_repr.bases import BetterRepr

class MyDjangoModel(BetterRepr, models.Model):
    my_field = models.CharField(max_length=16)

Then load up your favorite shell and run:

MyDjangoModel.objects.create(my_field='Hello, world!')
>>> MyDjangoModel(my_field='Hello, world!')

If your model has a lot of fields then the repr will automatically switch to pretty printing. This can be configured via settings.

Configuration

If you want to customize the behavior of the library, below are all the options.

# settings.py
BETTER_REPR_CONFIG = {
   'ENABLE_MULTILINE_REPRS': True,  # bool (default: True), whether or not to allow multiline reprs
   'SINGLE_LINE_PARTS_LIMIT': 4,  # int (default: 4), the number of fields a repr can have before switching to multi line
   'MULTILINE_WHITESPACE': '\t',  # str (default: '\t'), the whitespace string to use for multiline reprs
   'AUTO_CONFIGURE_INCLUDE_MODELS': [],  # list (default: a sentinel for all models), which models to auto include if the auto configuration application is added to INSTALLED_APPS
   'AUTO_CONFIGURE_EXCLUDE_MODELS': [],  # list (default: []), which models to exclude from the auto setup if the auto configuration application is added to INSTALLED_APPS
   'EXCLUDE_DEFERRED_FIELDS': True,  # bool (default: True), whether or not to exclude deferred fields (https://docs.djangoproject.com/en/4.2/ref/models/querysets/#django.db.models.query.QuerySet.defer) from the repr
}

Making Changes & Contributing

This project uses pre-commit, please make sure to install it before making any changes:

pip install pre-commit
cd django-better-repr
pre-commit install

It is a good idea to update the hooks to the latest version:

pre-commit autoupdate

Note

This project has been set up using PyScaffold 4.5. For details and usage information on PyScaffold see https://pyscaffold.org/.

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-better-repr-1.0.7.tar.gz (30.0 kB view details)

Uploaded Source

Built Distribution

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

django_better_repr-1.0.7-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file django-better-repr-1.0.7.tar.gz.

File metadata

  • Download URL: django-better-repr-1.0.7.tar.gz
  • Upload date:
  • Size: 30.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for django-better-repr-1.0.7.tar.gz
Algorithm Hash digest
SHA256 62f6499409830b1c2730f0ec9336f325fdb0af1ebfa6799a1cf9cdd08dee60fa
MD5 04439836a3c1fcfd8414eb2bd6e43ca6
BLAKE2b-256 151bac83de8132206fb60d6559e44909003e70c19228c9605991b1984d44edab

See more details on using hashes here.

File details

Details for the file django_better_repr-1.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_better_repr-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 fa3699d825db48fd6793a88a4730c093d5f43e1fd859f4415980c4ec204b782c
MD5 31796086cd574c5c79a1a124613010da
BLAKE2b-256 f4ca5d413741dd8f0b9bc845b6073a03190d855969a1c4ff50f5995a875f05b5

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