Source code for personalcapital
from personalcapital.exceptions import (
RequireTwoFactorException,
LoginFailedException
)
from personalcapital.connection import *
from .version import __version__
[docs]class Endpoint:
BILL_REMINDERS = '/account/getBillReminders'
GET_HISTORIES = '/account/getHistories'
GET_HOLDINGS = '/invest/getHoldings'
GET_MESSAGES = '/message/getUserMessages'
GET_PERSON = '/person/getPerson'
GET_CATEGORIES = '/transactioncategory/getCategories'