使用Python打开url文件的前N个字符

时间:2016-08-04 15:35:43

标签: python web-scraping urllib

我试图使用Python 3在线搜索大型.txt文件中的数据。

我之后的数据可靠地显示在文本的前2000个字符中,并且带宽/下载时间使得整个文件的下载非常昂贵。

有没有办法只从远程文件下载前N个字符或行?

如下所示:

import urllib.request
with open(urllib.request.urlopen(myurl)) as myfile:
        head= [next(myfile) for x in range(10)]
print(head)

0 个答案:

没有答案