Skip to main content

django-livefield

About

A Django field that enables convenient soft-deletion. For Python 3.11+ and Django 4.2+

Installation

Simple: pip install django-livefield.

Example Usage

>>> from django.db import models
>>> from livefield import LiveField, LiveManager
>>>
>>>
>>> class Person(models.Model):
...    name = models.CharField()
...    live = LiveField()
...
...    objects = LiveManager()
...    all_objects = LiveManager(include_soft_deleted=True)
...
...    class Meta:
...        unique_together = ('name', 'live')
...
...    def delete(self, using=None):
...        self.live = False
...        self.save(using=using)
...
>>> john = Person.objects.create(name='John Cleese')
>>> doppelganger = Person(name='John Cleese')
>>> doppelganger.save()  # Raises an IntegrityError
>>> john.delete()
>>> doppelganger.save()  # Succeeds!

License

MIT. See LICENSE.txt for details.

Contributing

Pull requests welcome! To save everyone some hassle, please open an issue first so we can discuss your proposed change.

In your PR, be sure to add your name to AUTHORS.md and include some tests for your spiffy new functionality. CI will green-light your build once it passes the unit tests (make test) and our linters (make lint).

Changelog

4.3.1

  • Fix Changelog message

4.3.0

  • Add support for Python 3.14
  • Add support for Django 5.2
  • Drop support for Python versions below 3.11
  • Drop support for Django versions below 4.2

4.2.0

  • Migrate to Poetry for building and publishing

4.1.0

  • Add support for Python 3.12
  • Add support for Django 5.0

4.0.0

  • Add support for Python 3.8 - 3.11
  • Add support for Django 4.1 and 4.2
  • Remove support for old Django versions
  • Remove support for old Python versions

3.3.0

  • Django 3.x support
  • switch to BooleanField as base (Django 4.x deprecation)

3.2.1

  • Fix rST formatting in this file to pass PyPI rendering check

3.2.0 (Not released)

  • Support Django 2.2
  • Support Python 3.7
  • Fix metadata to remove deprecated Django versions
  • Expand travis tests for versions and database engines
  • Remove obsolete pylint suppressions
  • Thanks to @shurph for the above!

3.1.0

3.0.0

  • Add support for Python 3.6
  • Add support for Django 2.0
  • Remove support for Python 3.4
  • Remove support for old Django versions
  • Remove GIS

2.5.0 (Not released)

  • Added official Python 3 support.
  • Re-added support for Django 1.8. Now supports Django 1.8 and 1.9.

2.4.0 (2016-02-11)

  • Drop support for Django 1.8
  • Add number of affected rows for delete methods (hard_delete, soft_delete, delete). Note: Django 1.9+ only.

2.1.0 (2014-09-04)

  • Add support for Django 1.7.

2.0.0 (2014-07-13)

  • Renamed top-level namespace to livefield.
  • Restructured internally to match Django convention.
  • Added GIS support.
  • Added South support.

1.0.0 (2014-02-14)

  • Initial release.
  • Separated existing code from main application repository.

Download files

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

Source Distribution

django_livefield-4.3.2.tar.gz (5.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_livefield-4.3.2-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file django_livefield-4.3.2.tar.gz.

File metadata

  • Download URL: django_livefield-4.3.2.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for django_livefield-4.3.2.tar.gz
Algorithm Hash digest
SHA256 a53d028b54663e02f46fbc04f73cb4fb4ce628c39ebbf5a49f32c17683499474
MD5 779835bdde1329f0fd260179e1ce1f01
BLAKE2b-256 ad7560358a1bf5724a52bcf3c0581ac41e311577fe6f22198c1404b2e4ffc3b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_livefield-4.3.2.tar.gz:

Publisher: publish.yml on hearsaycorp/django-livefield

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_livefield-4.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_livefield-4.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fe84c2b73a00884d036c1050a3ea383416ac3888b93c32d574692f12101f4f38
MD5 65b3c9042dc8cf465a805cc5ebe10664
BLAKE2b-256 26755ecabec56e15a5487f0cc57c604a6919c98a2312d0b2b5ce45bfc4759856

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_livefield-4.3.2-py3-none-any.whl:

Publisher: publish.yml on hearsaycorp/django-livefield

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

4.3.2 This release

2 files

4.3.1

2 files

4.3.0

2 files

4.2.0

2 files

4.1.0

2 files

4.0.0

2 files

3.3.0

2 files

3.2.1

2 files

3.1.0

1 file

3.0.0

1 file

2.8.0

1 file

2.7.0

1 file

2.6.0

1 file

2.4.0

1 file

2.3.2

1 file

2.3.1

1 file

2.3.0

1 file

2.2.1

1 file

2.2.0

1 file

2.1.0

2 files

2.0.0

2 files

1.1.0

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page