Skip to content

Collection of Automation techniques,workflow,.. with Python

License

Notifications You must be signed in to change notification settings

alphaolomi/py-automate

Repository files navigation

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.

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

  • Python Automation Cookbook: Explore the World of Automation Using Python recipes that will enhance your skills by Jaime Buelta link

  • Network Automation Using Python 3: An Administrator's Handbook Book by Jithin Alex link

License

BSD-3 License

Releases

No releases published

Packages

No packages published