码迷,mamicode.com
首页 >  
搜索关键字:file_path    ( 738个结果
【python 】文件下载进度条(装逼利器)
基础版 import requests url = "http://mp.111ttt.cn/mp3free/81135985.mp3" rsp = requests.get(url, stream=True) with open('1.mp3', 'wb') as f: for i in rsp. ...
分类:编程语言   时间:2020-04-23 12:14:39    阅读次数:105
简单的测试登录接口的脚本
脚本很简单,就是初级的只有用户名和密码就可以登录的接口测试 需要先新建一个excel文件用来保存用例,以下是excel详情,就写了具体数据,其余字段没写 具体代码如下: import requests, time import xlrd, xlwt from xlutils.copy import ...
分类:其他好文   时间:2020-04-22 19:42:50    阅读次数:90
jmeter命令执行脚本
修改jmeter.propertries:jmeter.save.saveservice.output_format=csv 运行命令并输出html报告:jmeter -n -t [jmx file] -l [results file] -e -o [Path to output folder] - ...
分类:其他好文   时间:2020-04-21 00:06:16    阅读次数:63
Java IO
结构 创建File File 判断功能 File获取属性 遍历文件夹 判断指定目录下指定后缀文件 ...
分类:编程语言   时间:2020-04-20 21:47:01    阅读次数:72
python 操作 excel
选择文件路径 import tkinter as tk from tkinter import filedialog root = tk.Tk() root.withdraw() file_path = filedialog.askopenfilename() print(file_path) ...
分类:编程语言   时间:2020-04-19 17:40:56    阅读次数:61
django--完成客户端下载文件的三种方式
方法一: 使用HttpResonse 下面方法从url获取file_path, 打开文件,读取文件,然后通过HttpResponse方法输出。 import os from django.http import HttpResponse def file_download(request, file ...
分类:其他好文   时间:2020-04-17 23:40:56    阅读次数:71
ReactNative中如何使用自定义的Iconfont图标
在App包的构成中图片资源是比较占大小的,所以我们可以利用Iconfont来替代原来的png或者jpg单色图标,iconfont的优点是占Size小、支持任意大小不失真、支持任意颜色设置、平台化管理icon等等。 Demo及脚本地址:RNIconfont【欢迎issue/star/follow~】 ...
分类:其他好文   时间:2020-04-14 16:44:33    阅读次数:62
java File文件操作
package com.jack.file; import java.io.File; import java.io.IOException; import java.nio.file.Path; public class main { public static void main(String[ ...
分类:编程语言   时间:2020-04-06 13:22:42    阅读次数:69
CenterOS - CenterOS下安装RabbitMQ
CenterOS下安装RabbitMQ 下载erlang wget https://bintray.com/rabbitmq-erlang/rpm/download_file?file_path=erlang%2F21%2Fel%2F6%2Fx86_64%2Ferlang-21.3.8.14-1.e ...
分类:其他好文   时间:2020-04-02 22:30:29    阅读次数:210
python——(os, shutil)
class Operation_folder(): def __init__(self, file_path = '', folder_path = ''): ''' @param file_path:the file path ''' self.file_path = file_path self ...
分类:编程语言   时间:2020-03-27 12:34:13    阅读次数:87
738条   上一页 1 ... 5 6 7 8 9 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!