일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kotlin
- string
- Google Spreadsheet
- array
- Redshift
- c#
- Mac
- Tkinter
- google apps script
- list
- Apache
- GIT
- matplotlib
- Excel
- Java
- django
- numpy
- math
- gas
- Python
- hive
- 파이썬
- Google Excel
- SQL
- PostgreSQL
- PANDAS
- dataframe
- Github
- PySpark
- Today
- Total
목록PDF (2)
달나라 노트
Project, Workbook, View 객체를 얻어와서 attribute를 조회할 때 일반적인 방법으로는 조회가 되지 않는 attribute가 있습니다. 아래 코드를 보시죠. import tableauserverclient as TSC id = 'user_1' pw = 'pw_1' url_tableau = 'https://tableau-server.test.com' server = TSC.Server(url_tableau) tableau_auth = TSC.TableauAuth(id, pw) server.auth.sign_in(tableau_auth) req_option = TSC.RequestOptions() req_option.filter.add(TSC.Filter(TSC.RequestOption..
Python을 이용해 image 파일을 pdf로 변환하는 방법을 알아봅시다. pip install PIL pip install Pillow 사용되는 라이브러리는 PIL 입니다. PIL이 간혹 설치가 제대로 되지 않는 경우가 있을 수 있는데 그럴 땐 Pillow 패키지를 설치합시다. (Pillow 패키지를 설치해도 PIL 라이브러리는 이용할 수 있습니다.) from PIL import Image img = Image.open(r'test/img_test_1.png') img_rgb = img.convert('RGB') img_rgb.save('test/pdf_test_1.pdf') 위 예시는 test directory에 있는 img_test_1.png라는 이미지파일을 test directory안에 pdf_..