2021-04-07 21:34:08 +00:00
|
|
|
from flask import Flask
|
2021-04-14 16:52:22 +00:00
|
|
|
from flask_restful import Resource, Api, reqparse
|
2021-04-07 21:34:08 +00:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
api = Api(app)
|
|
|
|
|
2021-04-14 16:52:22 +00:00
|
|
|
# To parse request data
|
|
|
|
parser = reqparse.RequestParser()
|
|
|
|
parser.add_argument('key')
|
|
|
|
parser.add_argument('products')
|
|
|
|
|
2021-04-07 21:34:08 +00:00
|
|
|
|
|
|
|
class CrawlerApi(Resource):
|
|
|
|
def get(self):
|
|
|
|
return {'Hallo': 'Betterzon'}
|
|
|
|
|
2021-04-14 16:52:22 +00:00
|
|
|
def post(self):
|
|
|
|
# Accept crawler request here
|
|
|
|
args = parser.parse_args()
|
|
|
|
return args
|
|
|
|
|
2021-04-07 21:34:08 +00:00
|
|
|
|
|
|
|
api.add_resource(CrawlerApi, '/')
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app.run(host='0.0.0.0', port=22026)
|