일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TORCH
- DB
- Package
- LLM
- list
- numpy
- Container
- PostgreSQL
- docker
- file
- pandas
- Linux
- KAKAO
- AI
- Paper
- git
- Converting
- format
- judge
- Windows
- Database
- pytorch
- evaluation
- Flask
- CUDA
- Python
- Laravel
- GitLab
- Mac
- enV
Archives
- Today
- Total
목록curl (2)
Daily Develope
[Web] curl & program code 변환 (관련링크)
참고사이트 CURL to CODE 변환사이트
Develope/Web
2023. 3. 27. 10:03
[FLASK] request 정리
flask에서 데이터 읽기사용자가 데이터를 싣어보내는 방법이 다양하기에, 규격(유형)에 맞는 데이터 읽기 방법을 구현해야한다.샘플코드- Get 요청 : request.args 로 데이터 전달- Post 요청 : request.form 으로 데이터 전달- 입력 유형(format)에 따라 데이터 구분 가능 (request.content_type)from flask import request#...@sample.route('/', methods=['GET', 'POST'])def sampleAPI():# ... contentType = request.content_type # 또는 contentType = request.headers.get('Content-Type') args = None ..
Develope/Web
2022. 8. 16. 13:32