python输出文件到txt少行_在Python中卷曲并输出到单个文本文件

How do you read multiple lines containing say 3 URLs from a .txt file, "curl" them to extract the HTML, and output them all to their own individual files in python?

I've tried-

import commands

import os

import json

# RAW DATA

input = open('uri.txt', 'r')

t_1 = open('command', 'w')

counter_1 = 0

for line in input:

counter_1 += 1

if counter_1 < 3:

filename = str(counter_1)

print str(line)

filename= str(count)

command ='curl ' + '"' + str(line).rstrip('\n') + '"'+ '> ./rawData/' + filename

output_1 = commands.getoutput(command)

input.close()

When I run my code in PyCharm, it creates a single blank file in my directory called "filename.txt"

解决方案

You should use requests instead of cURL from within python, as this will make handling the responses much easier. Also, the canonical way to work with files is to use the context manager: with open(filename) as f.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值