随笔分类 -  Scripts

There are some Python Scripts
统计nginx单个IP访问日志并获取IP来源
摘要:#!/usr/bin/env python #coding=utf-8 import requests from urllib2 import urlopen # import lxml.html from bs4 import BeautifulSoup import subprocess import sys,os reload(sys) sys.setdefaultencoding('u... 阅读全文
posted @ 2017-11-23 16:44 杜先生的博客 阅读(2392) 评论(0) 推荐(0) 编辑
匹配文本中所有的中文并替换
摘要:#!/usr/bin/env python # coding : utf8 import re import os,sys #import fileinput # read text f = open(sys.argv[1],'rb') text = f.readlines() f.close() c = [] for i in text: # match Chinese Char = ... 阅读全文
posted @ 2017-11-21 14:02 杜先生的博客 阅读(469) 评论(0) 推荐(0) 编辑