summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPratyush Shukla <ps4534@nyu.edu>2024-01-26 23:01:57 +0530
committerGitHub <noreply@github.com>2024-01-26 17:31:57 +0000
commit94ea6d8105984dda762828bbc79ac69fbae46e58 (patch)
treef9faf7d19c16bcda857fdf40bbd7a89d423dc032
parent13283fbfceb3b5af93d88fa6bea0220a18fa09de (diff)
Release `openbb-finviz` `1.0.0` to the public (#6000)
* set version to `1.0.0` * Set correct dep version in main package * Add `finviz` to table
-rw-r--r--openbb_platform/README.md7
-rw-r--r--openbb_platform/providers/finviz/pyproject.toml2
-rw-r--r--openbb_platform/pyproject.toml2
3 files changed, 6 insertions, 5 deletions
diff --git a/openbb_platform/README.md b/openbb_platform/README.md
index bac33bb4cc2..d37133ff382 100644
--- a/openbb_platform/README.md
+++ b/openbb_platform/README.md
@@ -26,14 +26,15 @@ This will install the following data providers:
|----------------|-------------|----------------------|------------------------------------|
| openbb-benzinga | [Benzinga](https://www.benzinga.com/apis/en-ca/) data connector | pip install openbb-benzinga | Paid |
| openbb-biztoc | [Biztoc](https://api.biztoc.com/#biztoc-default) News data connector | pip install openbb-biztoc | Free |
-| openbb-ecb | [ECB](https://data.ecb.europa.eu/) data connector | pip install openbb-ecb | None |
-| openbb-finra | [FINRA](https://www.finra.org/finra-data) data connector | pip install openbb-finra | None / Free |
+| openbb-ecb | [ECB](https://data.ecb.europa.eu/) data connector | pip install openbb-ecb | Free |
+| openbb-finra | [FINRA](https://www.finra.org/finra-data) data connector | pip install openbb-finra | Free |
+| openbb-finviz | [Finviz](https://finviz.com) data connector | pip install openbb-finra | Free |
| openbb-fmp | [FMP](https://site.financialmodelingprep.com/developer/) data connector | pip install openbb-fmp | Free |
| openbb-fred | [FRED](https://fred.stlouisfed.org/) data connector | pip install openbb-fred | Free |
| openbb-intrinio | [Intrinio](https://intrinio.com/pricing) data connector | pip install openbb-intrinio | Paid |
| openbb-oecd | [OECD](https://data.oecd.org/) data connector | pip install openbb-oecd | Free |
| openbb-polygon | [Polygon](https://polygon.io/) data connector | pip install openbb-polygon | Free |
-| openbb-sec | [SEC](https://www.sec.gov/edgar/sec-api-documentation) data connector | pip install openbb-sec | None |
+| openbb-sec | [SEC](https://www.sec.gov/edgar/sec-api-documentation) data connector | pip install openbb-sec | Free |
| openbb-tiingo | [Tiingo](https://www.tiingo.com/about/pricing) data connector | pip install openbb-tiingo | Free |
| openbb-tradingeconomics | [TradingEconomics](https://tradingeconomics.com/api) data connector | pip install openbb-tradingeconomics | Paid |
| openbb-ultima | [Ultima Insights](https://ultimainsights.ai/openbb) data connector | pip install openbb-ultima | Paid |
diff --git a/openbb_platform/providers/finviz/pyproject.toml b/openbb_platform/providers/finviz/pyproject.toml
index e88b85236b2..b013f2e53a1 100644
--- a/openbb_platform/providers/finviz/pyproject.toml
+++ b/openbb_platform/providers/finviz/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openbb-finviz"
-version = "1.1.0"
+version = "1.0.0"
description = "Finviz extension for OpenBB"
authors = ["OpenBB Team <hello@openbb.co>"]
readme = "README.md"
diff --git a/openbb_platform/pyproject.toml b/openbb_platform/pyproject.toml
index 0ca89e33531..806ce7cf1ed 100644
--- a/openbb_platform/pyproject.toml
+++ b/openbb_platform/pyproject.toml
@@ -39,7 +39,7 @@ openbb-biztoc = { version = "^1.1.1", optional = true }
openbb-cboe = { version = "^1.1.1", optional = true }
openbb-ecb = { version = "^1.1.1", optional = true }
openbb-finra = { version = "^1.1.1", optional = true }
-openbb-finviz = { version = "^1.1.0", optional = true }
+openbb-finviz = { version = "^1.0.0", optional = true }
openbb-government-us = { version = "^1.1.1", optional = true }
openbb-nasdaq = { version = "^1.1.2", optional = true }
openbb-seeking-alpha = { version = "^1.1.1", optional = true }