반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 네이버부동산크롤링
- UiPath
- Uipath 설치방법
- selenium
- 왕초보 파이썬 실행
- pywinauto 윈도우제어
- Python
- pycdc.exe
- 파이썬 네이버 로그인
- 날짜 정규식
- Selenium 셀렉터잡기
- venv 설치
- 커머스API
- pycdas.exe
- pywinauto 윈도우
- 네이버 로그인 영수증 해결
- 네이버 로그인 하기
- Element is not clickable at point
- vscode venv 설치
- 네이버매물크롤링
- 가상환경설치
- pywinauto
- 네이버 로그인 캡챠해결
- 파이썬 가상환경 설치
- 네이버커머스API
- 파이썬 가상환경 설치방법
- 파이썬네이버부동산
- Uipath 기초
- uipath 입문
- 파이썬 환경설정
Archives
- Today
- Total
목록2024/02/07 (1)
콘솔워크
파이썬 copy file 코드 _ 파일명 그대로 복사하면서 현재시간을 꼬리말로 추가
import pandas as pd from datetime import datetime import os import shutil from pathlib import Path def copy_file(file_path): file_name = Path(file_path).stem now = datetime.now() str_now = now.strftime("%Y%m%d%H%M%S") config = ProgramConfig() destination_path = os.path.join( "output", f"{file_name}_{str_now}.xlsx" ) shutil.copy(file_path, destination_path) return destination_path Path 함수를 활용해서 파..
카테고리 없음
2024. 2. 7. 11:52