Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Mo0nl19ht committed Sep 26, 2021
1 parent 0e791c8 commit c417830
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,17 @@ Crawler 를 불러옵니다
## yotube_search

```python
df = yc.youtube_search(query, topicId=None, videoCaption=None, regionCode="KR")
df = c.youtube_search(query, topicId=None, videoCaption=None, regionCode="KR")

#예시

# 대한민국 영상 중 nlp 강의를 검색해서 가져오는데
# topic정하지 않고 자막여부 상관없이 가져온다
df = yc.youtbue_search("nlp 강의")
df = c.youtbue_search("nlp 강의")

# 대한민국 영상 중 블랙핑크를 검색해서 가져오는데
# Music 과 Entertainment에 관련된 영상을 가져옴
df = yc.youtube_search("블랙핑크",topicId="/m/04rlf, /m/02jjt")
df = c.youtube_search("블랙핑크",topicId="/m/04rlf, /m/02jjt")
```

query로 검색하고 관련 영상의 id들을 저장하고 DataFrame을 반환합니다
Expand Down
10 changes: 5 additions & 5 deletions youtubecrawling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ https://velog.io/@yhe228/Youtube-API%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%B4-%EB%8D
### 아래 코드로 모든 크롤링이 끝납니다

```jsx
from youtube_crawler import Crawler
from youtubecrawling import youtubecrawling

key_list=[ "asdasd", "bddfg", "hgfd"]

# 크롤러 호출
c = Crawler("D:/youtube_crawler", key_list)
c = youtubecrawling.Crawler("D:/youtube_crawler", key_list)

# 블랙핑크로 유튜브 검색 , id, 제목 크롤링
df = c.youtube_search("블랙핑크")
Expand Down Expand Up @@ -111,17 +111,17 @@ Crawler 를 불러옵니다
## yotube_search

```python
df = yc.youtube_search(query, topicId=None, videoCaption=None, regionCode="KR")
df = c.youtube_search(query, topicId=None, videoCaption=None, regionCode="KR")

#예시

# 대한민국 영상 중 nlp 강의를 검색해서 가져오는데
# topic정하지 않고 자막여부 상관없이 가져온다
df = yc.youtbue_search("nlp 강의")
df = c.youtbue_search("nlp 강의")

# 대한민국 영상 중 블랙핑크를 검색해서 가져오는데
# Music 과 Entertainment에 관련된 영상을 가져옴
df = yc.youtube_search("블랙핑크",topicId="/m/04rlf, /m/02jjt")
df = c.youtube_search("블랙핑크",topicId="/m/04rlf, /m/02jjt")
```

query로 검색하고 관련 영상의 id들을 저장하고 DataFrame을 반환합니다
Expand Down

0 comments on commit c417830

Please sign in to comment.