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 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["key"] = "value"

    from_fernet = fernet["key"]
    from_origin = origin["key"]

    assert from_fernet != from_origin
    assert from_fernet == "value"

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


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.3.tar.gz (11.4 kB view hashes)

Uploaded Source

Built Distribution

diskcache_fernet-0.1.3-py3-none-any.whl (12.3 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