250x250
반응형
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 |
Tags
- flask
- Retry
- gather_nd
- GenericGBQException
- API Gateway
- BigQuery
- XAI
- subdag
- hadoop
- Counterfactual Explanations
- requests
- youtube data
- 공분산
- integrated gradient
- grad-cam
- spark udf
- 상관관계
- TensorFlow
- tensorflow text
- session 유지
- GCP
- chatGPT
- airflow subdag
- API
- top_k
- correlation
- Airflow
- 유튜브 API
- login crawling
- UDF
Archives
- Today
- Total
목록flask (1)
데이터과학 삼학년
RESTful API 파이썬 구축 예시 (feat. Flask)
파이썬으로 개발 가능한 웹프레임워크는 대표적으로 flask, django가 아닐까 싶다. flask를 이용하여 간단한 RESTful API 를 구축한 코드를 공유한다. from flask import Flask, jsonify, request app = Flask(__name__) # 임시 데이터베이스 books = [ {"id": 1, "title": "Harry Potter and the Philosopher's Stone", "author": "J.K. Rowling"}, {"id": 2, "title": "The Hobbit", "author": "J.R.R. Tolkien"}, {"id": 3, "title": "To Kill a Mockingbird", "author": "Harper Lee"..
Computer Science
2023. 3. 18. 15:00