일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dbt_project
- docker
- numpartitions
- Java
- CDC
- 크롤링
- mysql
- UI for kafka
- 쿠버네티스
- Materializations
- kafka
- DBT
- spark
- bar cahrt
- 윈도우
- polars
- KubernetesPodOperator
- 카프카
- proerty
- spring boot
- 모바일
- freshness
- k9s
- query history
- airflow
- Python
- 파이썬
- ksql
- 도커
- 동적 차트
- Today
- Total
목록파이썬 (2)
데이터 엔지니어 이것저것
from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.common.keys import Keys import pyperclip import time #클립보드에 input을 복사한 뒤 #해당 내용을 actionChain을 이용해 로그인 폼에 붙여넣기 def copy_input(xpath, input): pyperclip.copy(input) driver.find_element_by_xpath(xpath).click() ActionChains(driver).key_down(Keys.CONTROL).send_keys('v').key_up(Keys.C..
In [1]: import numpy as np import pandas as pd In [2]: # 시각화 import seaborn as sns import matplotlib.pyplot as plt %matplotlib inline In [3]: # 머신러닝 from sklearn.linear_model import LogisticRegression from sklearn.svm import SVC, LinearSVC from sklearn.ensemble import RandomForestClassifier from sklearn.neighbors import KNeighborsClassifier from sklearn.naive_bayes import GaussianNB from sklearn..