معرفی شرکت ها


ActionTree-0.9.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Executes (long) actions in parallel, respecting dependencies between those actions
ویژگی مقدار
سیستم عامل -
نام فایل ActionTree-0.9.0
نام ActionTree
نسخه کتابخانه 0.9.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Vincent Jacques
ایمیل نویسنده vincent@vincent-jacques.net
آدرس صفحه اصلی http://jacquev6.github.io/ActionTree
آدرس اینترنتی https://pypi.org/project/ActionTree/
مجوز MIT
*ActionTree* is a Python (3.5+) library to execute (long) actions in parallel, respecting dependencies between those actions. You create a dependency graph of actions to be executed and then call the ``execute`` function on its root. It's licensed under the `MIT license <http://choosealicense.com/licenses/mit/>`_. It's available on the `Python package index <http://pypi.python.org/pypi/ActionTree>`_. Its `documentation <http://jacquev6.github.io/ActionTree>`_ and its `source code <https://github.com/jacquev6/ActionTree>`_ are on GitHub. Questions? Remarks? Bugs? Want to contribute? `Open an issue <https://github.com/jacquev6/ActionTree/issues>`_! .. image:: https://img.shields.io/github/workflow/status/jacquev6/ActionTree/Continuous%20Integration?label=CI&logo=github :target: https://github.com/jacquev6/ActionTree/actions?query=workflow%3A%22Continuous+Integration%22 .. image:: https://img.shields.io/pypi/v/ActionTree?logo=pypi :alt: PyPI :target: https://pypi.org/project/ActionTree/ .. image:: https://img.shields.io/pypi/pyversions/ActionTree?logo=pypi :alt: PyPI :target: https://pypi.org/project/ActionTree/ Quick start =========== Install from PyPI:: $ pip install ActionTree With dependencies to create Gantt charts and dependency graphs:: $ pip install 'ActionTree[dependency_graphs,gantt]' Import: >>> from ActionTree import execute >>> from ActionTree.stock import CallSubprocess Execute some action: >>> link = CallSubprocess(["g++", "a.o", "b.o", "-o", "test"]) >>> link.add_dependency(CallSubprocess(["g++", "-c", "a.cpp", "-o", "a.o"])) >>> link.add_dependency(CallSubprocess(["g++", "-c", "b.cpp", "-o", "b.o"])) >>> report = execute(link) And verify everything went well: >>> report.is_success True >>> os.path.isfile("test") True


نحوه نصب


نصب پکیج whl ActionTree-0.9.0:

    pip install ActionTree-0.9.0.whl


نصب پکیج tar.gz ActionTree-0.9.0:

    pip install ActionTree-0.9.0.tar.gz