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
- Host: GitHub
- URL: https://github.com/alphaolomi/py-automate
- Owner: alphaolomi
- License: bsd-3-clause
- Created: 2019-12-06T19:31:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-23T09:09:09.000Z (over 2 years ago)
- Last Synced: 2025-01-11T16:25:02.402Z (about 1 year ago)
- Topics: automation, collection, lifehack, python3, techniques, work-in-progress, workflow
- Language: Python
- Homepage:
- Size: 7.73 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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