Metadata-Version: 2.1
Name: py-env
Version: 0.0.1
Summary: Provides persistent environment for Python 3 scripts
Home-page: https://github.com/hanayashiki/pyenv
Author: Chenyu Wang
Author-email: wangchenyu2017@gmail.com
License: UNKNOWN
Description: # pyenv
        Provides persistent environment for Python 3 scripts
        
        # Introduction
        
        You have a host python environment `py_env.host` for your code.
        You execute in it and the side-effects of your code will persist on that environtment.      
        This is helpful when you are loading big files, which you definitely would not like to wait for it each time you start your script.
        
        + How to start the host environment
        ```
        python3.6 -m py_env.host
        ```
        + How to send your code to the host environment
        ```
        python3.6 -m py_env.client -c "py_env.set('shit', 'happens')"
        
        python3.6 -m py_env.client -c "print(py_env.keys())"
        dict_keys(['shit'])
        
        python3.6 -m py_env.client -c "py_env.get('shit')"
        happens
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux 
Description-Content-Type: text/markdown
