Kivy is an open-source Python library that allows developers to create multi-touch mobile applications. In this tutorial, we will walk…
In this tutorial, we will be creating a painting app using PyQt in Python. This app will allow users to…
Pythonは多くの用途で使用されるプログラミング言語であり、GUIアプリケーションの開発にも適しています。PythonでGUIアプリケーションを開発するために、Tkinterというライブラリが用意されており、簡単にGUIアプリケーションを作成することができます。このチュートリアルでは、Pythonを使ってTkinterを使ってGUIアプリケーションを作成する方法について詳しく説明します。 Tkinterのインストール まずはじめに、Tkinterをインストールする必要があります。TkinterはPythonの標準ライブラリの一部なので、通常は追加のインストール作業は必要ありません。しかし、使用しているPythonバージョンによってはTkinterがインストールされていない場合もあるので、確認が必要です。 Tkinterを使用するためには、以下のようなコマンドで確認とインストールを行います。 $ python >>> import tkinter >>> tkinter._test() 上記のコマンドを実行して、Tkinterのウィンドウが表示された場合は、Tkinterが正しくインストールされています。表示されない場合は、Tkinterをインストールする必要があります。 GUIアプリケーションの作成 Tkinterを使用してGUIアプリケーションを作成するには、Tkinterモジュールをインポートし、ウィンドウオブジェクトを生成する必要があります。以下は、Tkinterを使って簡単なウィンドウを作成する例です。 import tkinter as tk root =…
PyQT is a set of Python bindings for the Qt application framework and runs on all platforms supported by Qt,…
QSettings is a class in the PyQt and PySide libraries that allows developers to store and retrieve application settings, such…
In this tutorial, we will create a weather app using Python and PySimpleGUI. PySimpleGUI is a simple yet powerful package…