반응형
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
- Google Spreadsheet
- math
- string
- PostgreSQL
- list
- Python
- Java
- Google Excel
- Kotlin
- Excel
- GIT
- hive
- Apache
- gas
- Tkinter
- PySpark
- array
- Github
- numpy
- dataframe
- c#
- Mac
- 파이썬
- google apps script
- PANDAS
- Redshift
- matplotlib
- SQL
- django
Archives
- Today
- Total
목록Python/Python webbrowser (1)
달나라 노트
Python webbrowser : open url on web browser
webbrowser library makes it possible for us to open url on your browser. import webbrowser url = 'https://www.google.com' webbrowser.open(url, new=1) The above code will open google in your base web browser. new = 0 -> open url in the same browser window. new = 1 -> open url in a new browser window. new = 2 -> open url in a new browser tab.
Python/Python webbrowser
2020. 12. 22. 23:34