do automate things on Linux
Project description
auto_everything
Linux(mainly ubuntu) automation
Installation
wget https://github.com/yingshaoxo/auto_everything/raw/master/env_setup.sh
sudo bash env_setup.sh
Magic
wget https://github.com/yingshaoxo/auto_everything/raw/master/demo/install_YouCompleteMe.py
sudo python3 install_YouCompleteMe.py
Get involved
You know, one man's work is kind of boring, so if you have any better way to implement some function, feel free to pull a request.
Basic API
Import
from auto_everything.base import Terminal
t = Terminal()
Run a command & get reply
reply = t.run_command('uname -a')
print(reply)
Run commands & wait until it was finished
commands = """
sudo apt update
uname -a
"""
t.run(commands, wait=True)
Run a program
t.run_program('firefox')
Run a python script
t.run_py('your_python_file_path')
Run a bash script
t.run_sh('your_.sh_file_path')
Detect if a program or script is running
status = t.is_running('terminal')
print(status)
Kill it
t.kill('terminal')
For simplify Python development
Turn Python Class into a Command Line Program
py.fire(your_class_name)
Advanced API
Create(start) or Cancel(stop) a systemd serviece
from auto_everything.base import Super
s = Super(username="root")
s.service("service_name", "your_python_file_path")
System management
Get package list
from auto_everything.base import OS
_os = OS()
python_packages = _os.list_python_packages()
lubuntu_packages = _os.list_packages()
print(python_packages)
print(lubuntu_packages)
Install or Uninstall a Python package
from auto_everything.base import OS
_os = OS()
_os.install_python_package("any_package_name")
_os.uninstall_python_package("any_package_name")
Install or Uninstall a Lubuntu package
from auto_everything.base import OS
_os = OS()
_os.install_package("any_package_name")
_os.uninstall_package("any_package_name")
Anothers
Web automation
from auto_everything.web import Selenium
from time import sleep
my_selenium = Selenium("https://www.google.com", headless=False)
d = my_selenium.driver
# get input box
xpath = '//*[@id="lst-ib"]'
element = my_selenium.wait_until_exists(xpath)[0]
# text inputing
element.send_keys('\b' * 20, "yingshaoxo")
# click search button
element = my_selenium.wait_until_exists('//input[@value="Google Search"]')[0]
element.click() # d.execute_script("arguments[0].click();", element)
# exit
sleep(30)
d.quit()
Simpler IO
from auto_everything.base import IO
io = IO()
io.write("hi.txt", "Hello, world!")
print(io.read("hi.txt"))
io.append("hi.txt", "\n\nI'm yingshaoxo.")
print(io.read("hi.txt"))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
auto_everything-3.2.tar.gz
(18.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file auto_everything-3.2.tar.gz.
File metadata
- Download URL: auto_everything-3.2.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f064460157a05718ecd1924a87514bae998c677ee7cb0f44add5185464bf5e3
|
|
| MD5 |
f8e0f5a308507bcdf05b5f6c96326592
|
|
| BLAKE2b-256 |
34a921bb136ed82169a80204480992f01339a4199d5f1698a1f4d1c5a41c673a
|
File details
Details for the file auto_everything-3.2-py3-none-any.whl.
File metadata
- Download URL: auto_everything-3.2-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f795f6bf0bc8b17507b96c4e2c5d18b7810cd7b811c6f9f2afa67b65579e17bf
|
|
| MD5 |
b44ea6c1c06782c26e8c68d8a9fb2f0a
|
|
| BLAKE2b-256 |
8d98729c96204161b5d06547a81772197db1509cf9abae1e1ace6299c80e19b9
|