python编写的FTP弱口令扫描器 python FTP暴力破解部分代码#!/usr/local/bin/python#-*- coding: UTF-8 -*-#####################################################################qq:316118740#BLOG:http……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2023浏览 507个赞
Python 扫描IP段 指定端口是否开放 TCP21.py #!/usr/local/bin/python#-*- coding: UTF-8 -*-######################################################……继续阅读 » 水墨上仙 4年前 (2021-03-05) 3087浏览 2641个赞
python 实现 数独算法# -*- coding: utf-8 -*-'''Created on 2012-10-5@author: Administrator'''from collections import defaultdictimport itertoolsa = ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1650浏览 1630个赞
Python 判断文件和文件夹是否存在import osos.path.isfile('test.txt') #如果不存在就返回Falseos.path.exists(directory) #如果目录不存在就返回False……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1358浏览 2620个赞
我需要实现一个Windows下远程连接到SSH服务器执行命令的功能,所以就在网上找资料。我的环境是:Windows7 64位,Python 2.7 32位。按照网上的说法,需要下载pycrypto和paramiko两个模块进行安装。最后下载的版本是pycrypto2.3和paramiko1.7.6。 安装过程也比较简单,先安装pycryp……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2777浏览 1497个赞
python与计算物理:实现数值积分的Simpson方法#coding = utf-8#simpson 法计算积分,数值积分,效果非常理想from math import *def func(x): """ 定义被积分函数 """ return x*si……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2858浏览 361个赞
python采集百度百科代码演示#!/usr/bin/python# -*- coding: utf-8 -*-#encoding=utf-8 #Filename:get_baike.pyimport urllib2,reimport sysdef getHtml(url,time=10): response = urllib2……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1574浏览 2569个赞
局域网内有一百多台电脑,全部都是linux操作系统,所有电脑配置相同,系统完全相同(包括用户名和密码),ip地址是自动分配的。现在有个任务是在这些电脑上执行某些命令,者说进行某些操作,比如安装某些软件,拷贝某些文件,批量关机等。如果一台一台得手工去操作,费时又费力,如果要进行多个操作就更麻烦啦。 或许你会想到网络同传, 网络同传是什么?就……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1995浏览 1565个赞
python的threading和multiprocessing模块转自:http://blog.csdn.net/zhaozhi406/article/details/8137670 前言 这两天为了做一个小项目,研究了一下python的并发编程,所谓并发无非多线程……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2529浏览 1202个赞
Python中*args 和**kwargs的用法当函数的参数不确定时,可以使用*args 和**kwargs,*args 没有key值,**kwargs有key值。def fun_var_args(farg, *args): print "arg:", farg for value in args: ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2131浏览 1003个赞
python事件信号调度#idle_queue.pyimport Queue#Global queue, import it from anywhere, you get the same object instance.idle_loop = Queue.Queue()def idle_add(func, *args, **kwargs):……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2014浏览 1498个赞
python下有个paramiko模块,这个模块可以实现ssh登录linux服务器,下面贴出代码,注意,我在centos5.6下,python2.6.5,paramiko-1.7的版本下测试成功。。。转自:http://world77.blog.51cto.com/414605/618425#!/usr/bin/env pythonimport……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1773浏览 2775个赞
python ftplib模块制作ftp客户端转自:http://blog.csdn.net/xm1331305/article/details/8137638#!/usr/bin/python#-*- coding:utf-8 -*-from ftplib import FTP #加载ftp模块ftp=FTP() ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2915浏览 2811个赞
python实现选择排序算法def ssort(V): #V is the list to be sorted j = 0 #j is the "current" ordered position, start……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2459浏览 1410个赞
python按字符翻转字符串 New in python 2.4:a_string = reversed(a_string) New i……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2308浏览 1802个赞
python清除字符串里的非数字字符import re s = "how19 a*re 254y**ou?" # Using regular expressions print re.sub("\D", "", s) ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1336浏览 1643个赞
python四舍五入函数round的用法范例print round(3.4) # 3 print round(3.5) # 4 print round(3.6) # 4 print round(3.6, 0) # 4 print round(1.95583, 2) # 1.96……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1686浏览 1226个赞
python在windows下创建隐藏窗口的子进程import subprocessIS_WIN32 = 'win32' in str(sys.platform).lower()def subprocess_call(*args, **kwargs): #also works for Popen. It creates ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1696浏览 1911个赞
python创建只包含指定扩展名文件的目录结构列表#!/usr/bin/python#===============================================================================# Creator: ACHAL RASTOGI# Dedicated to my Love: SHAL……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1158浏览 2860个赞
Python删除指定目录下的过期文件import osimport sysimport timeclass DeleteLog: def __init__(self,fileName,days): self.fileName = fileName self.days = days def delet……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1276浏览 2575个赞
python简单的计算过期时间的代码 def time_passed(value): now = datetime.now() past = now - value if past.days: return u'%s天前' % past.days mins = past.seconds……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2676浏览 2348个赞
python操作sqlite3数据库完全代码# Name: pySnipnix.py# Author: pantuts# Email: pantuts@gmail.com# Description: Saving your snippets to sqlite3 database.# Agreement: You can use, modify……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1207浏览 643个赞
C语言调用python代码来源:http://blog.csdn.net/agoago_2009/article/details/8003549//#========================================================//# author:ago ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2345浏览 2510个赞
用python实现希尔排序算法(shell sort)def shellSort(items): inc = len(items) / 2 while inc: for i in xrange(len(items)): j = i temp = items[i] ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2311浏览 2969个赞
python清除字符串里的非字母字符s = "hello world! how are you? 0" # Short version print filter(lambda c: c.isalpha(), s) # Faster version for long ASCII strings: id_ta……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1343浏览 2484个赞
本代码演示了python如何在二进制、十进制、十六进制之间相互转换的代码#!/usr/bin/env python# -*- coding: utf-8 -*-# 2/10/16 base trans. wrote by srcdog on 20th, April, 2009# ld elements in base 2, 10, 16.imp……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1961浏览 2058个赞
Sphinx的Python客户端示例# coding: utf-8 # sphinxapi.py 可见于 coreseek-4.1-win32\api\目录内 import sphinxapi import pprint spc = sphinxapi.SphinxClient() spc.SetServer('12……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1189浏览 1580个赞
python各种删除空格的方法汇总,strip删除两个空格,lstrip删除左边的空格,rstrip删除右边的空格" xyz ".strip() # returns "xyz" " xyz ".lstrip() # returns ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1844浏览 1012个赞
在Python中的高斯 – 赛德尔方法Gauss-Seidel method in Python''' x,numIter,omega = gaussSeidel(iterEqs,x,tol = 1.0e-9) Gauss-Seidel method for solving [A]{x} = {b}.……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1842浏览 2474个赞
Find the global bounds on the eigenvalues of a tridiagomal matrix in Python''' lamMin,lamMax = gerschgorin(d,c). Applies Gerschgorin's theorem to find the……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2083浏览 1401个赞
python中的黄金分割法''' a,b = bracket(f,xStart,h) Finds the brackets (a,b) of a minimum point of the user-supplied scalar function f(x). The search starts dow……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1993浏览 591个赞
Modified midpoint method for solving the initial value problem in Python''' yStop = integrate (F,x,y,xStop,tol=1.0e-6) Modified midpoint method for solving the……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1414浏览 856个赞
Gauss-Legendre integration in Python''' I = gaussQuad2(f,xc,yc,m). Gauss-Legendre integration of f(x,y) over a quadrilateral using integration order m. ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2290浏览 1739个赞
Python LU 分解LU decomposition in Python''' a = LUdecomp(a). LU decomposition: [L][U] = [a]. The returned matrix [a] = [L\U] contains [U] in the upper trian……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1795浏览 546个赞
Householder similarity transformation of matrix in Python''' d,c = householder(a). Householder similarity transformation of matrix [a] to the tridiagonal ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2223浏览 1159个赞
在Python中的线性函数直线插补查找零Find the zero of the linear function straight line interpolation in Python''' root = linInterp(f,x1,x2). Finds the zero of the linear func……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2052浏览 2603个赞
LU decomposition of symetric pentadiagonal matrix in Python''' d,e,f = LUdecomp5(d,e,f). LU decomposition of symetric pentadiagonal matrix [f\e\d\e\f]. On ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1732浏览 565个赞
根据目录下的文件名生成SQL语句#!/usr/bin/python#coding=utf-8import osfrom datetime import datetimepath = "/Users/Demos/Desktop/ss/"id = 0#历遍指定文件夹for x in os.listdir(path):……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2390浏览 1084个赞
python sqlite3的常规使用#Filename: DBcon.pyimport sqlite3import timeconn=sqlite3.connect(r'D:\Exercise\Python\DB\example.db')c=conn.cursor()c.execute("Create tab……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2588浏览 524个赞
Python 调用 C++#include <boost/python.hpp> #include <boost/python/module.hpp> #include <boost/python/def.hpp> #include <boost/python/to_python_converter.hp……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2088浏览 1580个赞
Python生成目录树# encoding: utf-8 import os class dir(object): def __init__(self): self.SPACE = "" self.list = [] def getC……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1303浏览 2772个赞
子网掩码格式转换#!/usr/bin/env python#-*- coding:utf-8 -*-exchange_mask = lambda mask: sum(bin(int(i)).count('1') \ for i in mask.split(……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1910浏览 986个赞
Python 刷点击量import webbrowser as webimport reimport urllibimport timeimport osdef spider(url,urlpattern): urls=getURLs(url,urlpattern) for url in urls: visit……继续阅读 » 水墨上仙 4年前 (2021-03-05) 1466浏览 1171个赞
动态规划算法,计算单词距离#!/usr/bin/env python#coding=utf-8def word_distance(m,n): """compute the least steps number to convert m to n by insert , delete , replace . ……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2636浏览 1621个赞
Python 读取系统环境变量import osfilename = os.environ.get('PYTHONSTARTUP')if filename and os.path.isfile(filename): execfile(filename)……继续阅读 » 水墨上仙 4年前 (2021-03-05) 2048浏览 2175个赞