Skip to main content

Chipmunk

Build Status

A very small and simple usage mechanism for Python threadlocals.

This is an abstraction on type of threading.local that attempts to simply usage a bit and combat the common problem of accidentally overwriting values that may have been added by other portions of code. It also implements the in operator to test for inclusion and the bool() method to test whether the Chipmunk is holding anything.

Example Usage

Instantiating

The Chipmunk object is a sort of singleton that is instantiated upon import.

from chipmunk import Chipmunk #  Ready for use

Storing Data

Asking the Chipmunk to hold something can be done in one of three ways:

Setting Attributes Directly

Chipmunk.acorn = "Acorn"
Chipmunk.acorn_count = 5

With the store_data method

Chipmunk.store_data("acorn", "Acorn") Chipmunk.store_data("acorn_count", 5)

And with a context manager for short-term storage that removes the need for checking whether it is already holding something with the given name.

Chipmunk.nut = "acorn"

with Chipmunk.hold_this("nut", "walnut"):
    do_something_with_Chipmunk()

return Chipmunk.nut #  Returns "acorn"

If the Chipmunk is already holding something and you ask it to hold something else with the same name it will raise an AttributeError. If you want to replace an object permanently you must call either the delete_data or clear methods or use del Chipmunk.attr.

Chipmunk.nut = "acorn"
Chipmunk.nut = "walnut" #  AttributeError thrown

Chipmunk.nut = "acorn"
del Chipmunk.nut
Chipmunk.nut = "walnut" #  OK

Chipmunk.nut = "acorn"
Chipmunk.delete_data("nut")
Chipmunk.nut = "walnut" #  OK

Retrieving Data

When retrieving data from the Chipmunk a bool() check will tell you if it’s holding anything at all.

from chipmunk import Chipmunk
if Chipmunk: #  Conditional fails
    return "Not Empty"

Chipmunk.nut = "acorn"
if Chipmunk: #  Conditional succeeds
    return "Not Empty"

Testing whether the Chipmunk is holding something with a given name is as simple as an in check.

Chipmunk.nut = "acorn"
"nut" in Chipmunk #  True

Data can be accessed by doing an attribute lookup directly, using the get_data method, or getattr.

Chipmunk.nut = "acorn"

# These all return "acorn"
Chipmunk.nut
Chipmunk.get_data("nut")
getattr(Chipmunk, "nut")

Release files for chipmunk 1.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for chipmunk 1.0.1
File Size Uploaded
chipmunk-1.0.1.tar.gz 3.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for chipmunk 1.0.1
File Interpreter ABI Platform
chipmunk-1.0.1-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 9.3 kB

Release files / chipmunk-1.0.1.tar.gz

Download URL chipmunk-1.0.1.tar.gz
Size 3.6 kB
Tags Source
SHA-256 checksum
How to use checksums
59f13197d984ebd4d40e97fe1276328706033737fc149ceb85861db4e78833f2
BLAKE2b-256 checksum
How to use checksums
524ca359e6d322ee11c28bfe2766ee61c9147d376569509356c81196b7a8a3b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / chipmunk-1.0.1-py2.py3-none-any.whl

Download URL chipmunk-1.0.1-py2.py3-none-any.whl
Size 5.7 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
882d7e2a7dfba9f52cacfdc3c50e5aed60071c9bc174a93ef3db3da6d0452bad
BLAKE2b-256 checksum
How to use checksums
4241507c5037cca0772a2a6645de8ad7fa1d5f4e09cfcaccb6a4f9647debd1ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

1.0.1 This release

2 release files

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