随笔分类 - python
摘要:os.remove() 方法用于删除指定路径的文件。如果指定的路径是一个目录,将抛出OSError。 code #!/usr/bin/python3 import os, sys # 列出目录 print ("目录为: %s" %os.listdir(os.getcwd())) # 移除 os.re
阅读全文
摘要:os.rename() 方法用于命名文件或目录,从 src 到 dst,如果dst是一个存在的目录, 将抛出OSError。 code #!/usr/bin/python3 import os, sys # 列出目录 print ("目录为: %s"%os.listdir(os.getcwd()))
阅读全文
摘要:code #coding=utf-8 import os import random import time def test(book_type,book_id): #获取指定长度的随机数字 #支持16进制数的最大的长度为9 random_str_length=random.randint(3,6
阅读全文
摘要:code #!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.header import Header from email.mime.multipart import MIMEMulti
阅读全文
摘要:code #!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.header import Header # 第三方 SMTP 服务 mail_host="smtp.mxhichina.co
阅读全文
摘要:code pip3 install lxml
阅读全文
摘要:code #安装pipenv pip3 install pipenv #安装虚拟环境 pipenv install #进入虚拟环境 pipenv shell #查看当前环境依赖 pip3 list #安装包 pipenv install flask #卸载包 pipenv uninstall fla
阅读全文
摘要:code python -V pip -V
阅读全文
摘要:python socket 实现点对点聊天,包括文字,语音,无声视频 client #!/usr/bin/env python # -*- encoding: utf-8 -*- ''' @File : newclient.py @Time : 2020/01/13 14:17:16 @Author
阅读全文
摘要:code class ListNode: def __init__(self,x): self.val=x self.next=None def listToListNode(input): # Generate list from the input numbers = [int(x) for x
阅读全文
摘要:code from flask import Flask, send_from_directory import os cur_dir=os.path.dirname(__file__) app = Flask(__name__) @app.route("/download") def index(
阅读全文
摘要:github地址 https://github.com/.../..../.-/-../ /.--/.../ /-.-./-.-/.../.../..../.-/-../ /.--/.../ /-.-./-.-/.../tree/master 支持的加密方式 https://github.com/.
阅读全文
摘要:code import unittest from HTMLTestRunner import HTMLTestRunner class Test3(unittest.TestCase): @classmethod def setUpClass(self): print("execute setUp
阅读全文
摘要:test.py import unittest class Test1(unittest.TestCase): @classmethod def setUpClass(self): print("execute setUpClass1") @classmethod def tearDownClass
阅读全文
摘要:locust官网: https://www.locust.io/locust 的官方 Github 是:https://github.com/locustio/locust官网帮助文档: https://docs.locust.io/en/latest/installation.html Locus
阅读全文
摘要:code import datetime import time import os start_run_time="2020-12-11 15:16:08" print(start_run_time) #开始时间转为秒级时间戳 ts1=time.mktime(time.strptime(start
阅读全文
摘要:pic1 pic2 code import requests header={ "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", "User-Agent": "Mozilla/5.0 (Macintosh; Int
阅读全文
摘要:code a={ "breaker": [{"body":"{\"request_id\":\"403\",\"code\":0,\"type\":0,\"msg\":\"success\",\"data\":{\"banner\":[{\"id\":245,\"name\":\"苹果手机专区\",
阅读全文
摘要:code import configparser config = configparser.ConfigParser() file = 'config.ini' #添加section config.read(file) config.add_section('login') config.add_
阅读全文