-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies * Add new Rize ETFs * Update schemas * Update Fund model * Add new ETFs to readme * Upgrade to python 3.12 * Bump version to v2.6.0
- Loading branch information
Showing
9 changed files
with
1,088 additions
and
395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.10 | ||
FROM python:3.12 | ||
|
||
WORKDIR /code | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# OpenAPI settings | ||
OPENAPI_TITLE = "ARK Invest API" | ||
OPENAPI_API_VERSION = "2.5.0" | ||
OPENAPI_API_VERSION = "2.6.0" | ||
OPENAPI_DESCRIPTION = "API for tracking ARK Invest fund holdings and trades. This site is not affiliated with Ark Invest." | ||
OPENAPI_CONTACT = "[email protected]" | ||
OPENAPI_SERVER_URL = "https://arkfunds.io/api" | ||
|
@@ -25,6 +25,13 @@ | |
"PRNT", | ||
"IZRL", | ||
"CTRU", | ||
"CYBR", | ||
"CYCL", | ||
"FOOD", | ||
"LIFE", | ||
"LUSA", | ||
"NFRA", | ||
"PMNT", | ||
] | ||
|
||
# Example responses | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
[tool.poetry] | ||
name = "ark-invest-api" | ||
version = "2.5.0" | ||
version = "2.6.0" | ||
description = "API for tracking holdings and trades of ARK Invest funds." | ||
authors = ["Fredrik Haarstad <[email protected]>"] | ||
license = "MIT" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
fastapi = "^0.109.0" | ||
python = "^3.12" | ||
fastapi = "^0.111.0" | ||
requests = "^2.31.0" | ||
psycopg2-binary = "^2.9.9" | ||
python-dateutil = "^2.8.2" | ||
SQLAlchemy = "^2.0.25" | ||
uvicorn = "^0.25.0" | ||
python-dateutil = "^2.9.0.post0" | ||
SQLAlchemy = "^2.0.30" | ||
uvicorn = "^0.29.0" | ||
yahooquery = "^2.3.7" | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "^23.12.1" | ||
black = "^24.4.2" | ||
isort = "^5.13.2" | ||
pytest = "^7.4.4" | ||
pytest = "^8.2.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
httpx = "^0.26.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters