File size: 213 Bytes
31fc655
 
 
 
 
 
 
 
 
 
aa07cb3
1
2
3
4
5
6
7
8
9
10
11
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()