
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
A client library to manage a postgresSQL database of financial market data, using a docker containerized api.
MarketDatabaseManager is your complete solution for interacting with financial assets using a Docker-optimized REST API backed by PostgreSQL.
psql -U postgres;
CREATE DATABASE <database_name>;
git clone https://github.com/anthonyb8/MarketDatabaseManager.git
Create a .env
file in the api
directory and insert your database credentials:
DATABASE_URL = "postgresql://<user>:<password>@host.docker.internal/<database_name>"
⚠️ Note: If Docker isn't running locally, replace
host.docker.internal
with the appropriate host.
From the root MarketDatabaseManager
directory, run the following commands to build and start the Docker container:
docker-compose build
docker-compose up -d
While in the root directory of your project (not the MarketDatabaseManager
directory), execute the following commands to set up the virtual environment and install the client library:
python3.10 -m venv venv
source venv/bin/activate
pip install MarketDataManager
from MarketDataManager import Client
client = Client()
client.create_tables()
new_asset = {
"ticker" : "AAPL",
"type" : "equity"
}
client.create_asset(asset = new_asset)
asset_details = {
'company_name' : 'Apple Inc.',
'exchange' : 'NASDAQ',
'currency' : 'USD',
'industry' : 'Technology',
'description' : 'Equity for Apple Inc. a technologies producer.',
'market_cap' : 100000,
'shares_outstanding' : 100000
}
client.create_asset_details(ticker="AAPL", asset_type="equity",data=asset_details)
asset_bardata = [
{
'date' : '2023-01-01',
'open': 100.0,
'close': 101.0,
'high': 102.0,
'low': 103,
'volume': 109,
'adjusted_close' : 1100.0
},
{
'date' : '2023-01-02',
'open': 100.0,
'close': 101.0,
'high': 102.0,
'low': 103,
'volume': 109,
'adjusted_close' : 1100.0
}
]
client.create_bardata(ticker="AAPL", asset_type="equity", data=asset_bardata)
This project is licensed under the Apache License, Version 2.0. Get a copy of the License here.
FAQs
A client library to manage a postgresSQL database of financial market data, using a docker containerized api.
We found that MarketDataManager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.