Skip to content

Commit 2a67773

Browse files
authored
Merge pull request #8 from Vedant950/main
Bug fix
2 parents e446fa7 + 4f52109 commit 2a67773

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/PyScrappy.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def youtube_scrapper(video_sec_url, n_pages):
176176
"""
177177

178178
import youtube
179-
return youtube.scrappi(video_sec_url, n_pages=3)
179+
return youtube.scrappi(video_sec_url, n_pages = n_pages)
180180

181181
############## Wikipedia Scrapper ##############
182182

@@ -441,7 +441,7 @@ class StockScrapper():
441441

442442
############## Financial details scrapper ##############
443443

444-
def financial_data_scrapper(stock_code):
444+
def financial_data_scrapper(self, stock_code):
445445

446446
"""
447447
@@ -477,7 +477,7 @@ def financial_data_scrapper(stock_code):
477477

478478
############## Profile details scrapper ##############
479479

480-
def profile_data_scrapper(stock_code):
480+
def profile_data_scrapper(self, stock_code):
481481

482482
"""
483483
@@ -512,7 +512,7 @@ def profile_data_scrapper(stock_code):
512512

513513
############## Profile details scrapper ##############
514514

515-
def historical_data_scrapper(stock_code, stock_range, stock_interval):
515+
def historical_data_scrapper(self, stock_code, stock_range, stock_interval):
516516

517517
"""
518518

0 commit comments

Comments
 (0)