Initial commit

This commit is contained in:
simon
2018-02-27 16:31:54 -05:00
commit cd09d2b791
45 changed files with 190867 additions and 0 deletions

11
lynda.com/tmp.py Normal file
View File

@@ -0,0 +1,11 @@
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])