Skip to content

This is an empty OpenBB container with provider, router, and OBBject extension shells. Jupyter Notebook, IPython kernel, Fast API included.

License

Notifications You must be signed in to change notification settings

deeleeramone/openbb-empty

Repository files navigation

Empty OpenBB

Only the core OpenBB infrastructure is included (optional Charting, Jupyter Notebook).

The repository is intended to be cloned as a lightweight development environment. Alternatively, use pip install to install a core application shell with build and launch scripts.

Installation

A Python environment needs to be created and activated. Use your preferred environment manager to create the Python environment.

From Source

Clone the repository, and then from the root of the project, run:

python openbb_empty/dev_install.py

Items within the "extensions/" folder will be installed by dev_install.py, but not by poetry install.

The "extras" listed in the PyPI section below are installable by adding the name - i.e, dev_install.py notebook

PyPI

pip install openbb-empty

Install with the charting library:

pip install openbb-empty["charting"]

Add PyWry for Pythonic window creation.

pip install openbb-empty["pywry"]

Add Jupyter Notebook.

pip install openbb-empty["notebook"]

Adding OpenBB Modules

Install data provider extensions individually, for example:

pip install openbb-yfinance

Install the router paths independently:

pip install openbb-equity openbb-derivatives

Usage

With dev_install.py, the contents of the /extensions folder are installed in "editable" mode. Any changes will be reflected upon restarting the Python interpreter.

After installing a new provider or router path, rebuild the static assets:

python -c "import openbb;openbb.build()"

Python

Importing and operating are the same as with any other openbb installation; only here, there are no data providers or router paths included. The empty paths are working starting points to replace with your code.

from openbb import obb

obb.empty.hello()

Use, obb.reference, to get a map of all installed paths and extensions.

API

Launch the Fast API server by opening a Terminal command line and activating the environment where the package is installed, then enter:

openbb-api

Developing

Open the /extensions folder and examine the code to see how the pieces interact. If your code changes are not being reflected after reloading the Python interpreter, try rebuilding the assets:

import openbb
openbb.build()

Restart the session and try again.

About

This is an empty OpenBB container with provider, router, and OBBject extension shells. Jupyter Notebook, IPython kernel, Fast API included.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages