Metadata-Version: 2.1
Name: baem200
Version: 0.0.11
Summary: Bachmann electronic Python Util Library
Home-page: https://github.com/bachmann-m200/baem200
Author: Sven Neumann
Author-email: sven.neumann@web.de
License: UNKNOWN
Description: # baem200
        
        Bachmann electronic Python Util Library
        
        Connection und utils methods for M200 Serie
        
        ## Content
        
        * **m1com**
        
        Wrapper for the m1com.dll
        
        * **m1config**
        
        Python methods to read and write mconfig.ini files for the M200 controller
        
        * **utils**
        
        Some Python methods to set IP-Address and find M200 controller in the network
        
        ## Gettiing Started
        
        Please install this library on you local computer
        
        ### Installation
        
        ```
        pip install baem200
        ```
        
        ### Example
        
        ```
        from baem200.m1com import PyCom, M1Controller
        from pprint import pprint
        
        dll = PyCom()
        mh = M1Controller(dll, 'your_M1_IP')
        mh.connect()
        pprint(mh.getListofHwModules())
        mh.disconnect()
        ```
        
        ## License
        
        This project is licensed under Bachmann electronic License - see the [LICENCE](LICENCE) file for details
        
        ## Acknowledgments
        
        * 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Description-Content-Type: text/markdown
