معرفی شرکت ها


alnair-0.3.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A simple system configuration framework
ویژگی مقدار
سیستم عامل -
نام فایل alnair-0.3.2
نام alnair
نسخه کتابخانه 0.3.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Naoya Inada
ایمیل نویسنده naoina@kuune.org
آدرس صفحه اصلی https://github.com/naoina/alnair
آدرس اینترنتی https://pypi.org/project/alnair/
مجوز BSD
Alnair ====== Alnair is a simple system configuration framework. And also are intended to be used in conjunction with the Fabric (https://github.com/fabric/fabric). Requirement ----------- - Python 2.6 and later (but does not work in 3.x) Installation ------------ from pypi:: # using pip % pip install -U alnair # or using easy_install % easy_install -U alnair from source:: % python setup.py install Basic usage ----------- First, generate the recipes template set by following command:: % alnair generate template archlinux In this example, distribution name using ``archlinux``. ``recipes/archlinux/common.py`` directories and file are created to current directory by this command. Also "``g``" as an alias for the ``generate`` command has been defined. The following command is same meaning as above:: % alnair g template archlinux Next, edit ``install_command`` variable in ``common.py`` for the target distribution:: # common.py install_command = 'pacman -Sy' Next, generate recipe template for package setup by following command:: % alnair g recipe python ``python.py`` file is created on ``recipes/archlinux/`` directory by this command. In fact, directories where you want to create the files are ``recipes/*/``. Finally, edit ``python.py`` for more settings if necessary and setup to the server by following command:: % alnair setup archlinux python Using as a library ------------------ You can use the following code instead of "``alnair setup archlinux python``" command:: from alnair import Distribution distname = 'archlinux' with Distribution(distname) as dist: dist.setup('python') For more documentation, read the sources or please wait while the document is being prepared. Changes ======= 0.3.2 ----- - Add --dry-run option to CLI - Implement the multiple packages in the single package name - Implement a host specific configuration 0.3 --- - Add command-line interface - Add Distribution.config() API 0.2 --- - Change the APIs (An incompatible with older releases) 0.1.2 ----- - Implement the commands execution to make before setup - Bug fixes 0.1.1 ----- - A few bug fixes 0.1 --- - First release


نحوه نصب


نصب پکیج whl alnair-0.3.2:

    pip install alnair-0.3.2.whl


نصب پکیج tar.gz alnair-0.3.2:

    pip install alnair-0.3.2.tar.gz