-
大小: 3.36MB文件类型: .gz金币: 1下载: 0 次发布日期: 2023-09-15
- 语言: Python
- 标签: python pyinstaller
资源简介
安装方法:1.减压文件到目录下。2.cmd到减压的目录下。3、执行python setup.py install
代码片段和文件信息
#!/usr/bin/python
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2019 PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt distributed with this software.
#-----------------------------------------------------------------------------
#
# Tkinter interface to PyInstaller.
#
import sys
import subprocess
# In Python 3 module name is ‘tkinter‘
try:
from tkinter import *
from tkinter.ttk import *
import tkinter.filedialog as filedialog
except ImportError:
from Tkinter import *
from ttk import *
import tkFileDialog as filedialog
class PyInstallerGUI:
def make_checkbutton(self frame text):
var = IntVar()
widget = Checkbutton(frame text=text variable=var)
widget.grid(sticky=“NW“)
return var
def __init__(self):
root = Tk()
root.title(“PyInstaller GUI“)
fr1 = frame(root width=300 height=100)
fr1.pack(side=“top“)
fr2 = frame(root width=300 height=300
borderwidth=2 relief=“ridge“)
fr2.pack(ipadx=10 ipady=10)
fr4 = frame(root width=300 height=100)
fr4.pack(side=“bottom“ pady=10)
getFileButton = Button(fr1 text=“script to bundle ...“)
getFileButton.bind(“
- 上一篇:Python ip 代理池爬取工具
- 下一篇:python从入门到精通学习资料
相关资源
- python从入门到精通学习资料
- Python ip 代理池爬取工具
- 廖雪峰Python教程[完整版]
- Python 3.5.2 入门指南 高清
- python修改域帐户密码
- Python_Testing_with_pytest
- 笨办法学Python第3版
- python cookbook 第三版中文版
- Numerical Methods In Engineering With Python
- Python参考手册 第4版 修订版
- python课程设计
- Think.Python.3rd.Edition.pdf
- Python语言开发RESTful API指南
- tensorflow-1.9.0-cp37-cp37m-win_amd64.whl
- [超清版]用Python进行自然语言处理.中
- python版计算机程序与构造
- Python-GUI-programming-with-Tkinter
- python tools for visual studio 2010
- python3-tkinter官方高清文档
- python_pandas
- Python语言程序设计基础(第2版)全答
- Python3语法速查本
- python3 ocr 识别图片文字CSDN验证码90%通
- python爬取前程无忧存mogondb+数据可视化
- python 12306购票助手.zip
- python for informatics 中文和英文
- Python-NLP之旅包含NLP文章代码集锦
- Python Django 项目个人网站完整代码
- 像计算机科学家一样思考Python第2版异
- Python第三方库Twisted最新版本64位系统
评论
共有 条评论