aboutsummaryrefslogtreecommitdiffstats
path: root/python/markit_tranche_quotes.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/markit_tranche_quotes.py')
-rw-r--r--python/markit_tranche_quotes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/markit_tranche_quotes.py b/python/markit_tranche_quotes.py
index 36753711..a7f1eb92 100644
--- a/python/markit_tranche_quotes.py
+++ b/python/markit_tranche_quotes.py
@@ -11,8 +11,8 @@ params = {"username": "serenitasreports",
"exportType": "csv",
"START_TIME": "11/13/2017"}
-r = requests.get("https://quotes.markit.com/reports/runReport",
- params=params)
+r = requests.post("https://quotes.markit.com/reports/runReport",
+ params=params)
f = io.StringIO(r.text)
with open("quotes.csv", "w") as fh: