티스토리 뷰
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
- laravel-kafka
- django
- php
- redis
- l5-swagger
- laravel-test
- 자바스크립트
- session+token authorize
- bitwarden-cli
- Laravel
- 메일
- eloquent-observer
- addMonthWithoutOverflow
- POP3
- 라라벨
- exception-test
- addMonth
- graphql
- 테스트_다중트랜잭션
- Python
- observer 매개변수 전달하기
- graphql-php
- MySQL
- l5-swagger-response
- password-manager
- php-laravel
- aaa패턴
- 정규식
- vim
- 정의
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함