Metadata-Version: 2.1
Name: pycrosskit
Version: 1.0.3
Summary: pycrosskit Cross Platform Toolkit for Windows and Linux variables and shortcuts
Home-page: https://github.com/jiri-otoupal/py-cross-kit
Author: Jiri Otoupal
Author-email: jiri-otoupal@ips-database.eu
License: Apache 2.0
Description: # 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](https://img.shields.io/pypi/v/pycrosskit.svg)](https://pypi.org/project/py-cross-kit/)
        [![Build Status](https://travis-ci.com/jiri-otoupal/py-cross-kit.svg?branch=master)](https://travis-ci.com/github/jiri-otoupal/py-cross-kit)
        
        ## Installing
        
        Install and update using [pip](https://pip.pypa.io/en/stable/quickstart/):
        
        ```bash
        pip install pycrosskit
        
        or
        
        pip3 install pycrosskit
        ```
        
        #### Supported Platforms:
        
        * Linux
        * Windows
        
        #### Shortcuts usage:
        
        ```python
        # Will Create shortcut 
        # * at Desktop if desktop is True 
        # * at Start Menu if start_menu is True
        
        Shortcut(shortcut_name, exec_path, description,
                 icon_path, desktop, start_menu)
        
        # Will Delete shortcut
        # * at Desktop if desktop is True 
        # * at Start Menu if start_menu is True
        Shortcut.delete(shortcut_name, desktop, start_menu)
        
        ```
        
        #### Environment Variables usage:
        
        ```python
        # Will Set Persistent Value for Variable in System
        # * subkey works only for windows like file in folder
        # * reg_path works only for windows as register path 
        SysEnv.set_var(name, value, subkey, reg_path=default_reg_path)
        
        # Will Get Persistent Value for Variable in System
        # * reg_path works only for windows as register path
        # * delete, deletes key from environment and its subkeys after read
        SysEnv.get_var(name, reg_path=default_reg_path, delete=False)
        
        
        ```
        
Keywords: Python Cross Platform Toolkit
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7.*
Description-Content-Type: text/markdown
