Metadata-Version: 2.3
Name: openbb-app
Version: 0.1.4
Summary: Add your description here
Author: Roger Ye
Author-email: Roger Ye <shugaoye@yahoo.com>
Requires-Dist: mysharelib>=1.0.4
Requires-Dist: openbb>=4.7.0
Requires-Dist: openbb-akshare>=1.0.5
Requires-Dist: openbb-tushare>=1.0.0
Requires-Dist: uvicorn>=0.40.0
Requires-Python: >=3.11
Description-Content-Type: text/markdown

```bash
# traditional way to start the API directly
openbb-api --app main.py --exclude '"/api/v1/*"' --reload
```

```bash
openbb-api --app main.py --reload
openbb-api --app src/openbb_app/main.py --reload
```

# using uvx
You can also run the application using the `uvx` runner that comes with the
`uv` build system. This lets you invoke the same command from within the
project environment:

```bash
uvx run openbb-api --app src/openbb_app/main.py
# or simply
uvx openbb-api --app src/openbb_app/main.py
```

Start the virtual environment and run the following command to start the API:
```shell
uvicorn openbb_app.main:app
```