معرفی شرکت ها


commandex-0.2.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages.
ویژگی مقدار
سیستم عامل -
نام فایل commandex-0.2.1
نام commandex
نسخه کتابخانه 0.2.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aleksandr Suvorov
ایمیل نویسنده smartlegiondev@gmail.com
آدرس صفحه اصلی https://github.com/smartlegionlab/commandex/
آدرس اینترنتی https://pypi.org/project/commandex/
مجوز BSD 3-Clause License
# commandex *** ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/commandex) [![PyPI - Downloads](https://img.shields.io/pypi/dm/commandex?label=pypi%20downloads)](https://pypi.org/project/commandex/) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/commandex)](https://github.com/smartlegionlab/commandex/) [![GitHub](https://img.shields.io/github/license/smartlegionlab/commandex)](https://github.com/smartlegionlab/commandex/blob/master/LICENSE) [![PyPI](https://img.shields.io/pypi/v/commandex)](https://pypi.org/project/commandex) [![PyPI - Format](https://img.shields.io/pypi/format/commandex)](https://pypi.org/project/commandex) [![GitHub Repo stars](https://img.shields.io/github/stars/smartlegionlab/commandex?style=social)](https://github.com/smartlegionlab/commandex/) [![GitHub watchers](https://img.shields.io/github/watchers/smartlegionlab/commandex?style=social)](https://github.com/smartlegionlab/commandex/) [![GitHub forks](https://img.shields.io/github/forks/smartlegionlab/commandex?style=social)](https://github.com/smartlegionlab/commandex/) *** ## Help the project financially: - PayPal: [https://paypal.me/smartlegionlab](https://paypal.me/smartlegionlab) - Yandex Money: [https://yoomoney.ru/to/4100115206129186](https://yoomoney.ru/to/4100115206129186) - LiberaPay: [https://liberapay.com/smartlegion/donate](https://liberapay.com/smartlegion/donate) - Visa: 4048 0250 0089 5923 *** ## Short Description: ___commandex___ - A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages. *** Author and developer: ___A.A Suvorov___ [![smartlegiondev@gmail.com](https://img.shields.io/static/v1?label=email&message=smartlegiondev@gmail.com&color=blue)](mailto:smartlegiondev@gmail.com) *** ## Supported: - Linux: All. - Windows: 7/8/10. - Termux (Android). *** ## What's new? ___commandex v0.2.1___ - Fixed errors. *** ## Description: A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages. - Store the required commands under a given name in a simple file with a clear structure. - Read named command packages from a file. - Use only the required command packages from a file using filtering. - Execute command packages cross-platform. ### How it works? 1. Create a file with any name, with the extension * .cfg 2. Use # as a comment, line break for convenience or separation. 3. Use [package name] to specify the name of the command package. 4. After the name, write the commands that you decided to combine under this name, one per line. 5. To create the next batch of commands, use points 2, 3 again. 6. Between commands, you can insert blank lines or comments, see point 2. Used to create utilities for working with commands (execution, launch, autorun, storage). You can keep your commands in simple and understandable files, collect them in one place, split into named categories (packages) and execute at any time: The files must have the extension *.cfg, and have the correct structure: ### commands.cfg: ```ini # Comments [package name 1] command 1 command 2 command N [package name 2] command 1 command 2 command N ``` *** ## Help: ### Install and Use: - `pip3 install commandex` Available tools: - Pack - storing commands. - Command executors - command execution. - Pack makers - create a list with objects of command packages. - Parsers - parsers for files with command packages. - Filters - filtering commands. - Factories - Fabric for creating objects. Principle of operation: - Reading command packages from a file. - Filter packages if needed. - We create a list of package objects for future use. - We execute commands from each package. ### Simplest implementation: ```python from commandex import Commander commander = Commander() # Reading command packages from a file. pack_dict = commander.parsers.cfg_parser.parse('file.cfg') # Filter packages if needed. packs = commander.filters.pack_filter.filter_pack_dict(pack_dict, add_list=[], exc_list=[]) # We create a list of package objects for future use. pack_list = commander.makers.pack_maker.make_pack_list(packs) # We execute commands from each package. for pack in pack_list: print(pack.name) for command in pack.commands: print(command) commander.executors.os.execute(command) ``` ### Termux, Windows support: Utilities created with use work "commandex", without problems in Termux, Windows. For example: [commandman](https://github.com/smartlegionlab/commandman). *** ### Test coverage: #### Run tests: - `pip3 install pytest` - `pytest -v` #### __Test coverage 100%__ - `pip install pytest-coverage` - `pytest --cov` ![commandex image](https://github.com/smartlegionlab/commandex/raw/master/data/images/commandex.png) #### Report html: - `pytest --cov --cov-report=html` *** ## Disclaimer of liability: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *** ## Copyright: -------------------------------------------------------- Licensed under the terms of the BSD 3-Clause License (see LICENSE for details). Copyright © 2018-2021, A.A Suvorov All rights reserved. -------------------------------------------------------- https://github.com/smartlegionlab smartlegiondev@gmail.com --------------------------------------------------------


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

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


نحوه نصب


نصب پکیج whl commandex-0.2.1:

    pip install commandex-0.2.1.whl


نصب پکیج tar.gz commandex-0.2.1:

    pip install commandex-0.2.1.tar.gz