Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickderobertis/py-finstmt
Python package for working with financial statement data
https://github.com/nickderobertis/py-finstmt
Last synced: about 1 month ago
JSON representation
Python package for working with financial statement data
- Host: GitHub
- URL: https://github.com/nickderobertis/py-finstmt
- Owner: nickderobertis
- License: mit
- Created: 2019-11-13T18:19:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T15:31:21.000Z (6 months ago)
- Last Synced: 2024-11-24T23:07:15.632Z (2 months ago)
- Language: Jupyter Notebook
- Size: 10.2 MB
- Stars: 16
- Watchers: 3
- Forks: 9
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![](https://codecov.io/gh/nickderobertis/py-finstmt/branch/master/graph/badge.svg)](https://codecov.io/gh/nickderobertis/py-finstmt)
[![PyPI](https://img.shields.io/pypi/v/finstmt)](https://pypi.org/project/finstmt/)
![PyPI - License](https://img.shields.io/pypi/l/finstmt)
[![Documentation](https://img.shields.io/badge/documentation-pass-green)](https://nickderobertis.github.io/py-finstmt/)
![Tests Run on Ubuntu Python Versions](https://img.shields.io/badge/Tests%20Ubuntu%2FPython-3.8%20%7C%203.9%20%7C%203.10-blue)
![Tests Run on Macos Python Versions](https://img.shields.io/badge/Tests%20Macos%2FPython-3.8%20%7C%203.9%20%7C%203.10-blue)
![Tests Run on Windows Python Versions](https://img.shields.io/badge/Tests%20Windows%2FPython-3.8%20%7C%203.9%20%7C%203.10-blue)
[![Github Repo](https://img.shields.io/badge/repo-github-informational)](https://github.com/nickderobertis/py-finstmt/)# py-finstmt
## Overview
Contains classes to work with financial statement data. Can calculate free cash flows and help project financial statements.
## Getting Started
Install `finstmt`:
```
pip install finstmt
```A simple example:
```python
from finstmt import BalanceSheets, IncomeStatements, FinancialStatements
import pandas as pdbs_path = r'WMT Balance Sheet.xlsx'
inc_path = r'WMT Income Statement.xlsx'
bs_df = pd.read_excel(bs_path)
inc_df = pd.read_excel(inc_path)
bs_data = BalanceSheets.from_df(bs_df)
inc_data = IncomeStatements.from_df(inc_df)
stmts = FinancialStatements(inc_data, bs_data)
```See a
[more in-depth tutorial here.](
https://nickderobertis.github.io/py-finstmt/tutorial.html
)## Links
See the
[documentation here.](
https://nickderobertis.github.io/py-finstmt/
)## Development Status
This project is currently in early-stage development. There may be
breaking changes often. While the major version is 0, minor version
upgrades will often have breaking changes.## Developing
See the [development guide](
https://github.com/nickderobertis/py-finstmt/blob/master/DEVELOPING.md
) for development details.## Author
Created by Nick DeRobertis. MIT License.