Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spice/get_stanford_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_stanford_models():
# Only download file if file does not yet exist. Else: do nothing
if not os.path.exists(jar_name):
print('Downloading {} for SPICE ...'.format(JAR))
url = 'http://nlp.stanford.edu/software/{}.zip'.format(CORENLP)
url = 'https://nlp.stanford.edu/software/{}.zip'.format(CORENLP)
zip_file, headers = urlretrieve(url, reporthook=print_progress)
print()
print('Extracting {} ...'.format(JAR))
Expand Down