Skip to content

Commit

Permalink
update(example_usage.py): fix wrong class import
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitryzub committed May 29, 2023
1 parent fb9a299 commit 04227d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example_usage.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# each function have documentation with an example "usage" script
# each function have documentation with an example "usage" script, after function arugments
from google_scholar_py import CustomGoogleScholarOrganic
from google_scholar_py import SerpApiGoogleScholarOrganic
from google_scholar_py import CustomGoogleScholarTopPublicationCitations
from google_scholar_py import CustomGoogleScholarTopPublicationArticle

import json

Expand All @@ -13,7 +13,7 @@
save_to_json=False
)

top_publication_citation = CustomGoogleScholarTopPublicationCitations().scrape_google_scholar_top_publication_citations(
top_publication_citation = CustomGoogleScholarTopPublicationArticle().scrape_google_scholar_top_publication_articles(
journal_publications_link='https://scholar.google.com/citations?hl=en&vq=en&view_op=list_hcore&venue=TdhLrHqKTh8J.2022',
pagination=True,
save_to_csv=False,
Expand Down

0 comments on commit 04227d0

Please sign in to comment.