0w0
[test02] 참치김밥 좋아. 본문
728x90
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import sys
import urllib.request
print(sys.version)
imgurl="https://kcf1.foodfly.co.kr/restaurants/15331/menu/227493.jpg"
save_path="./test.jpg"
scraping_f=urllib.request.urlopen(imgurl).read()
save_f=open(save_path,'wb')
save_f.write(scraping_f)
save_f.close()
print("컨트롤 시프트 에프십이 답\n")
from urllib.parse import urlparse #from urllib.parse import *
print(urlparse(imgurl))
"""주석, 출력
ParseResult(scheme='https', netloc='kcf1.foodfly.co.kr', path='/restaurants/15331/menu/227493.jpg', params='', query='', fragment='')
"""
"""주석
import 모듈
from 모듈 import 변수나 함수
"""
|
cs |
728x90
반응형
'Coding > Python' 카테고리의 다른 글
[requests] with requests.Session() as s: 로그인 세션 생성 (0) | 2019.08.07 |
---|---|
[문자열] control (0) | 2019.08.05 |
[test01] 후라이 좋아. (0) | 2019.06.23 |
[3.5], [3.6] 한글 출력 (0) | 2019.01.22 |
[euler] Problem 2 피보나치 수열;; (0) | 2017.07.17 |
Comments