반응형 분류 전체보기282 Python Task Scheduler import scheduleimport timedef job(): print("작업실행중")#schedule.every(1).hours.do(job)schedule.every(1).seconds.do(job)while True: schedule.run_pending() time.sleep(1) 2024. 11. 20. 초간단 화면캡처 단축키(Super Simple Short-Key for Screen Capture) Super Simple Short-Key for Screen Capture:Win + S= Win + Shift + s 2024. 11. 16. Streamlit + VSCODE streamlit?: 기계학습, 데이터 사이언스 프로젝트를 위한 오픈소스 앱 프레임워크, python으로 데이터 분석을 위한 웹앱을 쉽게 만들어줌 설치법? anaconda에 가상환경 설정anaconda prompt에 아래 입력> pip install streamlit> streamlit hello 아래와 같이 각종 데모를 볼 수 있음VSCode에서 사용import streamlit as stimport pandas as pddef main(): st.title('Hello World!') df = pd.DataFrame({ 'first column': [1, 2, 3, 4], 'second column': [10, 20, 30, 40] }) st.wr.. 2024. 11. 15. OpenAI Billing + Langchain LLM AI Service For Streamlitanaconda virtual environments의 jupyter notebook에서 저장된 python file (*.py)를 저장하는 장소C:\Users\[사용자id]\anaconda3\envs\llm3\Scripts https://github.com/gilbutITbook/080413/blob/main/%EC%8B%A4%EC%8A%B5/5%EC%9E%A5/5_6_%EB%B2%88%EC%97%AD_%EC%84%9C%EB%B9%84%EC%8A%A4_%EB%A7%8C%EB%93%A4%EA%B8%B0.ipynb 소스 코드. Contribute to gilbutITbook/080413 development by creating an account on GitHub." data-og.. 2024. 11. 14. 이전 1 ··· 5 6 7 8 9 10 11 ··· 71 다음 반응형