Giter Club home page Giter Club logo

python_parallel_command_execution's Introduction

python_parallel_command_execution

An example of using the asyncio library to write concurrent execution of Linux commands.

Before reading the code in this repo make sure you understand the code that explains the basic concepts of the asyncio library: https://github.com/Maverick2318/python_asyncio_examples


Example output of parallel_cmd.py. It demonstrates that running a sleep 1 and a sleep 2 command completes in two seconds due to running them concurrently:

C02VQ1S6HTDD:python_parallel_command_execution nsiddiq$ ./parallel_cmd.py

['ls /zzz' exited with 1]

[stderr]

ls: /zzz: No such file or directory

Started at 16:13:07

['sleep 1; echo "hello"' exited with 0]

[stdout]

hello

['sleep 2; echo "world"' exited with 0]

[stdout]

world

Finished at 16:13:09


Example output of parallel_then_decision.py. It demonstrates that you can capture the exit codes of the individual commands then make a decision based on those codes after all the commands have completed:

C02VQ1S6HTDD:python_parallel_command_execution nsiddiq$ ./parallel_then_decision.py

Started at 16:41:51

['sleep 1 && exit 0' exited with 0]

['sleep 1 && exit 2' exited with 2]

['sleep 1 && exit 0' exited with 0]

Finished at 16:41:52

Not all commands passed.

python_parallel_command_execution's People

Contributors

nasr4 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.