Metadata-Version: 2.1
Name: gymx
Version: 0.0.0
Summary: Run OpenAI Gym environments on an external process or remote machine using gRPC.
Home-page: https://github.com/marella/gymx
Author: Ravindra Marella
Author-email: mv.ravindra007@gmail.com
License: MIT
Description: Run OpenAI Gym environments on an external process or remote machine using gRPC.
        
        ## Installation
        
        [Install Gym] and run:
        
        ```sh
        pip install gymx
        ```
        
        It is recommended to use a [virtual environment].
        
        ## Usage
        
        ### Server
        
        To start the server run:
        
        ```sh
        python -m gymx
        ```
        
        To use a different port run:
        
        ```sh
        python -m gymx --port=54321
        ```
        
        ### Client
        
        Inside your application use:
        
        ```py
        from gymx import Env
        
        env = Env('CartPole-v0')
        ```
        
        To specify the server address use:
        
        ```py
        env = Env('CartPole-v0', address='localhost:54321')
        ```
        
        ## License
        
        [MIT][license]
        
        [license]: /LICENSE
        [virtual environment]: https://docs.python.org/3/library/venv.html
        [install gym]: https://github.com/openai/gym#installation
        
Keywords: gymx gym grpc reinforcement-learning
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Provides-Extra: dev
