Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python下载网络图片到本地 #40

Open
pengjielee opened this issue Oct 31, 2019 · 0 comments
Open

Python下载网络图片到本地 #40

pengjielee opened this issue Oct 31, 2019 · 0 comments

Comments

@pengjielee
Copy link
Owner

源代码

import os
import urllib.request

path = os.path.join(os.getcwd(),'temp')
if not os.path.exists(path):
  os.mkdir(path)

for number in range(20):
	number = number + 1
	index = ''
	if len(str(number)) < 2:
		index = '00' + str(number)
	else:
		index = '0' + str(number)

	url = 'http://wlog.cn/demo/waterfall/images/'+index+'.jpg'
	file = path + '/waterfall_' +index + '.jpg'
	print(url)
	urllib.request.urlretrieve(url,file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant