Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 유니티
- Linux
- swift
- GIT
- sqlite
- 함수
- PyQt
- 날짜
- flutter
- IOS
- ASP
- python
- PyQt5
- mssql
- javascript
- ubuntu
- 라즈베리파이
- urllib
- 리눅스
- MS-SQL
- MySQL
- Unity
- tensorflow
- port
- 다이어트
- pandas
- 맛집
- Excel
- node.js
- PER
Archives
목록2019/05/09 (1)
아미(아름다운미소)
파이썬 3에서 urllib로 url 열기
파이썬 3에서 urllib로 url 열기(opening a url with urllib in python 3) Python 3에서는 다음과 같이 구현할 수 있습니다. #-*- coding: utf-8 -*- ''' Created on 2019. 05. 09. @author: bhm ''' import urllib.request try: u = urllib.request.urlopen("https://www.naver.com") print(u.read()) except Exception as e: print(e)
랭귀지/python
2019. 5. 9. 11:39