ReadSettings For Python

Easily create, edit and remove a customized settings file which you can use for storing all of the settings for your application. At the moment, ReadSettings is compatible with Python 3 but support to more programming langauages may come in the future.

Installation

Start by cloning the repository with Git (or downloading it)

git clone https://github.com/Richienb/readsettings-python.git
cd readsettings-python
git checkout bb52a3724a0ba0eb1c339fe8ef73a181ef298711 .
          

 

Then move or copy /project/py into your project directory

:: Windows Batch Example
cd project
copy /V readsettings.py C:\Users\Richie Bendall\Desktop\Files\MyProject\readsettings.py
          

Usage

Remember to import readsettings first!

import readsettings
          

 

Command Name Explaination Syntax
New File Create a new settings file newfile(newsettingspath)
Rename File Remove an existing settings file renamefile(settingspath, newfilename)
Remove File Rename an existing settings file removefile(settingspath="appconfig.settings")
New Value Create a new value in an existing settings file newvalue(settingspath, newvaluename, value)
Read Value Read a value in an existing settings file readvalue(settingspath, valuename)
Change Value Change a value in an existing settings file changevalue(settingspath, valuename, newvalue)
Change Value Name Change the name of a value in an existing settings file changevaluename(settingspath, valuename, newname)
Raw Lines Fetch the raw content of an existing settings file rawlines(settingspath)

Open Source

ReadSettings For Python is open source on GitHub.

Request a feature | Report a bug | Something else

Continuous Integration Status

Code Quality Build Status