Skip to content

Commit 7eb3e29

Browse files
authored
Merge pull request #26 from newsdataapi/market/update
removed symbol filter from market endpoints
2 parents b82bc15 + 62c4f80 commit 7eb3e29

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/newsdataapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
NewsdataValidationError,
1313
)
1414

15-
__version__ = "0.2.2"
15+
__version__ = "0.2.3"
1616

1717
__all__ = [
1818
"NewsDataApiClient",

src/newsdataapi/client.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
"organization",
6464
"url",
6565
"sort",
66-
"symbol",
6766
"market_id",
6867
"excludecountry",
6968
"page",
@@ -765,7 +764,6 @@ def market_api(
765764
excludefield: str | list[str] | None = None,
766765
removeduplicate: bool | None = None,
767766
organization: str | list[str] | None = None,
768-
symbol: str | list[str] | None = None,
769767
market_id: str | list[str] | None = None,
770768
id: str | list[str] | None = None,
771769
url: str | None = None,
@@ -811,7 +809,6 @@ def market_api(
811809
"excludefield": excludefield,
812810
"removeduplicate": removeduplicate,
813811
"organization": organization,
814-
"symbol": symbol,
815812
"market_id": market_id,
816813
"id": id,
817814
"url": url,
@@ -1007,7 +1004,6 @@ def market_count_api(
10071004
image: bool | None = None,
10081005
video: bool | None = None,
10091006
organization: str | list[str] | None = None,
1010-
symbol: str | list[str] | None = None,
10111007
market_id: str | list[str] | None = None,
10121008
prioritydomain: str | None = None,
10131009
page: str | None = None,
@@ -1052,7 +1048,6 @@ def market_count_api(
10521048
"image": image,
10531049
"video": video,
10541050
"organization": organization,
1055-
"symbol": symbol,
10561051
"market_id": market_id,
10571052
"prioritydomain": prioritydomain,
10581053
"page": page,

0 commit comments

Comments
 (0)