Metadata-Version: 2.1
Name: neuromeka-clients
Version: 0.1.0
Summary: Neuromeka client protocols for Indy, Moby, Ecat, and Motor
Home-page: https://github.com/neuromeka-robotics/neuromeka-clients
Author: Your Name
Author-email: youngjin.heo@neuromeka.com
License: UNKNOWN
Description: # Neuromeka Clients
        
        This package provides client protocols for users to interact with Neuromeka's products, including Indy, Moby, Ecat, and Motor.
        
        ## Installation
        
        You can install the package from PyPI:
        
        ```bash
        pip install neuromeka-clients
        ```
        
        ## Usage
        The package contatins the following client classes:
        
        * IndyClient in indy.py
        * MobyClient in moby.py
        * EcatClient in ecat.py
        * MotorClient in motor.py
        
        To use a client class, simply import it and create an instance:
        
        ```python
        from neuromeka.ecat import EcatClient
        
        ecat_client = EcatClient("192.168.214.20")
        ```
        
        Replace EcatClient with the desired client class and the IP address with the appropriate address for your device.
        
        ## Dependencies
        This package requires the following dependencies:
        
        * grpcio
        * grpcio-tools
        * protobuf
        * six
        
        These dependencies will be automatically installed when you install the package using pip.
        
        ## Examples
        Please refer to the 'example.py' file in the package for usage examples.
        
        ## Support
        If you encounter any issues or need help, please open an issue on the project's repository.
        
        ## License
        This package is released under the [LICENSE_NAME]. For more information, please refer to the LICENSE file.
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
