Python教程
Python是一种面向对象的解释型...
-
Python3.4实现的12306最新验证码识别 python"> import ssl import json from PIL import Image import urllib import re import urllib.request as urllib2 if hasattr(ssl, '_cr... 继续阅读Python3.4实现的12306最新验证码识别
:2018-05-17
-
python C#设置热键隐藏指定窗口的代码 C#设置热键隐藏指定窗口的代码 python">using System; using System.Text; using System.Collections; using System.Runtime.InteropServices; namespace WindowHider { /// <summary> ... 继续阅读python C#设置热键隐藏指定窗口的代码
:2018-05-17
-
python多父类继承示例 python">class A: def foo(self): print 'foo called in A' class B: def foo(self): print 'foo called in B' def bar(self): print 'bar called in B' ... 继续阅读python多父类继承示例
:2018-05-17
-
python scrapy 网络采集使用代理的方法 1.在Scrapy工程下新建“middlewares.py”“`python Importing base64 library because we’ll need it ONLY in case if the proxy we are going to use requires authentication import base64 St... 继续阅读python scrapy 网络采集使用代理的方法
:2018-05-17
-
python通过urllib2提交http post请求 python通过urllib2提交http post请求 python">#!/usr/bin/python #coding=utf-8 import urllib import urllib2 def post(url, data): req = urllib2.Request(url) dat... 继续阅读python通过urllib2提交http post请求
:2018-05-17
-
python AES算法模块进行加密解密的代码片段 在此我们将使用到PyCrypto模块,可以访问http://www.pycrypto.org/来获得此模块。该模块包括多种加密算法,如AES、MD5、SHA等,我们可以访问https://www.dlitz.net/software/pycrypto/apidoc/来查看相关API. PyCrypto模块的功能是非常强大的,此处仅起抛砖引玉的... 继续阅读python AES算法模块进行加密解密的代码片段
:2018-05-17
-
python在windows锁屏的代码 python在windows锁屏的代码“`python C:\Users\wangmingjie>python Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on win 32 Type “help”, “copyright”, “credits” ... 继续阅读python在windows锁屏的代码
:2018-05-17
-
python 获取PM2.5 python">__author__ = 'Qing' # -*- coding: utf8 -*- import sys import urllib2 import json import smtplib from email.mime.text import MIMEText from email.header import Header reload(... 继续阅读python 获取PM2.5
:2018-05-17
-
python汉字随机组合.py python">""" python汉字随机组合.py 依山居 7:07 2015/11/11 相关资料 Python random模块 http://my.oschina.net/cuffica/blog/33336 题目来源: http://www.bathome.net/viewthread.php?tid=37773 """ import tim... 继续阅读python汉字随机组合.py
:2018-05-17
-
python端口扫描程序 这是一个简单的网络程序,可以用来扫描指定ip的常用端口 python">from socket import * tgtHost=raw_input("What is the web address?: ") tgtPorts=raw_input("What are the ports seperated by commas? or would you lik... 继续阅读python端口扫描程序
:2018-05-17