Python pywin32模块实现自动打印 2024-05-15 Python 评论 import tempfile import win32api import win32print filename = tempfile.mktemp (".txt") open (filename, "w").write ("This is a test") win32api.Shell...
Python ctypes 模块操作dll动态库 2023-07-06 Python 评论 最近折腾一下身份证读卡器,厂商只提供了Windows 32位的dll动态库文件,需要用python调用dll文件,读取身份证信息。遇到的坑,32位的dll,只能用32位的python调用,64位的python会提示 OSError: [WinError 193] %1 不是有效的 Win32 应用程序。Python ctypes模块简单示例import...
使用MinGW gcc在Windows系统编译Python扩展 2023-04-10 Python 2 评论 在Windows电脑上安装Cnocr报错,提示Polygon3扩展安装失败,需要安装Microsoft C++ Build Tools ,搜索了一番,也没有找到 Windows 64bit Python3.10的whl包,正好电脑上有MinGW gcc的环境,随用MinGW gcc进行编译。使用mingw32编译pip install --global...
Python 使用cx_Oracle链接Oracle数据库 2022-12-13 Python,数据库 1 评论 准备Ubuntu Server 20.04 LTSPython3.9Oracle Database 11gOracle Instant Client instantclient-basic-linux.x64-12.1.0.2.0安装cx_Oraclepip install cx_Oracle #网络不好的情况可以使用国内源 pip install ...
Ubuntu 编译安装Python3.6 2018-07-30 Python 2 评论 Ubuntu 编译安装Python3.6安装环境 Ubuntu 16.04 amd64最好不要卸载系统自带的Python,可能会导致系统错误,因为系统中的好多软件都依赖Python安装依赖#安装编译套件 sudo apt install build-essential checkinstall #安装其他依赖 sudo apt install lib...