test / app.py
zeyadahmedd's picture
Create app.py
31fc655
raw
history blame
212 Bytes
from flask import Flask ,json
test=[{"string":"testing ya client"}]
api=Flask(__name__)
@api.route('/testing',methods=['GET'])
def testing():
return json.dumps(test)
if __name__ == '__main__':
api.run(