티스토리 뷰
DataFrame 형식의 데이터( 아래 예시 : keywordsDF)를 엑셀 파일(아래 예제 : ExcelFilename)의 지정 시트(아래 예제 : overviewSheet)에 저장하는 코드
<Main Source>
excel1 = cBExcel()
excel1.UpdateFile(keywordsDF, self.ExcelFilename, overviewSheet)
<Method>
def UpdateFile(self, datas_df, fileName, sheetName=None):
if os.path.exists(fileName):
wb = load_workbook(fileName)
else:
wb = Workbook()
if not sheetName:
ws = wb.active
else:
try:
ws = wb[sheetName]
wb.remove(wb[sheetName])
ws = wb.create_sheet(sheetName)
except:
ws = wb.create_sheet(sheetName)
ws = self.Convert2Sheet(ws, datas_df)
wb.save(fileName)
wb.close()
반응형
'SWDesk' 카테고리의 다른 글
[Python] Message Hookup through IFTTT (0) | 2021.06.12 |
---|---|
[Python] Upload Article into Tistory (0) | 2021.06.05 |
Goorm-IDE Background Operation (0) | 2021.05.31 |
[Python] 유사 문장 찾아서 제거하기 (0) | 2021.05.21 |
[Python] 네이버 쇼핑 검색을 위한 소스 코드 (0) | 2021.05.06 |
반응형
250x250
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Hurdles
- 혁신과허들
- 오블완
- ServantClock
- 빌리언트
- 전압전류모니터링
- 티스토리챌린지
- Innovations&Hurdles
- Video
- 허들
- Innovations
- 심심풀이
- 배프
- 둎
- badp
- Decorator
- bilient
- image
- BSC
- 절연형
- Innovation&Hurdles
- DYOV
- arduino
- 전압
- 전류
- 혁신
- 치매방지
- 심심풀이치매방지기
- 치매
- 아두이노
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함