معرفی شرکت ها


cfgsaver-1.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Module to save and fetch configuration data in a standard path and format.
ویژگی مقدار
سیستم عامل -
نام فایل cfgsaver-1.0.4
نام cfgsaver
نسخه کتابخانه 1.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Prahlad Yeri
ایمیل نویسنده prahladyeri@yahoo.com
آدرس صفحه اصلی https://github.com/prahladyeri/cfgsaver
آدرس اینترنتی https://pypi.org/project/cfgsaver/
مجوز MIT
![pypi](https://img.shields.io/pypi/v/cfgsaver.svg) ![python](https://img.shields.io/pypi/pyversions/cfgsaver.svg) ![implementation](https://img.shields.io/pypi/implementation/cfgsaver.svg) <!-- https://img.shields.io/travis/prahladyeri/cfgsaver/master.svg --> <!-- ![docs](https://readthedocs.org/projects/cfgsaver/badge/?version=latest) --> ![license](https://img.shields.io/github/license/prahladyeri/cfgsaver.svg) ![last-commit](https://img.shields.io/github/last-commit/prahladyeri/cfgsaver.svg) <!--![commit-activity](https://img.shields.io/github/commit-activity/w/prahladyeri/cfgsaver.svg)--> [![donate](https://img.shields.io/badge/-Donate-blue.svg?logo=paypal)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JM8FUXNFUK6EU) [![follow](https://img.shields.io/twitter/follow/prahladyeri.svg?style=social)](https://twitter.com/prahladyeri) # cfgsaver ![project logo](https://raw.githubusercontent.com/prahladyeri/cfgsaver/master/logo.png) Python library to save and fetch configuration data in a standard/conventional path and format. # Installation ```bash pip install cfgsaver ``` # Usage Import the `cfgsaver` module to save/read configuration values in your source files: ```python from cfgsaver import cfgsaver def save_config(): # saves configuration data to ~/.config/<your_package>/cfg.json # unless cfgpath parameter is overridden: config = {'name': 'Prahlad', 'language': 'Python', 'framework': 'Flask' } cfgsaver.save('<your_package>', config) def get_config(): # gets configuration data from ~/.config/<your_package>/cfg.json # unless cfgpath parameter is overridden: config = cfgsaver.get("<your_package>") #returns None if config file doesn't exist ``` In case you want to ship some default configuration data packaged with your app, then read the below instructions carefully: Ensure to include the path to your cfg.json in `MANIFEST.in` as follows (you'll have to copy this file from ~/.config/<your_package> to your source directory for packaging purpose): ```bash include <your_package>/cfg.json ``` Override the PostInstall class in your setup.py like this in order to save your config file to the user's machine after installation: ```python from setuptools import setup, find_packages from setuptools.command.install import install import shutil class PostInstallCommand(install): """Post-installation for installation mode.""" def run(self): install.run(self) fpath = os.path.join(self.install_lib, your_package) fpath = os.path.join(fpath, "cfg.json") tpath = os.path.join(os.path.expanduser("~"), ".config/<your_package>/cfg.json") if not os.path.isdir(tpath): os.makedirs(tpath) shutil.move(fpath, tpath) s = setup( name = "your_package", packages=find_packages(), .. .. .. cmdclass={ 'install': PostInstallCommand, }, ) ``` # Attribution <div>Icons made by <a href="https://www.flaticon.com/authors/smashicons" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>


زبان مورد نیاز

مقدار نام
>= 3.4 Python


نحوه نصب


نصب پکیج whl cfgsaver-1.0.4:

    pip install cfgsaver-1.0.4.whl


نصب پکیج tar.gz cfgsaver-1.0.4:

    pip install cfgsaver-1.0.4.tar.gz