Skip to main content

No project description provided

Project description

diskcache-fernet

License: Apache-2.0 github action PyPI version python version

how to install

$ pip install diskcache-fernet

how to use

from __future__ import annotations

from pathlib import Path
from pickle import UnpicklingError
from tempfile import TemporaryDirectory

from diskcache import Cache

from diskcache_fernet import FernetDisk


def main(temp: Path) -> None:
    origin = Cache(temp)
    fernet = Cache(temp, disk=FernetDisk)
    # or add fernet key
    # fernet = Cache(temp, disk=FernetDisk, disk_fernet=b"some fernet key")

    fernet["string"] = "value"
    fernet["pickle"] = {"key": "value"}

    from_fernet_string = fernet["string"]
    from_origin_string = origin["string"]

    assert from_fernet_string != from_origin_string
    assert from_fernet_string == "value"

    print(from_origin_string)
    # like:
    # gAAAAABlGtPWAPEcYLqu6waiUd551H4jfAvQlulWnfwyWTVtjZyF6AkUCVFQKPpIRz9vu29y1FoduIYoK-mOz5CJt0Kx-pv2zQ==

    from_fernet_pickle = fernet["pickle"]
    assert from_fernet_pickle == {"key": "value"}
    try:
        origin["pickle"]
    except Exception as exc:
        assert isinstance(exc, UnpicklingError)


if __name__ == "__main__":
    with TemporaryDirectory() as temp:
        main(Path(temp))

License

Apache-2.0, see LICENSE.

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

diskcache_fernet-0.1.6.tar.gz (26.5 kB view hashes)

Uploaded Source

Built Distribution

diskcache_fernet-0.1.6-py3-none-any.whl (16.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page