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
- terraform
- PostgreSQL
- 프라하
- 뮌헨
- 메르페이
- node.js
- 미츠이 스미토모
- CSV
- typescript
- 아타미
- JenkinsFile
- PayPay
- Python
- codebuild
- pyenv
- local
- javascript
- react.js
- documentdb
- 카마츠루
- 체코
- 釜つる
- Selenium
- duckdb
- 熱海
- 三井住友カード
- vba
- 페이페이
- 태국
- 방콕
Archives
- Today
- Total
목록Parallel (1)
도쿄사는 외노자
parallel execute sample
concurrent.futureshttps://docs.python.org/3/library/concurrent.futures.htmlThreadPoolExecutor지정한 함수를 병렬기동from concurrent.futures import ThreadPoolExecutordef parallel_execute(function, args_list, max_workers=20): futures = [] with ThreadPoolExecutor( max_workers=max_workers, thread_name_prefix="thread" ) as pool: for args in args_list: future = pool.submit(funct..
Tech/Python
2023. 12. 6. 19:36