https://github.com/msadeqsirjani/tiredknight
Minimal chess AI written in python
https://github.com/msadeqsirjani/tiredknight
artificial-intelligence chess-engine chess-game game-theory
Last synced: about 1 month ago
JSON representation
Minimal chess AI written in python
- Host: GitHub
- URL: https://github.com/msadeqsirjani/tiredknight
- Owner: msadeqsirjani
- Created: 2023-10-15T18:56:48.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-16T09:08:25.000Z (over 1 year ago)
- Last Synced: 2025-02-09T11:12:57.289Z (3 months ago)
- Topics: artificial-intelligence, chess-engine, chess-game, game-theory
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README

# Tired Knight


**Tired Knight** is a minimal chess AI written in Python.
## Table of Contents
- [Installation](#installation)
- [How to Run](#how-to-run)
- [License](#license)
- [Contributing](#contributing)## Installation
To get started with **Tired Knight**, follow these simple steps:
1. Clone this repository to your local machine:
```bash
git clone
```2. Change into the project directory:
```bash
cd tiredKnight
```3. Create a virtual environment:
```bash
python -m venv tiredKnight
```4. Install project dependencies using `pip`:
```bash
pip install -r requirements.txt
```## How to Run
Now that you've installed the project, you can run **Tired Knight** by following these steps:
1. Activate your virtual environment:
```bash
source tiredKnight/bin/activate
```2. Start the chess AI:
```bash
python tired_knight.py
```Enjoy playing against the AI!
## License
This project is open-source and is licensed under the [MIT License](LICENSE). For more details, please refer to the license file.
## Contributing
We welcome contributions from the community to improve **Tired Knight**. If you'd like to contribute, please follow these guidelines:
1. Fork this repository to your GitHub account.
2. Create a new branch for your feature or bug fix.
3. Make your changes and ensure that the project still works as expected.
4. Submit a pull request back to the original repository, explaining the changes you made and why they are necessary.Your contributions are greatly appreciated, and they help make this project even better!
Happy coding! 🚀