Metadata-Version: 2.1
Name: pyfolio-performance
Version: 0.1.3
Summary: Portfolio Performance library
Home-page: https://pyfolio-performance.readthedocs.io/
Author: Fabian Bendun
Author-email: pyfolio-performance@bendun.io
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: et-xmlfile

# pyfolio-performance
A python library to read in your portfolio performance XML-file.


## Installation


pip install pyfolio-performance 


## Get started

This is a small example for loading a portfolio performance file and getting account information.

### Looking into Accounts


from pyfolio-performance import Portfolio

portfolio = Portfolio("portfolio.xml")
print(portfolio.getAccounts())


The result will look like:

[]



### Looking into Depots

You can also display the securities in a Depot.


from pyfolio-performance import Portfolio

portfolio = Portfolio("portfolio.xml")
print(portfolio.getDepots())


The result will look like:

[Depot/Comdirect, Depot/Consorsbank]


