Metadata-Version: 2.1
Name: kaggle-environments
Version: 0.1.2
Summary: Kaggle Environments
Home-page: https://github.com/Kaggle/kaggle-environments
Author: Kaggle
Author-email: support@kaggle.com
License: Apache 2.0
Description: # [<img src="https://kaggle.com/static/images/site-logo.png" height="50" style="margin-bottom:-15px" />](https://kaggle.com) Environments
        
        > **ALPHA RELEASE** - Breaking changes may be introduced!
        
        ```bash
        pip install kaggle-environments
        ```
        
        ## TLDR;
        
        ```python
        from kaggle_environments import make
        
        # Setup a tictactoe environment.
        env = make("tictactoe")
        
        # Basic agent which marks the first available cell.
        def my_agent(obs):
          return [c for c in range(len(obs.board)) if obs.board[c] == 0][0]
        
        # Run the basic agent against a default agent which chooses a "random" move.
        env.run([my_agent, "random"])
        
        # Render an html ipython replay of the tictactoe game.
        env.render(mode="ipython")
        ```
        
Keywords: Kaggle
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
