반응형
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 |
Tags
- 파이썬
- PANDAS
- Apache
- GIT
- PostgreSQL
- gas
- Google Excel
- list
- Kotlin
- Java
- numpy
- string
- django
- c#
- Tkinter
- Redshift
- hive
- Github
- PySpark
- math
- SQL
- matplotlib
- Mac
- Excel
- Google Spreadsheet
- dataframe
- Python
- google apps script
- array
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