python3 批量处理域名解析】的更多相关文章

域名批量解析,快速确认域名的存活性及IP地址,脚本中包含了具体的用法和简要说明 #!/usr/bin/env python # -*- coding:utf-8 -*- # python3.6 from socket import gethostbyname import argparse def domain_ip(openfile,out1,out2,out3): with open(openfile, 'r') as f: for line in f.readlines(): try: h…
python3批量删除豆瓣分组下的好友 """ python3批量删除豆瓣分组下的好友 2016年6月7日 03:43:42 codegay 我两年前一时冲动在豆瓣关注了很多豆瓣的员工,好多,有四百个. 我现在一时冲动想取消关注...,写这么一个脚本可以用来加快删除的速度. cookies还是直接从chrome读取出来用, 参考我之前刚写的代码 python3从chrome浏览器读取cookie, """ import os import sql…
Python3 批量更改文件后缀名 示例: # coding:utf8 import os import sys def Rename(): #Path = "F:\\test\\" # windows下的文件目录 #Path = input("请输入你需要操作的目录(格式如'F:\\test'):") Path = r"E:\hs08-oracle\py\\"; filelist = os.listdir(Path) for files in…
Python3 批量替换文本内容 示例: # coding:utf8 import os; def reset(): i = 0 path = r"H:\asDemo\workdemo\awesome-android-ui-master\pages\\"; filelist = os.listdir(path) # 该文件夹下所有的文件(包括文件夹) for files in filelist: # 遍历所有文件 i = i + 1 Olddir = os.path.join(path…
所谓爬取其实就是获取链接的内容保存到本地.所以爬之前需要先知道要爬的链接是什么. 要爬取的页面是这个:http://findicons.com/pack/2787/beautiful_flat_icons 里面有很多不错的图标,目标就是把这些文件图片爬下来,保存成本地图片. 用python3怎么做呢? 第一步:获取要爬取的母网页的内容 import urllib.request import re url = "http://findicons.com/pack/2787/beautiful_f…
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import paramiko import os, stat import sys import operator as op from string import Template def ssh_connect( _host, _username, _password ): _ssh_fd = paramiko.SSHClient() _ssh_fd.set_missing_host_key_po…
#!/usr/local/bin/python3 #coding=utf-8 import re,sys,os,random,time, base64 import urllib.parse, urllib.request import socket timeout = 10 socket.setdefaulttimeout(timeout) proxy_list = [ {", 'type':"http"}, {", 'type':"http"…
功能 批量修改当前文件夹下的jpg图片到设置的尺寸 将修改后的图片移动到 new_img 这个文件夹下 导入库 from PIL import Image # 处理图片模块 import os import shutil # 移动文件模块 如果没有请提前安装相应的库. 定义一个函数用来处理图片尺寸 def smaller_img(x, y, path): # x,y用来传入尺寸,path用来传入路径 old_img = Image.open(path) img_deal = old_img.re…
try: from PIL import Image, ImageDraw, ImageFont, ImageEnhance except ImportError: import Image, ImageDraw, ImageFont, ImageEnhance import os myPath = './srcimg/' outPath = './destimg/' def processImage(filesource,destsource,name,imgtype): ''' :param…
需求: 从网上下载的N张.png图片保存到image目录中,将下载下来的图片全部重命名test1.png/test2.png... 实现代码: 目录结构: config-->setting.py #!/usr/bin/env python # -*- coding: utf-8 -*- __author__ = 'tian' __data__ = '2019/7/19 12:28' import sys import os BASE_DIR = os.path.dirname(os.path.d…