Skip to content

Instantly share code, notes, and snippets.

@thechaudharysab
Created December 23, 2018 21:41
Show Gist options
  • Save thechaudharysab/17ccf37380b58083a066b8a1a65468e1 to your computer and use it in GitHub Desktop.
Save thechaudharysab/17ccf37380b58083a066b8a1a65468e1 to your computer and use it in GitHub Desktop.
Importing the required module and setting up the Flask-RESTful application
from flask import Flask
from flask_restful import Api, Resource, reqparse
app = Flask(__name__)
api = Api(app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment