Skip to content

Commit

Permalink
Merge pull request #86 from adieyal/main
Browse files Browse the repository at this point in the history
Fixed typo in example code
  • Loading branch information
rahulbot authored Jan 24, 2024
2 parents 9a94a22 + cf2fc0a commit 1b6595d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Take a look at the test in the `mediacloud/test/` module for more detailed examp
```python
import mediacloud.api
US_NATIONAL_COLLECTION = 34412234
mc_search = mediacloud.api.SearchAPI(YOUR_MC_API_KEY)
mc_search = mediacloud.api.SearchApi(YOUR_MC_API_KEY)
all_stories = []
pagination_token = None
more_stories = True
Expand All @@ -43,7 +43,7 @@ print(f"Retrived {len(all_stories)} matching stories")
```python
import mediacloud.api
INDIA_NATIONAL_COLLECTION = 34412118
mc_search = mediacloud.api.SearchAPI(YOUR_MC_API_KEY)
mc_search = mediacloud.api.SearchApi(YOUR_MC_API_KEY)
all_stories = []
pagination_token = None
more_stories = True
Expand Down

0 comments on commit 1b6595d

Please sign in to comment.