You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/usage.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ ones, like `title` to search for):
52
52
|-------------|-------------|
53
53
|`country`| 2-letter country code for which offers will be returned, e.g., `US`, `GB`, `DE`. |
54
54
|`language`| Code for language in responses. It consists of 2 lowercase letters with optional uppercase alphanumeric suffix (e.g., `en`, `en-US`, `de`, `de-CH1901`). |
55
-
|`best_only`| Whether to return only "best" offers for each provider instead of, e.g., separate offer for SD, HD, and 4K. |
55
+
|`best_only`| Whether to return only "best" offers for each provider instead of, e.g., separate offers for SD, HD, and 4K. |
56
56
57
57
Functions returning data for multiple titles
58
58
([`search`][simplejustwatchapi.justwatch.search],
@@ -331,7 +331,7 @@ from simplejustwatchapi import search, JustWatchApiError
331
331
332
332
try:
333
333
# Language code "xx" also isn't valid for any languages, but since it matches the
334
-
# pattern it would default to english.
334
+
# pattern it would default to English.
335
335
results = search("The Matrix", language="xxx")
336
336
except JustWatchApiError as e:
337
337
# Print only error codes.
@@ -495,7 +495,7 @@ while results := popular(count=page, offset=i):
495
495
```
496
496
497
497
!!! note "Maximum number of responses"
498
-
There is a limit of number of entries you can get from the JustWatch API using this
499
-
method of **1999**. Check
498
+
**1999** is the limit of number of entries you can get from the JustWatch API using
499
+
this method. Check
500
500
[Maximum number of entries](caveats.md#maximum-number-of-entries) page for more
0 commit comments