일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- string
- PostgreSQL
- Excel
- Github
- Apache
- 파이썬
- Kotlin
- hive
- Redshift
- google apps script
- PANDAS
- GIT
- c#
- dataframe
- Mac
- Google Excel
- Google Spreadsheet
- math
- Python
- numpy
- gas
- Java
- list
- PySpark
- django
- Tkinter
- array
- matplotlib
- SQL
- Today
- Total
목록분류 전체보기 (832)
달나라 노트
Python에선 googletrans라는 번역 기능을 가진 library를 제공합니다. googletrans 설치 pip install googletrans==4.0.0-rc1 일반적인 설치법으로 pip install googletrans를 하게되면 가끔 AttributeError: 'NoneType' object has no attribute 'group' 위와 같은 에러가 지속적으로 뜨는 경우가 있습니다. 이럴 경우에는 위 커맨드로 해당 버전을 설치해줍시다. (참고 : github.com/ssut/py-googletrans/issues/234) from googletrans import Translator translator = Translator() translated_obj = translator..
Tableau Server Client(TSC) Let us check how to refresh workbook. Filtering workbook using workbook name and refresh that workbook. # -------------------------------------------------- # Chapter 3. Tableau workbbok refresh # To refresh workbook you need workbook id of the workbook you want to refresh. # To get workbook id, you can use filter function in Chapter 2 # -------------------------------..
Tableau Server Client(TSC) Let us check how to filter and get information I want. Filtering workbook using workbook name and get information of that workbook. # -------------------------------------------------- # Chapter 2. How to filter and get some information I want # -------------------------------------------------- import tableauserverclient as TSC def TSC_filter_workbook(): tableau_serve..
Tableau Server Client(TSC) Tableau Server Client(TSC) library gives you various functions to deal with tableau on python code. Sign in & Sign out # -------------------------------------------------- # Chapter 1. How to sign in and out in tableau server using TSC # -------------------------------------------------- import tableauserverclient as TSC def TSC_sign_in_out(): tableau_server_url = 'tab..