Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pychess/pychess
PyChess - a chess client for Linux/Windows
https://github.com/pychess/pychess
chess epd fen fics gtk3 gui icc lichess pgn python3
Last synced: 8 days ago
JSON representation
PyChess - a chess client for Linux/Windows
- Host: GitHub
- URL: https://github.com/pychess/pychess
- Owner: pychess
- License: gpl-3.0
- Created: 2015-02-02T22:50:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T16:00:32.000Z (6 months ago)
- Last Synced: 2024-05-19T00:03:22.972Z (6 months ago)
- Topics: chess, epd, fen, fics, gtk3, gui, icc, lichess, pgn, python3
- Language: Python
- Homepage: https://pychess.github.io/
- Size: 37.9 MB
- Stars: 667
- Watchers: 39
- Forks: 180
- Open Issues: 98
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-python-applications - Repo
- awesome-python-applications - Repo
README
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![Python-CI](https://github.com/pychess/pychess/actions/workflows/run-tests.yml/badge.svg)](https://github.com/pychess/pychess/actions/workflows/run-tests.yml)
[![codecov](https://codecov.io/gh/pychess/pychess/branch/master/graph/badge.svg)](https://codecov.io/gh/pychess/pychess)
[![Documentation Status](https://readthedocs.org/projects/pychess/badge/?version=latest)](http://pychess.readthedocs.org/en/latest/?badge=latest)# PyChess - A Free Chess Client for Linux/Windows
Welcome to PyChess, a free and feature-rich chess client designed for Linux and Windows platforms. Whether you're a beginner looking for a quick game or an advanced player seeking to enhance your skills, PyChess has you covered.## About PyChess
PyChess is a GTK chess client developed primarily for GNOME but compatible with various Linux desktop environments. The entire PyChess codebase, from the user interface to the chess engine, is written in Python and released under the GNU Public License.## Goals of PyChess
Provide an advanced chess client for Linux following the GNOME Human Interface Guidelines.
Offer a user-friendly interface suitable for both beginners and experienced players.
Allow users to play against the computer, find the best moves with Hint Mode, and access a range of chess engines.## Features
PyChess boasts a wide array of features to enhance your chess experience:* Support for UCI and CECP chess engines with 8 different difficulty levels.
* Built-in Python chess engine.
* Online play on FICS (Free Internet Chess Server) with Timeseal support.
* Online play on ICC (Internet Chess Club) with timestamp support.
* Resizable chess board, "pre-drag" support, move and capture sounds, and animations.
* Compatibility with PGN, EPD, and FEN chess file formats.
* Undo, pause, and resume games.
* Various chess variants, including Atomic, Crazyhouse, Fischer Random (Chess 960), and more.
* Built-in opening book.
* Hint Mode arrows indicating the best move based on the chosen analysis engine.
* Compliance with the GNOME Human Interface Guidelines.## Getting Started
### Installation
To install PyChess, follow these steps:* Visit the PyChess Download Page on GitHub.
* Download the latest release suitable for your platform (Linux or Windows).
* Follow the installation instructions provided for your specific operating system.### Running PyChess
Once installed, you can run PyChess as follows:* Linux: Launch PyChess from your application menu or execute pychess in the terminal.
* Windows: Double-click the PyChess executable.### Playing Chess
* To play a game against the computer, select "New Game" and configure the options as desired.
* For online play, you can log in to FICS or ICC and enjoy games with players from around the world.## Community and Support
* Visit the [PyChess Project Homepage](https://pychess.github.io/) for project updates and news.
* Contribute to translations on [Transifex](https://www.transifex.com/projects/p/pychess/).
* Join the [PyChess Mailing List](http://groups.google.com/group/pychess-people) to connect with other PyChess enthusiasts.
* Engage in real-time discussions on the [PyChess Discord Chat](https://discord.gg/aPs8RKr).## Contributions
PyChess is an open-source project, and contributions are welcome! Whether you want to improve the code, translate the software, or help with documentation, your contributions are valued.### How to Contribute
1. **Fork and Clone the Repository**
- Fork the [PyChess repository](https://github.com/pychess/pychess) to your GitHub profile.
- Make sure you are in a directory where you are comfortable cloning the PyChess project to!
- Clone your fork from its remote repository to your local machine using:
```bash
git clone https://github.com/your-username/pychess.git
cd pychess
```2. **Set Up Your Development Environment**
- Ensure you have Python 3.9 or newer installed.
- Install the required dependencies:
```bash
pip install -r requirements.txt
```
- If it suits your development needs, create a virtual environment to isolate your development environment:
```bash
python -m venv venv
source venv/bin/activate
```3. **Running PyChess Locally**
- To launch PyChess, run the following command from the project root directory:
```bash
python pychess
```
- Using the launched instance, you can monitor and reflect upon any changes you make.4. **Understanding the Codebase**
- The PyChess repository is organized into several key directories:
- `pychess/`: Contains the core game logic and main application code.
- `lib/`: Includes various helper libraries and associated utilities that the project depends upon.
- `boards/`, `pieces/`: Assets and resources dealing with the chess board and pieces.
- `docs/`: Project documentation files. Here, you can improve and contribute to other pieces of documentation.
- `testing/`: Tests for various components of PyChess.
- Be sure to understand this organizational structure so that you can effectively contribute to it.5. **Writing and Running Tests**
- It is imperative to test any code you intend on deploying. Be sure to take any edge cases into account!
- PyChess uses `pytest` for testing. To run the test suite, execute:
```bash
pytest
```
- Any of the tests you use should be stored in testing/. This ensures adequate testing coverage of the entire project.6. **Submitting a Pull Request**
- When you are finished modifying the project, you can submit a pull request!
- Create a new branch for your changes:
```bash
git checkout -b feature-name
```
- Add and commit your changes (be sure to use a helpful and informative message in your commit):
```bash
git add .
git commit -m "Added x, y, z"
```
- Push the branch to your fork and then create a pull request to the PyChess repository. Be sure to raise the PR to PyChess' main branch.7. **Review Process**
- The managers of the PyChess project will review your PR and respond accordingly.
- Please be patient and responsive to any feedback the managers respond to you with.### Contribution Ideas
- **Feature Enhancements**: Implement new features or improve existing ones based on user feedback or your own ideas.
- **Bug Fixes**: Look through the [issues list](https://github.com/pychess/pychess/issues) for bugs and try fixing them.
- **Performance Improvements**: Analyze and optimize performance-critical sections of the code.
- **Documentation**: Improve existing documentation or add new guides, tutorials, and API references.
- **Localization**: Help translate PyChess into other languages via [Transifex](https://www.transifex.com/pychess/pychess/).### Community and Support
- **Discussions**: Join our [PyChess Discord Chat](https://discord.gg/pychess) to discuss the project with other contributors and users.
- **Mailing List**: Subscribe to the [PyChess Mailing List](http://pychess.org/mailinglist) to stay updated on project news and announcements.
- **Report Issues**: If you encounter any bugs or have feature requests, please report them via the [GitHub Issues](https://github.com/pychess/pychess/issues) page.Your contributions make PyChess better for everyone. Thank you for helping us build a fantastic chess experience!
## License
PyChess is released under the GNU Public License. For more details, refer to the project's License Information.