TWIG::2020.07.18

Today lolol·2020년 7월 18일
0

TWIG

목록 보기
9/17
post-custom-banner

blue sky

.to_csv() encoding

https://dolhani.tistory.com/521

df = pd.DataFrame(<data>)
# utf-8이 깨지는 경우, 대체할 수 있다.
df.to_csv('file.csv',encoding='utf-8-sig')

Selenium language

https://gist.github.com/BuhtigithuB/11df8cf8d03bb236985156de204fe7b4

해당 게시물에서는 splinter 라이브러리를 참조해서 쓰고 있는데, 단순히 selenium만 쓰는 것으로는 언어를 바꿀 수 없는 것으로 보인다.

# This work with selenium

from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options
from splinter.driver.webdriver import BaseWebDriver, WebDriverElement

options = Options()
# not worked.. without splinter
options.add_experimental_option('prefs', {'intl.accept_languages': 'en,en_US'})

browser = BaseWebDriver()
browser.driver = Chrome(chrome_options=options)

browser.visit('http://example.com')
profile
working making doing makes us 🤖
post-custom-banner

0개의 댓글