项目作者: jiri-otoupal

项目描述 :
Python Cross Platform Toolkit for Windows and Linux Environment Variables, Shortcuts and Start Menu Shortcuts
高级语言: Python
项目地址: git://github.com/jiri-otoupal/pycrosskit.git
创建时间: 2021-02-27T14:02:51Z
项目社区:https://github.com/jiri-otoupal/pycrosskit

开源协议:Other

下载


Python Cross Platform Toolkit for Windows and Linux variables, shortcuts and start menu shortcuts

Simple Cross Platform creation of shortcuts and Persistent Environment Variables

image
PyPI - Python Version

Build Status
Downloads

Installing

Install and update using pip:

  1. pip install pycrosskit
  2. or
  3. pip3 install pycrosskit

Supported Platforms:

  • Linux
  • Windows

Shortcuts usage:

  1. from pycrosskit.shortcuts import Shortcut
  2. # Will Create shortcut
  3. # * at Desktop if desktop is True
  4. # * at Start Menu if start_menu is True
  5. Shortcut(shortcut_name="My Spaghetti Shortcut", exec_path="/usr/bin/order_spaghetti", description="Such Yummy Spaghetti",
  6. icon_path="/home/.../spaghetti.png", desktop=True, start_menu=True)
  7. # Will Delete shortcut
  8. # * at Desktop if desktop is True
  9. # * at Start Menu if start_menu is True
  10. Shortcut.delete(shortcut_name="My Spaghetti Shortcut", desktop=True, start_menu=True)

Environment Variables usage:

Accessing and write to environment variables is automatically handled based on your system Lin/Win SysEnv class is
implemented as a singleton metaclass so don’t be afraid about multiple instances

Support of Mac env variables on request

  1. from pycrosskit.envariables import SysEnv
  2. ### ** Linux **
  3. # Will Set Persistent Value for Variable in Systems bashrc file or custom one that you can pass
  4. SysEnv().set(key="spaghetti", value="boloneys", shell_file="~/.zsh")
  5. # Will Get Persistent Value for Variable in System
  6. # * reg_path works only for windows as register path
  7. # * registry works only for windows, if is False variable is obtained from User Environment Variables
  8. SysEnv().get(key="spaghetti", shell_file="~/.zsh", shell="zsh")
  9. # Will unset variable from your environment or registry
  10. SysEnv().unset(key="spaghetti", shell_file="~/.zsh")
  11. # For not having to override argument shell_file or shell
  12. # This saves specs for every access, default arguments are ignored
  13. SysEnv.save_shell_specs(shell="zsh", shell_file="~/.zsh")
  14. ### ** Windows **
  15. # Will Set Persistent Value for Variable in System
  16. # * subkey works only for windows like file in folder
  17. # * reg_path works only for windows as register path (is ignored if registry=False)
  18. # * registry works only for windows, if is False variable is saved to User Environment Variables
  19. SysEnv().set(key="spaghetti", value="bologna", subkey="italian_food", reg_path="HKEY-...\\CustomPath",
  20. registry=True)
  21. # Will Get Persistent Value for Variable in System
  22. # * reg_path works only for windows as register path
  23. # * registry works only for windows, if is False variable is obtained from User Environment Variables
  24. SysEnv().get(key="spaghetti", reg_path="HKEY-...\\CustomPath", registry=True)
  25. # Will unset variable from your environment or registry
  26. SysEnv().unset(key="spaghetti", registry=True)

Develop

Clone the repository, then:

  1. # install dependencies and package in editable mode
  2. python -m pip install -U -r requirements.txt
  3. # install development dependencies
  4. python -m pip install -U -e .[dev]
  5. # install git hooks
  6. pre-commit install



Did I made your life less painfull ?




Support my coffee addiction ;)


Buy me a Coffee