Skip to main content

local preferences store to sqlite

Project description

pref - a simple local preferences store

Persistent storage of attrs attributes or an ordered set (like a list, but no duplicates) to a local SQLite database file.

Example

from attr import attrib, attrs
from ismain import is_main

from pref import PrefDict, PrefOrderedSet

application_name = "myapp"
author = "me"

@attrs
class MyPref(PrefDict):
    name = attrib(default=None)


if is_main():

    # set a variable
    preferences = MyPref(application_name, author)
    preferences.name = "me"

    # read it back
    preferences = MyPref(application_name, author)
    print(preferences.name)  # me

    # set an ordered set (list-like, but no duplicates)
    my_list = PrefOrderedSet(application_name, author, "mylist")
    my_list.set(["a", "b", "c"])

    # read the ordered set back in
    my_list = PrefOrderedSet(application_name, author, "mylist")
    print(my_list.get())  # ['a', 'b', 'c']

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pref-0.0.2-py3-none-any.whl (4.8 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