资源简介
可以汉化的版本,pip install QScintilla-2.10-5.8.0-cp34.cp35.cp36.cp37-none-win_amd64.whl
代码片段和文件信息
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2016 - 2017 Detlev Offenbach
#
# This is the install script for the eric6 debug client. It may be used
# to just install the debug clients for remote debugging.
#
“““
Installation script for the eric6 debug clients.
“““
from __future__ import unicode_literals print_function
try:
import cStringIO as io
import sip
sip.setapi(‘QString‘ 2)
sip.setapi(‘QVariant‘ 2)
sip.setapi(‘QTextStream‘ 2)
except (ImportError):
import io # __IGNORE_WARNING__
import sys
import os
import re
import compileall
import shutil
import fnmatch
import distutils.sysconfig
# Define the globals.
progName = None
currDir = os.getcwd()
modDir = None
pyModDir = None
distDir = None
installPackage = “eric6DebugClients“
doCleanup = True
doCompile = True
sourceDir = “eric“
def exit(rcode=0):
“““
Exit the install script.
@param rcode result code to report back (integer)
“““
global currDir
if sys.platform.startswith(“win“):
# different meaning of input between Py2 and Py3
try:
input(“Press enter to continue...“)
except (EOFError SyntaxError):
pass
os.chdir(currDir)
sys.exit(rcode)
def usage(rcode=2):
“““
Display a usage message and exit.
@param rcode the return code passed back to the calling process.
“““
global progName modDir distDir
print()
print(“Usage:“)
if sys.platform == “darwin“:
print(“ {0} [-chz] [-d dir] [-i dir]“.format(progName))
elif sys.platform.startswith(“win“):
print(“ {0} [-chz] [-d dir]“.format(progName))
else:
print(“ {0} [-chz][-d dir] [-i dir]“.format(progName))
print(“where:“)
print(“ -h --help display this help message“)
print(“ -d dir where eric6 debug client files will be installed“)
print(“ (default: {0})“.format(modDir))
if not sys.platform.startswith(“win“):
print(“ -i dir temporary install prefix“)
print(“ (default: {0})“.format(distDir))
print(“ -c don‘t cleanup old installation first“)
print(“ -z don‘t compile the installed python files“)
exit(rcode)
def initGlobals():
“““
Module function to set the values of globals that need more than a
simple assignment.
“““
global modDir pyModDir
modDir = distutils.sysconfig.get_python_lib(True)
pyModDir = modDir
def copyTree(src dst filters excludeDirs=[] excludePatterns=[]):
“““
Copy files of a directory tree.
@param src name of the source directory
@param dst name of the destination directory
@param filters list of filter pattern determining the files to be copied
@param excludeDirs list of (sub)directories to exclude from copying
@keyparam excludePatterns list of filter pattern determining the files to
be skipped
““
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1835926 2017-04-06 13:44 QScintilla-2.10-5.8.0-cp34.cp35.cp36.cp37-none-win_amd64.whl
目录 0 2017-03-11 12:59 eric6-17.03.1\
文件 32856 2017-03-11 12:59 eric6-17.03.1\LICENSE.GPL3
文件 836 2017-03-11 12:59 eric6-17.03.1\README-i18n.rst
文件 10469 2017-03-11 12:59 eric6-17.03.1\README.rst
文件 1207 2017-03-11 12:59 eric6-17.03.1\THANKS
文件 12478 2017-03-11 12:59 eric6-17.03.1\changelog
目录 0 2017-03-11 12:59 eric6-17.03.1\eric\
目录 0 2014-04-02 18:56 eric6-17.03.1\eric\APIs\
目录 0 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Python\
文件 1644300 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Python\zope-2.10.7.api
文件 1512656 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Python\zope-2.11.2.api
文件 1894900 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Python\zope-3.3.1.api
目录 0 2017-03-03 18:19 eric6-17.03.1\eric\APIs\Python3\
文件 11657 2014-07-13 14:30 eric6-17.03.1\eric\APIs\Python3\PyQt4.bas
文件 14707 2014-07-13 13:59 eric6-17.03.1\eric\APIs\Python3\PyQt5.bas
文件 1138 2014-07-13 12:46 eric6-17.03.1\eric\APIs\Python3\QScintilla2.bas
文件 863231 2017-03-03 18:38 eric6-17.03.1\eric\APIs\Python3\eric6.api
文件 34591 2017-03-03 18:38 eric6-17.03.1\eric\APIs\Python3\eric6.bas
目录 0 2014-04-02 18:56 eric6-17.03.1\eric\APIs\QSS\
文件 891 2014-04-02 18:56 eric6-17.03.1\eric\APIs\QSS\qss.api
目录 0 2015-11-08 17:00 eric6-17.03.1\eric\APIs\Ruby\
文件 124822 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Ruby\Ruby-1.8.7.api
文件 8920 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Ruby\Ruby-1.8.7.bas
文件 166424 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Ruby\Ruby-1.9.1.api
文件 7005 2012-12-06 20:04 eric6-17.03.1\eric\APIs\Ruby\Ruby-1.9.1.bas
目录 0 2012-12-06 20:04 eric6-17.03.1\eric\CSSs\
文件 275 2012-12-06 20:04 eric6-17.03.1\eric\CSSs\blue.css
文件 278 2012-12-06 20:04 eric6-17.03.1\eric\CSSs\default.css
目录 0 2015-10-08 19:09 eric6-17.03.1\eric\CodeTemplates\
文件 525 2015-10-08 19:09 eric6-17.03.1\eric\CodeTemplates\impl_pyqt.py.tmpl
............此处省略4133个文件信息
- 上一篇:社会工程全三本PDF版
- 下一篇:pycharm标准英化包原始
相关资源
- 编译好的OpenCV3.4.2+Qt5.9+Contrib版
- PYQT5与Matplotlib_2019最新参考资料 含程
- Qt5开发及第2版分卷二
- Qt5.9.2+VS2017入门——透彻解析对应代码
- Qt 5开发及第4版陆文周.zip
- armqt5.5-all.fonts.tar.bz2
- Qt5 串口调试助手源代码 漂亮界面版
- qt下支持中文的串口调试助手
- QT5写的一个简单的UDP测试工具
- pyqt5windows生成二维工具源码
- Qt5开发及第2版(含CD光盘1张)
- Qt5 GUI programming书 和源码
- QT5 编程入门的 源代码
- Qt5:多文档功能查看器新增视频文件播
- pyqt5PyQt5快速开发与实战
- Qt5+Halcon联合Demo
- pyqt5 2019学习手册 自编手册 可以当工
- QT5开发及.zip
- [Qt5开发及第2版(含CD光盘1张)][陆文
- 简单实现基于Qt5的音乐播放器
- Qt5.6+VLC简单实现沙师弟专栏
- Computer Vision with Opencv3 and Qt5.pdf
- Qt5.9.3+mingw530_32+OpenCV3.4.1工程模版
- qt串口助手
- VS2012 Qt5 winpcap win64 抓包工具 http协议
- QT5做的打地鼠
- QT5串口助手源码+动态库发布程序+打包
- OpenCV 4.2.0 && Qt5.14.1 编译好的库
- texstudio-2.12.22-win-portable-qt5.zip
- pyqt5思维导图与笔记
评论
共有 条评论