aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/markit/loans.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/markit/loans.py b/python/markit/loans.py
index feece0c7..d819ee98 100644
--- a/python/markit/loans.py
+++ b/python/markit/loans.py
@@ -14,7 +14,6 @@ BASE_URL = "https://loans.markit.com/loanx"
def download_facility(workdate, payload):
facility_filename = DATA_DIR / "Facility files" / f"facility_{workdate}.csv"
r = requests.post(f"{BASE_URL}/LoanXFacilityUpdates.csv", params=payload)
- breakpoint()
with facility_filename.open("wb") as fh:
fh.write(r.content)
@@ -54,7 +53,6 @@ def insert_facility(conn, workdate):
def download_marks(conn, workdate, payload):
r = requests.post(f"{BASE_URL}/LoanXMarks.csv", params=payload)
marks_filename = DATA_DIR / "markit" / f"markit_data_{workdate}.csv"
- breakpoint()
with marks_filename.open("wb") as fh:
fh.write(r.content)
sqlstring = "INSERT INTO markit_prices VALUES( {0} )".format(",".join(["%s"] * 5))