معرفی شرکت ها


diraccfg-0.2.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

DIRAC cfg files reader
ویژگی مقدار
سیستم عامل -
نام فایل diraccfg-0.2.2
نام diraccfg
نسخه کتابخانه 0.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Federico Stagni
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/DIRACGrid/cfg
آدرس اینترنتی https://pypi.org/project/diraccfg/
مجوز GPL-3.0-only
# Parser for DIRAC cfg files [![CI](https://github.com/DIRACGrid/diraccfg/workflows/CI/badge.svg?branch=master)](https://github.com/DIRACGrid/diraccfg/actions?query=branch%3Amaster) [![PyPI](https://badge.fury.io/py/diraccfg.svg)](https://pypi.org/project/diraccfg/) [![Conda-Forge](https://img.shields.io/conda/vn/conda-forge/diraccfg)](https://github.com/conda-forge/diraccfg-feedstock/) `diraccfg` provides a parser for the configuration files used by [DIRAC](https://github.com/DIRACGrid) and its associated projects. It is designed to be usable as either a full Python package or as a standalone file, which can be found in `src/diraccfg/cfg.py`. The standalone mode allows for this to be used by `dirac-install` and the pilot scripts without requiring of `pip`. ## Installation ```bash pip install diraccfg ``` ## Command line usage The command line mode of `diraccfg` primarily serves to convert the configuration into a JSON file which can then be processed using standard tools such as [`jq`](https://stedolan.github.io/jq/). The following examples are ran using the following configuration file: ``` DefaultModules = DIRAC Sources { DIRAC = git://github.com/DIRACGrid/DIRAC.git } Releases { integration { Modules = DIRAC, WebAppDIRAC, VMDIRAC Externals = v6r6p8 DIRACOS = master } v7r0-pre19 { Modules = DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r5, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1 DIRACOS = master } v6r22p2 { Modules = DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1 Externals = v6r6p8 DIRACOS = v1r3 } v6r22p1 { Modules = DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1 Externals = v6r6p8 DIRACOS = v1r3 } } ``` ### Print as JSON ``` $ diraccfg as-json example.cfg {"DefaultModules": "DIRAC", "Sources": {"DIRAC": "git://github.com/DIRACGrid/DIRAC.git"}, "Releases": {"integration": {"Modules": "DIRAC, WebAppDIRAC, VMDIRAC", "Externals": "v6r6p8", "DIRACOS": "master"}, "v7r0-pre19": {"Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r5, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "DIRACOS": "master"}, "v6r22p2": {"Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "Externals": "v6r6p8", "DIRACOS": "v1r3"}, "v6r22p1": {"Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "Externals": "v6r6p8", "DIRACOS": "v1r3"}}} ``` ### Extract available releases with using `jq` ```bash $ diraccfg as-json example.cfg | jq '.Releases' { "integration": { "Modules": "DIRAC, WebAppDIRAC, VMDIRAC", "Externals": "v6r6p8", "DIRACOS": "master" }, "v7r0-pre19": { "Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r5, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "DIRACOS": "master" }, "v6r22p2": { "Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "Externals": "v6r6p8", "DIRACOS": "v1r3" }, "v6r22p1": { "Modules": "DIRAC, VMDIRAC:v2r4-pre2, RESTDIRAC:v0r6, COMDIRAC:v0r17, WebAppDIRAC:v4r0p7, OAuthDIRAC:v0r1-pre1", "Externals": "v6r6p8", "DIRACOS": "v1r3" } } ``` ### Get a sorted list of stable version numbers ```bash $ diraccfg as-json example.cfg | jq '.Releases' | diraccfg sort-versions ["v6r22p2", "v6r22p1"] ``` ### Get a sorted list of version numbers including prereleases ```bash $ diraccfg as-json example.cfg | jq '.Releases' | diraccfg sort-versions --allow-pre-releases ["v7r0-pre19", "v6r22p2", "v6r22p1"] ``` ### Find the latest releases ```bash $ diraccfg as-json example.cfg | jq '.Releases' | diraccfg sort-versions | jq -r '.[0]' v6r22p2 ``` ```bash $ diraccfg as-json example.cfg | jq '.Releases' | diraccfg sort-versions --allow-pre-releases | jq -r '.[0]' v7r0-pre19 ```


نیازمندی

مقدار نام
>=4.6 pytest
- pytest-cov
>=1.6.5 pylint
- pycodestyle


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

مقدار نام
>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* Python


نحوه نصب


نصب پکیج whl diraccfg-0.2.2:

    pip install diraccfg-0.2.2.whl


نصب پکیج tar.gz diraccfg-0.2.2:

    pip install diraccfg-0.2.2.tar.gz