mirror of https://github.com/Black-Gold/Learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
220 B
14 lines
220 B
6 years ago
|
#!/usr/bin/python3
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
'''
|
||
|
从https://unsplash.com抓取图片
|
||
|
|
||
|
'''
|
||
|
|
||
|
import requests
|
||
|
if __name__ == '__main__':
|
||
|
domain = 'https://unsplash.com'
|
||
|
r = requests.get(url=domain)
|
||
|
print(t.text)
|
||
|
|