Skip to content

ms32035/ghostfolio-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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")