Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 494 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 494 Bytes

Rest API client for Ghostfolio

Unofficial REST API for Ghostfolio.

Supports documented and undocumented APIs

Installation

pip install ghostfolio

Usage

from ghostfolio import Ghostfolio

client = Ghostfolio(token="your_token")

Or if you want to connect to your self-hosted Ghostfolio instance:

from ghostfolio import Ghostfolio

client = Ghostfolio(token="your_token", host="https://your-ghostfolio-instance.com")