Skip to main content

Run terminal commands easily!

Project description

Donations

It takes me a long time to make these libraries. If you would like to support my work, Then you can follow my patreon :)

https://www.patreon.com/Schkimansky

Library

This is a easy to use python library that allows you to run terminal commands easily.

import propar
result = propar.run_command('echo Hello, MG?')
print(result)

Installation

pip install propar

Documentation

There are only 2 functions:

run_command(command: str, timeout=None, get_both_output_and_errors=False, get_return_code=False)
run_commands(commands_array: list[str], timeout=None, get_both_output_and_errors=False, get_return_code=False)

Run_command takes a command as a string and then runs it. The return value of the function depends on the parameters. For example, In this case the return value will be the text that you get when you run the command manually in the terminal.

result = run_command("mkdir NewFolder") # If this command gets a error, it will return the error. However if theres no error, Then it will just return the text you get when you execute that command manually.

However, you can put a timeout parameter to stop the function once it takes too long (defined in seconds)

Also, theres the run_commands function. Its the same as run_command but this time it runs multiple commands.

Thats pretty much all, This can be used as a alternative to CMake. And is more powerfull, easier, extensible, simpler, reliable

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

propar-1.0.2.tar.gz (8.9 kB view hashes)

Uploaded Source

Built Distribution

propar-1.0.2-py3-none-any.whl (8.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page