Skip to main content

List wrapper, that pickles it on every update

Project description

store_var

Wrapper, that stores a list into a file on every list update. A band-aid solution for a small project, when database is an overkill.

from store_var import stored

# Stores to file on first initializaiton
users = stored('users.pickle', [
    {'name': 'Gregory', 'age': 45},
    {'name': 'James', 'age': 37},
])

# Behaves as a list
print(f"There are {len(users)} users") # → There are 2 users

# On each change, storage file is updated
users.append({'name': 'Lisa', 'age': 38})

# ··· After restarting a REPL ···

users = stored('users.pickle')
print(users)
# → stored({'name': 'Gregory', 'age': 45}, {'name': 'James', 'age': 37}, {'name': 'Lisa', 'age': 38})
# Notice, that there are 3 users now

Installation

pip install store_var

Limitations

Wrappers for reverse, sort, copy and deepcopy are not implemented yet. Everything else works and is unit-tested.

Stores data using pickle.

Supports only a lists of picklable objects. Won't store a dict, or a list of lambdas.

Examples

See tests.

Project details


Release history Release notifications | RSS feed

This version

1

Download files

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

Source Distribution

store_var-1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

store_var-1-py3-none-any.whl (4.0 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