Skip to content

Commit

Permalink
tutorial5
Browse files Browse the repository at this point in the history
  • Loading branch information
ronidas39 committed Oct 30, 2023
1 parent edefab2 commit 6c2c8ab
Show file tree
Hide file tree
Showing 8 changed files with 11,128 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion tutorial2/single_url.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from langchain.document_loaders import youtube
import io

loader=youtube.YoutubeLoader.from_youtube_url("https://www.youtube.com/watch?v=iEDS_KjSF58")
loader=youtube.YoutubeLoader.from_youtube_url("https://youtu.be/64eXtnwLj5U")
docs=loader.load()
print(docs)
with io.open("transcript.txt","w",encoding="utf-8")as f1:
for doc in docs:
f1.write(doc.page_content)
Expand Down
2 changes: 1 addition & 1 deletion tutorial2/transcript.txt

Large diffs are not rendered by default.

Binary file removed tutorial2/~$tutorial2.pptx
Binary file not shown.
2 changes: 1 addition & 1 deletion tutorial4/books.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bookID,title,authors,average_rating,isbn,isbn13,language_code, num_pages,ratings_count,text_reviews_count,publication_date,publisher
bookID,title,authors,average_rating,isbn,isbn13,language_code,num_pages,ratings_count,text_reviews_count,publication_date,publisher
1,Harry Potter and the Half-Blood Prince (Harry Potter #6),J.K. Rowling/Mary GrandPré,4.57,0439785960,9780439785969,eng,652,2095690,27591,9/16/2006,Scholastic Inc.
2,Harry Potter and the Order of the Phoenix (Harry Potter #5),J.K. Rowling/Mary GrandPré,4.49,0439358078,9780439358071,eng,870,2153167,29221,9/1/2004,Scholastic Inc.
4,Harry Potter and the Chamber of Secrets (Harry Potter #2),J.K. Rowling,4.42,0439554896,9780439554893,eng,352,6333,244,11/1/2003,Scholastic
Expand Down
Binary file added tutorial5/.DS_Store
Binary file not shown.
11,124 changes: 11,124 additions & 0 deletions tutorial5/books.csv

Large diffs are not rendered by default.

Binary file added tutorial5/tutorial5.pptx
Binary file not shown.

0 comments on commit 6c2c8ab

Please sign in to comment.