티스토리 뷰
api.py
from flask import Flask
from flask_restful import Resource, Api
app = Flask(__name__)
api = Api(app)
class HelloWorld(Resource):
def get(self):
return {'hello': 'world'}
api.add_resource(HelloWorld, '/')
if __name__ == '__main__':
app.run(debug=True)
실행하기
$ python api.py
* Running on http://127.0.0.1:5000/
* Restarting with reloader
#파이참 사용시 .html 사용으로 rest api test 할 수 있다.
# helloworld.htm
# get
GET localhost:5000/helloworld
출처 : https://jojoldu.tistory.com/266
출처 : https://flask-restful.readthedocs.io/en/latest/quickstart.html#a-minimal-api
'공부합시다 > python' 카테고리의 다른 글
django 모델에서 datetime 한국시간으로 설정하기 (0) | 2020.08.11 |
---|---|
python 에서 oracle 사용하기 (0) | 2020.08.04 |
Python 패키지 의존성 관리 (0) | 2020.06.25 |
Django RESTframework (0) | 2020.06.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- addMonthWithoutOverflow
- 자바스크립트
- vim
- bitwarden-cli
- Python
- exception-test
- aaa패턴
- password-manager
- 라라벨
- session+token authorize
- laravel-kafka
- laravel-test
- l5-swagger
- redis
- graphql-php
- MySQL
- graphql
- 정규식
- l5-swagger-response
- php
- Laravel
- addMonth
- eloquent-observer
- POP3
- 테스트_다중트랜잭션
- php-laravel
- 정의
- django
- 메일
- observer 매개변수 전달하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함