Сорт хакерский способ реализовать это (в зависимости от того, как этот каталог, в частности,
структурированный) должен был бы сделать цикл итеративно добавлять к строке, которую вы вводите
как ваш путь к файлу:
import urllib
# Get master directory
speech_dir ="https://raw.githubusercontent.com/PedramNavid/trump_speeches/master/data/"
# Iterate through all speeches in directory, from 00 to 73
cur_speech = 00
end_speech = 73
while (cur_speech <= end_speech):
# Change the speech you want to get
speech_nm = ('speech_' + str(cur_speech) +'.txt')
response = urllib.request.urlopen(speech_nm)
# Do what you need to with the speech
Text = response.read()
Text = Text.decode("utf-8")
# Update to the new speech
cur_speech +=1
Таким образом, вы будете проходить каждую речь в этом конкретном каталоге.