Data Providers
Provides access to external data providers data, such as yahoo financial data.
- N/A
- Git clone the project
- Create the Python Env
-
- rm -rf venv/
- python3 -m venv venv
- source ./venv/bin/activate
-
- Install Requirements:
- python3 -m pip install --upgrade pip
- Build Package:
- pip3 install -U pip setuptools
- python3 setup.py sdist bdist_wheel
- pip3 install -e .
- [optional] pip install -Iv urllib3==1.26.15
- Tag New Release & Push:
- git tag 0.0.x -m "Release details"
- git push origin 0.0.x
- Install Package:
- Go to Settings > Developer Settings > Personal access tokens (classic) > Generate new token with note e.g. "Upload package"
- Ensure you check the write:packages scope to grant the necessary permissions.
- Get the generated token, e.g. "12345"
- Get your Github user name, e.g. "my_user_name"
- Install the private package using the following:
- Template:
- pip install git+https://{{ your access token }}@github.com/{{ username }}/{{ repository name}}.git@{{ tag/version }}#egg={{ package name }}
- pip install git+https://github.com/{{ username }}/{{ package name }}.git@{{ tag/version }}
- Example:
- pip install git+https://github.com/{{ username }}/[email protected]
* pip install git+https://[email protected]/{{ username }}/[email protected]#egg=data_providers
- Template:
- N/A
- N/A
Contributors names and contact info [email protected]
- 0.0.1
- First version only containing stubs
- 0.0.2
- Initial Release
- There is no license.
Inspiration, code snippets, etc.