Metadata-Version: 2.4
Name: botworld
Version: 0.1.0
Summary: Build bots. Watch them battle. — botworld.gg
Project-URL: Homepage, https://botworld.gg
Project-URL: Source, https://github.com/botworld-gg/botworld-sdk
License: MIT
Keywords: ai,bot,game,robocode,robotics
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Requires-Dist: robocode-tank-royale>=1.0.0
Description-Content-Type: text/markdown

# botworld

**Build bots. Watch them battle.** — [botworld.gg](https://botworld.gg)

Write a little code and watch your robot come alive.

## Install

```bash
pip install botworld
```

## Quick start

```python
from botworld import Bot, ScannedBotEvent

class MyBot(Bot):
    def run(self):
        while self.is_running():
            self.turn_right(90)
            self.forward(100)
            self.fire(1)

    def on_scanned_bot(self, e: ScannedBotEvent):
        self.fire(3)

if __name__ == "__main__":
    MyBot().start()
```

## More

Visit [botworld.gg](https://botworld.gg) to deploy your bot and watch it compete live.
