python
文章平均质量分 50
sky藏锋
这个作者很懒,什么都没留下…
展开
-
locust 测试用例
from locust import TaskSet, task, User,HttpUser import subprocess import scmlogin as lg # from locust import events 事件 # # @events.test_start.add_listener # def on_test_start(**kw): # print("test is starting") # # @events.test_stop.add_listener # def.原创 2021-02-22 16:47:07 · 311 阅读 · 0 评论 -
python 有道翻译 爬虫破解2020
# -*- coding:UTF-8 -*- import hashlib import random import time import requests as rq header = {"Accept": "application/json, text/javascript, */*; q=0.01", "Accept-Encoding": "gzip, deflate", "Accept-Language": "zh-CN,zh;q=0.9", .原创 2020-06-19 14:39:44 · 396 阅读 · 0 评论 -
python tomcat 监管脚本通过钉钉机器人发送tomcat异常信息
import socket import os,time import configparser import requests as rq config=configparser.RawConfigParser() def local(): strtime=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()) return strtime class tomcat(): def __init__(self): .原创 2020-06-10 10:18:03 · 422 阅读 · 0 评论 -
简单的http服务器
import socket import re compile=re.compile('GET (.+) HTTP/1.1\\r') def getinfo(): text='' with open(r'html路径','r') as f: a=f.readlines() for i in a: text=text+str(...原创 2020-01-15 09:35:14 · 175 阅读 · 0 评论 -
python24点
import random import itertools import time strtime = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()) puke_list=['♥','♠','♦','♣'] sz_list=['A','2','3','4','5','6','7','8','9','10','J','Q','K'] suf...原创 2019-11-12 13:10:43 · 266 阅读 · 0 评论 -
python tkinter 网易云音乐播放下载器
python源码 链接:https://pan.baidu.com/s/119reguJPNZ4pmtBdfq_Crg 提取码:fthh原创 2019-08-29 13:32:14 · 653 阅读 · 5 评论 -
手机远程控制电脑
import itchat import os usageMsg = u"使用方法:\n1.运行CMD命令:xxx (xxx为命令)\n" \ u"-例如关机命令:\nshutdown -s -t 0 \n" \ u"2.启用命令助手(默认开启):ast\n" \ u"3.关闭命令助手:astc" flag = 1 #消息助手开...原创 2019-07-25 14:29:29 · 429 阅读 · 0 评论 -
python 配合正则表达式爬取网站日历信息
import time import requests as rq import re def local(): strtime=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()) return strtime html=rq.get("https://wannianrili.51240.com") # print(html...原创 2019-06-11 16:58:25 · 900 阅读 · 0 评论 -
Python 万年历
编程思路: 1.请用户输入查询的年份以及月份,查询出对应的万年历,万年历格式如图所示 提示1:计算1900年至所输入的月份之前一共有多少天,根据公式算出输出的月份1号是星期几 eg:输入2018年12月,计算出1900年1月1日到2018年11月30日,一共有多少天 一共有多少天,共分成2部分,第一部门1900年到2017年底一共多少天,加上2018年前11月的天数 第一......原创 2019-03-21 16:43:22 · 11136 阅读 · 2 评论 -
Python 写 杨辉三角形
row=int(input("请输入行数:")) while row>10 or row<=0: row=int(input("请输入行数:")) b=[[0 for i in range(j+1)] for j in range(row)] for i in range(row): for j in range(i+1): if i==j or j...原创 2019-03-22 14:57:42 · 2311 阅读 · 0 评论 -
初学pygame,模拟桌面水泡
import pygame as pg import sys import random a=2 b=3 c=6 d=8 e=5 f=4 g=7 h=3 pg.init() size=width,height=1500,900 bg=(255,255,255) screen=pg.display.set_mode(size) pg.display.set_caption("水泡") image=...原创 2019-06-14 17:14:49 · 388 阅读 · 0 评论 -
python 有道翻译 爬虫破解
# -*- coding:UTF-8 -*- import hashlib import random import time import requests as rq header={"Accept": "application/json, text/javascript, */*; q=0.01", "Accept-Encoding": "gzip, deflate", "Accept-L...原创 2019-05-16 14:53:44 · 369 阅读 · 0 评论 -
用Python 2.7版本 写简单的万年历
编程思路: 1.请用户输入查询的年份以及月份,查询出对应的万年历,万年历格式如图所示 提示1:计算1900年至所输入的月份之前一共有多少天,根据公式算出输出的月份1号是星期几 eg:输入2018年12月,计算出1900年1月1日到2018年11月30日,一共有多少天 一共有多少天,共分成2部分,第一部门1900年到2017年底一共多少天,加上2018年前11月的天数 第一...原创 2019-03-20 15:55:07 · 1705 阅读 · 0 评论