test / app.py
zeyadahmedd's picture
Update app.py
aa07cb3
raw
history blame contribute delete
213 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()