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 | 30 | 31 |
Tags
- pandas
- Linux
- Excel
- mssql
- tensorflow
- PyQt
- GIT
- ubuntu
- javascript
- flutter
- node.js
- swift
- urllib
- 라즈베리파이
- sqlite
- PER
- 함수
- 유니티
- 날짜
- MS-SQL
- 맛집
- 다이어트
- IOS
- PyQt5
- python
- MySQL
- ASP
- port
- 리눅스
- Unity
Archives
목록threading (1)
아미(아름다운미소)
python 해당시간에 특정작업실행
오전 8시 30분에서 오후 8시 30분까지 30초 인터벌로 TaskA 의 특정작업실행하기 # -*- coding: utf-8 -*- ''' Created on 2018. 9. 4. @author: bhm ''' from datetime import time, datetime import threading class syncTask: def __init__(self): pass def TaskA(self): morning = time(8, 30) # 시각 객체 evening = time(20, 30) now = datetime.now().time() # 일시 객체 dt = datetime.now() print dt if morning now: print morning print now print eveni..
랭귀지/python
2018. 9. 5. 09:00