随笔分类 -  python

上一页 1 2 3 4 5 6 7 8 9 10 ··· 48 下一页
摘要:os.remove() 方法用于删除指定路径的文件。如果指定的路径是一个目录,将抛出OSError。 code #!/usr/bin/python3 import os, sys # 列出目录 print ("目录为: %s" %os.listdir(os.getcwd())) # 移除 os.re 阅读全文
posted @ 2020-12-23 22:15 anobscureretreat 阅读(235) 评论(0) 推荐(0) 编辑
摘要:os.rename() 方法用于命名文件或目录,从 src 到 dst,如果dst是一个存在的目录, 将抛出OSError。 code #!/usr/bin/python3 import os, sys # 列出目录 print ("目录为: %s"%os.listdir(os.getcwd())) 阅读全文
posted @ 2020-12-23 22:13 anobscureretreat 阅读(207) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2020-12-23 22:01 anobscureretreat 阅读(129) 评论(0) 推荐(0) 编辑
摘要:code #!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.header import Header from email.mime.multipart import MIMEMulti 阅读全文
posted @ 2020-12-23 21:47 anobscureretreat 阅读(474) 评论(0) 推荐(0) 编辑
摘要:code #!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.header import Header # 第三方 SMTP 服务 mail_host="smtp.mxhichina.co 阅读全文
posted @ 2020-12-23 21:41 anobscureretreat 阅读(164) 评论(0) 推荐(0) 编辑
摘要:code pip3 install lxml 阅读全文
posted @ 2020-12-23 21:14 anobscureretreat 阅读(119) 评论(0) 推荐(0) 编辑
摘要:code #安装pipenv pip3 install pipenv #安装虚拟环境 pipenv install #进入虚拟环境 pipenv shell #查看当前环境依赖 pip3 list #安装包 pipenv install flask #卸载包 pipenv uninstall fla 阅读全文
posted @ 2020-12-23 21:12 anobscureretreat 阅读(212) 评论(0) 推荐(0) 编辑
摘要:code python -V pip -V 阅读全文
posted @ 2020-12-23 21:11 anobscureretreat 阅读(257) 评论(0) 推荐(0) 编辑
摘要:python socket 实现点对点聊天,包括文字,语音,无声视频 client #!/usr/bin/env python # -*- encoding: utf-8 -*- ''' @File : newclient.py @Time : 2020/01/13 14:17:16 @Author 阅读全文
posted @ 2020-12-23 21:09 anobscureretreat 阅读(99) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2020-12-23 21:07 anobscureretreat 阅读(439) 评论(0) 推荐(0) 编辑
摘要:code from flask import Flask, send_from_directory import os cur_dir=os.path.dirname(__file__) app = Flask(__name__) @app.route("/download") def index( 阅读全文
posted @ 2020-12-23 15:28 anobscureretreat 阅读(645) 评论(0) 推荐(1) 编辑
摘要:github地址 https://github.com/.../..../.-/-../ /.--/.../ /-.-./-.-/.../.../..../.-/-../ /.--/.../ /-.-./-.-/.../tree/master 支持的加密方式 https://github.com/. 阅读全文
posted @ 2020-12-23 10:23 anobscureretreat 阅读(941) 评论(0) 推荐(0) 编辑
摘要:code import unittest from HTMLTestRunner import HTMLTestRunner class Test3(unittest.TestCase): @classmethod def setUpClass(self): print("execute setUp 阅读全文
posted @ 2020-12-18 18:45 anobscureretreat 阅读(147) 评论(0) 推荐(0) 编辑
摘要:test.py import unittest class Test1(unittest.TestCase): @classmethod def setUpClass(self): print("execute setUpClass1") @classmethod def tearDownClass 阅读全文
posted @ 2020-12-18 18:41 anobscureretreat 阅读(101) 评论(0) 推荐(0) 编辑
摘要:locust官网: https://www.locust.io/locust 的官方 Github 是:https://github.com/locustio/locust官网帮助文档: https://docs.locust.io/en/latest/installation.html Locus 阅读全文
posted @ 2020-12-18 11:48 anobscureretreat 阅读(612) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2020-12-11 16:00 anobscureretreat 阅读(1338) 评论(0) 推荐(0) 编辑
摘要:pic1 pic2 code import requests header={ "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", "User-Agent": "Mozilla/5.0 (Macintosh; Int 阅读全文
posted @ 2020-12-03 15:03 anobscureretreat 阅读(1329) 评论(0) 推荐(0) 编辑
摘要:code a={ "breaker": [{"body":"{\"request_id\":\"403\",\"code\":0,\"type\":0,\"msg\":\"success\",\"data\":{\"banner\":[{\"id\":245,\"name\":\"苹果手机专区\", 阅读全文
posted @ 2020-12-03 14:03 anobscureretreat 阅读(797) 评论(0) 推荐(0) 编辑
摘要:code import configparser config = configparser.ConfigParser() file = 'config.ini' #添加section config.read(file) config.add_section('login') config.add_ 阅读全文
posted @ 2020-12-03 14:02 anobscureretreat 阅读(176) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 48 下一页