Skip to main content
Package Version PyPI - Status Tests Status Code Coverage Percentage Project License Python Versions

🕳️ A Python library package which provides a sentinel for absent values - a falsey, immutable singleton that represents the absence of a value in contexts where None or False may be valid values.

Key Features ⭐

  • 1️⃣ Absence Sentinel: A falsey singleton which represents absence.

  • 🏭 Absence Factory: Create custom absence sentinels for package-specific or arbitrary needs.

  • 📦 Absence Cell: Immutable container wrapping absent values with conditional extraction, evaluation, and transformation API.

  • 𝒇 Predicate Functions: Determine if a value is absent.

  • 🔍 Type Support: Type alias for optional values which may be absent. (Similar to typing.Optional and its relation to None.)

  • 🌟 Builtins Integration: Can install singleton and predicate function into Python builtins.

Installation 📦

pip install absence

Examples 💡

Use the absent sentinel to represent missing values:

>>> from dataclasses import dataclass
>>> from absence import absent, is_present, Absential
>>> @dataclass
... class User:
...     name: str | None
...     email: str | None
>>> def apply_partial_update(
...     user: User,
...     name: Absential[ str | None ] = absent,
...     email: Absential[ str | None ] = absent,
... ) -> User:
...     ''' Updates user fields if values provided.
...
...         Absent value means "don't change".
...         None value means "clear field".
...     '''
...     if is_present( name ): user.name = name
...     if is_present( email ): user.email = email
...     return user
>>> user = User( name = 'Alice', email = 'alice@example.com' )
>>> # Clear name but leave email unchanged
>>> updated = apply_partial_update( user, name = None )
>>> updated.name  # Cleared to None
>>> updated.email  # Unchanged
'alice@example.com'
>>> # Update both fields
>>> updated = apply_partial_update( user, name = 'Bob', email = 'bob@example.com' )
>>> updated.name
'Bob'
>>> updated.email
'bob@example.com'

Create package-specific absence sentinels:

>>> from absence import AbsenceFactory
>>> MISSING = AbsenceFactory( )
>>> bool( MISSING )
False

Wrap absent values with AbsenceCell for conditional chains:

>>> from absence import AbsenceCell, absent, Absential
>>> def adjust_columns( width: Absential[ int ] ) -> int:
...     ''' Returns adjusted width, or 0 if width is absent. '''
...     return AbsenceCell( width ).evaluate_or( lambda w: w - 4, 0 )
>>> adjust_columns( 80 )
76
>>> adjust_columns( absent )
0

Use Cases 🎯

  • 🔄 Optional Arguments: When None is a valid argument value but you need to detect absence.

  • 🎯 Sentinel Values: When you need a unique, falsey object to represent missing or invalid states.

  • 🧩 Type Safety: When you want explicit typing for values that may be absent.

Comparison with Alternatives 🤔

Alternative

Truthy?

Unique?

Picklable?

Scope

object()

Yes

Yes

No

Arbitrary

PEP 661 Sentinels

Optional

Yes

Yes

Per-Module

dataclasses.MISSING

Yes

Yes

No

Global

typing.NoDefault

Yes

Yes

Yes

Global

absence.absent

No

Yes

No

Global

The absent sentinel combines falsey behavior with global uniqueness, making it particularly suitable for representing missing values in contexts where None might be a valid value. The companion AbsenceFactory allows creation of arbitrary absence sentinels, when needed, such as for specific packages.

See PEP 661 (“Sentinel Values”), typing.NoDefault, and dataclasses.MISSING for more details on alternatives.

Installation 📦

Method: Install Python Package

Install via uv pip command:

uv pip install absence

Or, install via pip:

pip install absence

Contribution 🤝

Contribution to this project is welcome! However, it must follow the code of conduct for the project.

Please file bug reports and feature requests in the issue tracker or submit pull requests to improve the source code or documentation.

For development guidance and standards, please see the development guide.

Additional Indicia

GitHub last commit Copier Hatch pre-commit Pyright Ruff PyPI - Implementation PyPI - Wheel

Other Projects by This Author 🌟

  • python-accretive (accretive on PyPI)

    🌌 A Python library package which provides accretive data structures - collections which can grow but never shrink.

  • python-classcore (classcore on PyPI)

    🏭 A Python library package which provides foundational class factories and decorators for providing classes with attributes immutability and concealment and other custom behaviors.

  • python-detextive (detextive on PyPI)

    🕵️ A Python library which provides consolidated text detection capabilities for reliable content analysis. Offers MIME type detection, character set detection, and line separator processing.

  • python-dynadoc (dynadoc on PyPI)

    📝 A Python library package which bridges the gap between rich annotations and automatic documentation generation with configurable renderers and support for reusable fragments.

  • python-falsifier (falsifier on PyPI)

    🎭 A very simple Python library package which provides a base class for falsey objects - objects that evaluate to False in boolean contexts.

  • python-frigid (frigid on PyPI)

    🔒 A Python library package which provides immutable data structures - collections which cannot be modified after creation.

  • python-icecream-truck (icecream-truck on PyPI)

    🍦 Flavorful Debugging - A Python library which enhances the powerful and well-known icecream package with flavored traces, configuration hierarchies, customized outputs, ready-made recipes, and more.

  • python-librovore (librovore on PyPI)

    🐲 Documentation Search Engine - An intelligent documentation search and extraction tool that provides both a command-line interface for humans and an MCP (Model Context Protocol) server for AI agents. Search across Sphinx and MkDocs sites with fuzzy matching, extract clean markdown content, and integrate seamlessly with AI development workflows.

  • python-mimeogram (mimeogram on PyPI)

    📨 A command-line tool for exchanging collections of files with Large Language Models - bundle multiple files into a single clipboard-ready document while preserving directory structure and metadata… good for code reviews, project sharing, and LLM interactions.

Download files

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

Source Distribution

absence-1.2.tar.gz (17.5 kB view details)

Uploaded Source

Built Distribution

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

absence-1.2-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file absence-1.2.tar.gz.

File metadata

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

File hashes

Hashes for absence-1.2.tar.gz
Algorithm Hash digest
SHA256 68d031662a51d5d2c994b53d28ba7fb4cc06373ee3611339b9478e6b89b57133
MD5 4737caf1be338cde8e35e825f645a6de
BLAKE2b-256 04e1017f2cc97727fa44577cbfc0aaa310998481db2413edcb56204f65d65798

See more details on using hashes here.

Provenance

The following attestation bundles were made for absence-1.2.tar.gz:

Publisher: releaser.yaml on emcd/python-absence

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

File details

Details for the file absence-1.2-py3-none-any.whl.

File metadata

  • Download URL: absence-1.2-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for absence-1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ed95d897910beb1418b03070f4d0946c14a697988fe19682fb78e930f1ff32f7
MD5 6639cf39ecd027e699a145b5f8bf73b1
BLAKE2b-256 5cf4c2e50357e8f227b91d11cd503983792decec4a87ea4faa44f882cc6feb2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for absence-1.2-py3-none-any.whl:

Publisher: releaser.yaml on emcd/python-absence

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

Supported by

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