This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get the data from https://data.boston.gov/dataset/crime-incident-reports-august-2015-to-date-source-new-system | |
badfile = open('bostonpolice.csv', 'r') | |
betterfile = open('tmp.csv', 'w') | |
while True: | |
line = badfile.readline().strip() | |
if not line: | |
break | |
# figure out if the line has been broken incorrectly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set $namespace="%SYS" do ##class(Security.SSLConfigs).Create("ssl") set r=##class(%Net.HttpRequest).%New(),r.Server="pm.community.intersystems.com",r.SSLConfiguration="ssl" do r.Get("/packages/zpm/latest/installer"),$system.OBJ.LoadStream(r.HttpResponse.Data,"c") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"datasets": [ | |
{ | |
"name": "The Museum of Modern Art (MoMA) Collection", | |
"url": "https://github.com/MuseumofModernArt/collection" | |
}, | |
{ | |
"name": "Coronavirus (Covid-19) Data in the United States", | |
"url": "https://github.com/nytimes/covid-19-data" | |
}, |
OlderNewer