LoginSignup
4
5

More than 5 years have passed since last update.

めざせpythonライブラリマスター (49)psidialogs

Posted at

【ライブラリ説明】

 ダイアログ画面が簡単に表示できる

【プログラム】

psidialogs_message.py
# -*- coding: utf-8 -*-

from psidialogs import message

message('Hello!')

message.png

psidialogs_file.py
# -*- coding: utf-8 -*-

from psidialogs import ask_file

ask_file()

file.png

psidialogs_string.py
# -*- coding: utf-8 -*-

from psidialogs import ask_string

ask_string(message='Enter something.')

string.png

【参考サイト】

 pypi
 github
 API

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5