Sometimes you might want to put your site behind closed doors If you’ve got a publication that you don’t want the world to see yet because it’s not ready to launch, you can hide your Ghost site behind a simple shared pass-phrase.
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 =…
“Django Unchained” is a 2012 American Western film written and directed by Quentin Tarantino. The film follows the story of…
Kivy es una biblioteca de código abierto en Python que se utiliza para la creación de aplicaciones con interfaces de…
O FlaskConf 2019 foi um evento incrível para os desenvolvedores da web que queriam aprender mais sobre a tecnologia Flask….