码迷,mamicode.com
首页 >  
搜索关键字:ctypes    ( 144个结果
Python3 ctypes简单使用
>>> from ctypes import * >>> c_int() c_long(0) >>> c_char_p(b'hello') c_char_p(b'hello')>>> c_ushort(-5) c_ushort(65531) >>> seitz = c_char_p(b'loves the python') >>> print(seitz) c_char_p(b'loves...
分类:编程语言   时间:2015-08-14 11:51:20    阅读次数:223
python的win32操作
## _*_ coding:UTF-8 _*___author__ = 'shanl'import win32apiimport win32conimport win32guifrom ctypes import *import timeVK_CODE = { 'backspace':0x08, '...
分类:编程语言   时间:2015-08-08 06:33:46    阅读次数:1622
debuggee python
my_debugger_defines.py 1 #encoding:utf-8 2 3 from ctypes import * 4 from sys import version as py_ver 5 6 # In python 2.7.6, LPBYTE is not defined i.....
分类:编程语言   时间:2015-07-15 14:46:30    阅读次数:138
Rust中文翻译11
3.3.4 Python 创建一个embed.py文件,然后编辑如下: from ctypes import cdll lib = cdll.LoadLibrary("target/release/embed.dll") lib.process() print("done!") 更简单了!我们使用ctypes模块中的cdll.调用了LoadLibra...
分类:其他好文   时间:2015-07-03 15:57:16    阅读次数:140
Python模块学习笔记— —WinPython
目前,Python的IDE发行版有很多,大牛们推荐的也不相同,而我用的是winpython,它轻巧方便,无需安装,解压即可,主要是它还包含了常用的科学计算工具包numpy,scipy,sklearn,matplotlib,还有可以调用C动态库的扩展包ctypes,更好的是它有32位和64位,我选择的是64位版本。截图看一下Lib\site-packages文件夹下模块 当然...
分类:编程语言   时间:2015-06-13 15:42:55    阅读次数:642
平日搜索链接
Python:使用ctypes库调用外部DLL:http://www.cnblogs.com/wuchang/archive/2010/04/04/1704456.html
分类:其他好文   时间:2015-06-10 19:36:20    阅读次数:117
python 与 c/c++混合编程
Python与C/C++ 模块相互调用 Python调用C动态链接库 Python调用C库很简单,不经过任何封装打包成so,再使用python的ctypes调用即可。 #include  extern “C” {        void display() {                printf(“This is Display Function\n”);      ...
分类:编程语言   时间:2015-06-05 10:19:03    阅读次数:184
Python3.4 截屏并将图片发至邮箱
from PIL import ImageGrab import ctypes import time from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.image import MIMEImage import smtplib import os ...
分类:编程语言   时间:2015-03-28 08:53:58    阅读次数:393
[python]获取计算机名
方法一:import ctypesimport os#获取计算机名def getname(): pcName = ctypes.c_char_p(''.encode('utf-8')) pcSize = 16 pcName = ctypes.cast(pcName, ctypes....
分类:编程语言   时间:2015-03-05 18:47:34    阅读次数:147
Python3.4 控制台窗口隐藏
import ctypes whnd = ctypes.windll.kernel32.GetConsoleWindow() if whnd != 0: ctypes.windll.user32.ShowWindow(whnd, 0) ctypes.windll.kernel32.CloseHandle(whnd)引用自http://magicpanda.net/2010/10/p...
分类:编程语言   时间:2015-02-23 09:43:05    阅读次数:527
144条   上一页 1 ... 10 11 12 13 14 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!