Skip to main content

Simple but useful python library that helps you to store and manage user preferences.

Project description

PREFS logo

Python Version PYPI Downloads Stars Watchers
Build Documentation Status Last commit Size Top languages License MIT

Why?

PREFS's purpose is to facilitate the process of store and manage user preferences, simple but useful library.

Installation:

On windows: pip install PREFS

On MacOS and Linux: pip3 install PREFS

Syntax:

Each PREFS file is an instance of the PREFS class:
PREFS class has one required parameter, which is a dictionary with the default preferences, default means the preferences that all users will have at first time.

UserPrefs = PREFS.PREFS(prefs = {"theme": "light", "lang": "en", "keybindings": {"Ctrl+C": "Copy", "Ctrl+V": "Paste", "Ctrl+X": "Cut"}})

This code will create a file like this:

#PREFS
theme=light
lang=en
keybindings=>
  Ctrl+C=Copy
  Ctrl+V=Paste
  Ctrl+X=Cut

A total human readable file that supports cascade/tree.


The main methods to manage the preferences are are:

  • ReadPrefs(): Returns a dictionary reading the PREFS file.

  • WritePrefs(): Requires two arguments, first the name of the pref that you want to change (if pref exists) or create if it doesn't, and second argument is the value that you want to assign to the pref. If using nested dictionaries pass in key parameter the keys path separated by a forward slash, e.g.: WritePrefs("keybindings/Ctr+C", "Ctrl+D")

  • ConvertToJson(): Converts the PREFS file into a json one.

Methods outside PREFS class:

  • ReadJsonFile(): Requires a the filename of the json file to read and returns it's value.

  • GetStats(): Returns and prints the PREFS library stats using pypistats (https://pypi.org/project/pypistats/).

Documentation

PREFS documentation can be found at https://prefs-documentation.readthedocs.io/en/latest/ with more examples and information.


Links

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

PREFS-0.1.3.tar.gz (12.2 kB view hashes)

Uploaded Source

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