This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * KazeShifter Arduino Adjustable Open Source Quick Shifter | |
| * Copyright (c) Muhammad Tresna Mukti | |
| * created by : Muhammad Tresna Mukti aka Kazemito Haruhi | |
| * Last Updated : March 2, 2020 Indonesia Time (GMT+07:00) | |
| * | |
| * For more information about this code, Go to link below | |
| * YouTube : https://www.youtube.com/c/KazemitoHaruhi/ | |
| * Instructables : https://www.instructables.com/member/TresNaa/ | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask | |
| from flask_restful import Api, Resource, reqparse | |
| app = Flask(__name__) | |
| api = Api(app) | |
| users = [ | |
| { | |
| "name": "Nicholas", | |
| "age": 42, |