Untitled

 avatar
unknown
plain_text
2 years ago
250 B
42
Indexable
@app.route('/new_ride_matching_consumer', methods=['POST'])
def new_ride_matching_consumer():
    consumers.append({**request.form, 'ip_address': request.remote_addr})
    
    print(f'List of consumers: {consumers}', flush=True)

    return ''
Editor is loading...