Reader small image

You're reading from  Tkinter GUI Application Development Blueprints

Product typeBook
Published inNov 2015
Reading LevelExpert
PublisherPackt
ISBN-139781785889738
Edition1st Edition
Languages
Right arrow
Author (1)
Bhaskar Chaudhary
Bhaskar Chaudhary
author image
Bhaskar Chaudhary

Bhaskar Chaudhary is a professional programmer and information architect. He has a decade of experience in consulting, contracting, and educating in the field of software development. He has worked with a large set of programming languages on various platforms over the years. He is an electronics hobbyist and a musician in his free time.
Read more about Bhaskar Chaudhary

Right arrow

An overview of the chapter


Our chess game will enforce all the standard rules that are applicable to a game of chess. Some advanced rules and features are left as an exercise for you.

In its final form, our chess program will look like this:

Module requirements for this chapter

We will not use any external third-party modules in this chapter. However, we will use several built-in modules of Python. To check whether all the required libraries are indeed provided by your Python distribution, type the following command in your Python command line:

>>> import tkinter, copy, sys, configparser

This should be executed without an error message. If no errors are thrown back, you are ready to build the chess application. Let's get started!

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Tkinter GUI Application Development Blueprints
Published in: Nov 2015Publisher: PacktISBN-13: 9781785889738

Author (1)

author image
Bhaskar Chaudhary

Bhaskar Chaudhary is a professional programmer and information architect. He has a decade of experience in consulting, contracting, and educating in the field of software development. He has worked with a large set of programming languages on various platforms over the years. He is an electronics hobbyist and a musician in his free time.
Read more about Bhaskar Chaudhary