Skip to main content

Python package enabling a child object to dynamically lookup its parent at runtime.

Project description

pypi versions license ci docs

parent-lookup

parent-lookup is a utility Python package enabling a child object to dynamically lookup its parent at runtime.
It comprises of a small set of decorators and methods allowing bidirectional parent-child relationships without hard-coded circular dependencies or circular imports.

Installation

pip install parent-lookup

Usage

API:

from parent_lookup import TParent, is_child_lookup, lookup_registry

class Child:
    def __init__(self) -> None:
        pass

    @overload
    def find_parent(self, parent_type: type[TParent]) -> TParent | None:
        pass

    @overload
    def find_parent(self, parent_type: TParent) -> TParent | None:
        pass

    def find_parent(self, parent_type: type[TParent] | TParent) -> TParent | None:
        return lookup_registry.lookup_parent(self, parent_type)


class Parent:
    def __init__(self) -> None:
        self._childs: list[Child] = []

    def __new__(
        cls,
    ) -> Parent:
        instance = super().__new__(cls)
        lookup_registry.register_parent(instance)
        return instance

    def add_child(self, child: Child) -> None:
        self._childs.append(child)

    @property
    @is_child_lookup
    def childs(self) -> list[Child]:
        return self._childs

# Create two objects: A parent object and a child object
parent = Parent()
child = Child()
# Add child to parent
parent.add_child(child)
# Lookup parent from child
found_parent = child.find_parent(Parent)
assert found_parent is parent

Descriptor API (optional alternative):

from parent_lookup import ParentLookup, is_child_lookup, lookup_registry


class Parent:
    def __init__(self) -> None:
        self._childs: list[Child] = []

    def __new__(cls) -> Parent:
        instance = super().__new__(cls)
        lookup_registry.register_parent(instance)
        return instance

    def add_child(self, child: Child) -> None:
        self._childs.append(child)

    @property
    @is_child_lookup
    def childs(self) -> list[Child]:
        return self._childs


class Child:
    parent: ParentLookup[Parent] = ParentLookup(Parent)


parent = Parent()
child = Child()
parent.add_child(child)

assert child.parent is parent

For more examples and usage, please refer to parent-lookup's documentation.

Development Setup

1. Install uv

This project uses uv as package manager. If you haven't already, install uv, preferably using it's "Standalone installer" method:
..on Windows:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

..on MacOS and Linux:

curl -LsSf https://astral.sh/uv/install.sh | sh

(see docs.astral.sh/uv for all / alternative installation methods.)

Once installed, you can update uv to its latest version, anytime, by running:

uv self update

2. Clone the repository

Clone the parent-lookup repository into your local development directory:

git clone https://github.com/ClaasRostock/parent-lookup path/to/your/dev/parent-lookup

Change into the project directory after cloning:

cd parent-lookup

3. Install dependencies

Run uv sync -U to create a virtual environment and install all project dependencies into it:

uv sync -U

Note: Using --no-dev will omit installing development dependencies.

Explanation: The -U option stands for --update. It forces uv to fetch and install the latest versions of all dependencies, ensuring that your environment is up-to-date.

Note: uv will create a new virtual environment called .venv in the project root directory when running uv sync -U the first time. Optionally, you can create your own virtual environment using e.g. uv venv, before running uv sync -U.

4. (Optional) Activate the virtual environment

When using uv, there is in almost all cases no longer a need to manually activate the virtual environment.
uv will find the .venv virtual environment in the working directory or any parent directory, and activate it on the fly whenever you run a command via uv inside your project folder structure:

uv run <command>

However, you still can manually activate the virtual environment if needed. When developing in an IDE, for instance, this can in some cases be necessary depending on your IDE settings. To manually activate the virtual environment, run one of the "known" legacy commands:
..on Windows:

.venv\Scripts\activate.bat

..on Linux:

source .venv/bin/activate

5. Install pre-commit hooks

The .pre-commit-config.yaml file in the project root directory contains a configuration for pre-commit hooks. To install the pre-commit hooks defined therein in your local git repository, run:

uv run pre-commit install

All pre-commit hooks configured in .pre-commit-config.yaml will now run each time you commit changes.

pre-commit can also manually be invoked, at anytime, using:

uv run pre-commit run --all-files

To skip the pre-commit validation on commits (e.g. when intentionally committing broken code), run:

uv run git commit -m <MSG> --no-verify

To update the hooks configured in .pre-commit-config.yaml to their newest versions, run:

uv run pre-commit autoupdate

6. Test that the installation works

To test that the installation works, run pytest in the project root folder:

uv run pytest

Meta

Copyright (c) 2026 Claas Rostock. All rights reserved.

Claas Rostock - @LinkedIn - claas.rostock@dnv.com

Distributed under the MIT license. See LICENSE for more information.

https://github.com/ClaasRostock/parent-lookup

Contributing

  1. Fork it (https://github.com/ClaasRostock/parent-lookup/fork)
  2. Create an issue in your GitHub repo
  3. Create your branch based on the issue number and type (git checkout -b issue-name)
  4. Evaluate and stage the changes you want to commit (git add -i)
  5. Commit your changes (git commit -am 'place a descriptive commit message here')
  6. Push to the branch (git push origin issue-name)
  7. Create a new Pull Request in GitHub

For your contribution, please make sure you follow the STYLEGUIDE before creating the Pull Request.

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

parent_lookup-0.2.3.tar.gz (126.7 kB view details)

Uploaded Source

Built Distribution

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

parent_lookup-0.2.3-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file parent_lookup-0.2.3.tar.gz.

File metadata

  • Download URL: parent_lookup-0.2.3.tar.gz
  • Upload date:
  • Size: 126.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for parent_lookup-0.2.3.tar.gz
Algorithm Hash digest
SHA256 684f3366376a91fef205780572be55ae3d442f1dfb900da16124cf6e657c82f9
MD5 fee48a31955c7ab7fdfe0c2e48c9f2da
BLAKE2b-256 474a8355cbbf8e55b298df9e5f5bff59c552f443da180d9c84ceb3c3b2fe33a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for parent_lookup-0.2.3.tar.gz:

Publisher: publish_release.yml on ClaasRostock/parent-lookup

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

File details

Details for the file parent_lookup-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: parent_lookup-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for parent_lookup-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 877b8dd451a8844aac60da1a510fe64360c0f3635fed1d786965bc0e554ef021
MD5 357d8083a72fc4a8eb9940893e61b69e
BLAKE2b-256 64c1c09267d24e5315df3e078b290478c8490902f1931f0022795a1158eab8a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for parent_lookup-0.2.3-py3-none-any.whl:

Publisher: publish_release.yml on ClaasRostock/parent-lookup

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 Pingdom Monitoring Sentry Error logging StatusPage Status page