Recently i started to use flask and I liked pretty much. In the past I had a system in PHP with a lot of databases like marketing, HR, finance and so on. Each of this databases had their own tables like HR used to have employers, companies and so on. Each of this tables was a class in PHP, we
Tag: flask
Flask API is unable to receive data from PHP
I’m trying to run a flask API in a specific port number as below, from flask import Flask, request from pymongo import MongoClient import json app = Flask(__name__) @app.route(“/”) def hello(): …