An open API service indexing awesome lists of open source software.

https://github.com/alphaolomi/py-automate

Collection of Automation techniques,workflow,.. with Python
https://github.com/alphaolomi/py-automate

automation collection lifehack python3 techniques work-in-progress workflow

Last synced: about 1 year ago
JSON representation

Collection of Automation techniques,workflow,.. with Python

Awesome Lists containing this project

README

          

# PyAutomate

Explore automation, expreince techniques, A victim of Automation

## Usage

- On Windows, the shebang line is `#! python3`
- On OS X, the shebang line is `#! /usr/bin/env python3`
- On Linux, the shebang line is `#! /usr/bin/python3`

### Running Python Programs with Assertions Disabled

You can disable the assert statements in your Python programs for a slight
performance improvement. When running Python from the terminal,
include the `-O` switch after python or python3 and before the name of the
`.py` file.

```sh
python ./script.py -O
```

This will run an optimized version of your program that skips the
assertion checks.

## Inspiration

Inspired from

- `Automate the Boring Stuff with Python: Practical Programming for Total Beginners Book` by _Al Sweigart_ [link](https://automatetheboringstuff.com/)

- `Python Automation Cookbook: Explore the World of Automation Using Python recipes that will enhance your skills` by _Jaime Buelta_ [link](https://www.packtpub.com/application-development/python-automation-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781789133806)

- `Network Automation Using Python 3: An Administrator's Handbook Book` by _Jithin Alex_ [link](https://www.amazon.com/Network-Automation-using-Python-Administrators/dp/1724108840)
## License

BSD-3 License