This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os, sys | |
| path = os.path.dirname( sys.argv[0] ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import datetime | |
| now = datetime.datetime.now() | |
| today = now.strftime( "%Y/%m/%d" ) | |
| now = now.strftime( "%H:%M:%S" ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import wx | |
| import pyframe | |
| class Mainframe( pyframe.MyFrame1 ): | |
| def __init__( self, parent ): | |
| pyframe.MyFrame1.__init__( self, parent ) | |
| app = wx.App( False ) | |
| frame = Mainframe( None ) | |
| frame.Show( True ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys, re | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| """---------------------------------------------- | |
| クリップ画像保存器 | |
| グローバル定数 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| """---------------------------------------------- | |
| クリップ画像保存器 | |
| グローバル定数 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os,sys, configparser | |
| path = os.path.dirname( sys.argv[0] ) | |
| # 設定ファイルの場所を決める | |
| INI = path + "/ini.conf" | |
| conf = configparser.SafeConfigParser() | |
| conf.read(INI) | |
| if os.path.exists(INI): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys, re | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| """---------------------------------------------- | |
| クリップ画像保存器 | |
| グローバル定数 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys, re | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| """---------------------------------------------- | |
| クリップ画像保存器 | |
| グローバル定数 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys, re | |
| import subprocess | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| from threading import Event, Thread | |
| from time import sleep | |
| import copy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clipframe # wxFormBuilderのソース | |
| import wx | |
| import os, sys | |
| import datetime | |
| import configparser | |
| from PIL import ImageGrab, Image | |
| """---------------------------------------------- | |
| クリップ画像保存器 | |
| グローバル定数 |
OlderNewer