Advertisement
jeffdh5

Untitled

Jan 30th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import requests
  2.  
  3. QUERY_AND_REPORTING_SERVER = "http://ec2-18-222-151-1.us-east-2.compute.amazonaws.com:5001"
  4.  
  5. query_report_dict = {
  6. "reprice_event_id": "2069c788-b26f-4535-9e2b-7e5b69d35e3e|2019-01-30T20:02:36.214369",
  7. "is_test": False,
  8. "seller_sku": "DI_RIVERTON_7_2018_11"
  9. }
  10.  
  11. response = requests.post(
  12. '{}/get_individual_item_approve_report'.format(QUERY_AND_REPORTING_SERVER),
  13. json=query_report_dict
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement