Skip to content

Instantly share code, notes, and snippets.

View realhardik18's full-sized avatar
😎
water is cool but i'm cooler

hardik singh realhardik18

😎
water is cool but i'm cooler
View GitHub Profile
from flask import Flask
from flask_restful import Resource, Api, reqparse
import pandas
app = Flask(__name__)
api = Api(app)
#download the data set from https://www.kaggle.com/datasets/fernandol/countries-of-the-world
dataset = pandas.read_csv('countries of the world.csv')