mirror of
https://github.com/simon987/Misc-Download-Scripts.git
synced 2025-04-02 12:12:59 +00:00
11 lines
330 B
Python
11 lines
330 B
Python
|
|
terms = ["data science", "big data", "hadoop", "python", "data mining", "text mining", "deep learning", "blender",
|
|
"unity", "zbrush", "substance"]
|
|
|
|
for line in open("courses.txt"):
|
|
|
|
category, name, course_id, url = line.split("\0")
|
|
|
|
for term in terms:
|
|
if term in name.lower():
|
|
print(url[:-1]) |