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