# PFund: A Complete Algo-Trading Framework powered by Machine Learning and Data Engineering, TradFi, CeFi and DeFi ready.
[![Twitter Follow](https://img.shields.io/twitter/follow/pfund_ai?style=social)](https://x.com/pfund_ai)
![GitHub stars](https://img.shields.io/github/stars/PFund-Software-Ltd/pfund?style=social)
![PyPI downloads](https://img.shields.io/pypi/dm/pfund)
[![PyPI](https://img.shields.io/pypi/v/pfund.svg)](https://pypi.org/project/pfund)
![PyPI - Support Python Versions](https://img.shields.io/pypi/pyversions/pfund)
[![marimo](https://marimo.io/shield.svg)](https://marimo.io)
<!-- [![Jupyter Book Badge](https://raw.githubusercontent.com/PFund-Software-Ltd/pfund/main/docs/images/jupyterbook.svg
)](https://jupyterbook.org) -->
<!-- [![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) -->
[TradFi]: https://www.techopedia.com/definition/traditional-finance-tradfi
[CeFi]: https://www.techopedia.com/definition/centralized-finance-cefi
[DeFi]: https://www.coinbase.com/learn/crypto-basics/what-is-defi
[pytrade.org]: https://pytrade.org
[dYdX]: https://dydx.exchange
[polars]: https://pola.rs/
[PFund.ai]: https://pfund.ai
[PFeed]: https://github.com/PFund-Software-Ltd/pfeed
[Bybit]: https://bybit.com/
[PyTorch]: https://pytorch.org/
[Poetry]: https://python-poetry.org
[Futu]: https://www.futunn.com
[FirstRate Data]: https://firstratedata.com
[Mantine UI]: https://ui.mantine.dev/
## Problem
Machine learning (**AI**) and data engineering (**Big Data**) fields are advancing every year, but everyday traders are **not able to enjoy the benefits** of these improvements, leading to a **widening gap** between retail traders and professional traders.
## Solution
A modern algo-trading framework is needed to **bridge the gap** between algo-trading, machine learning and data engineering, empowering retail traders with state-of-the-art machine learning models and data engineering tools so that traders only need to focus on strategy research and the framework takes care of the rest.
---
PFund (/piΛ fΚnd/), which stands for "**Personal Fund**", is an **algo-trading framework** designed for using **machine learning** models natively to trade across [TradFi] (Traditional Finance, e.g. **Interactive Brokers**), [CeFi] (Centralized Finance, e.g. Binance) and [DeFi] (Decentralized Finance, e.g. [dYdX]), or in simple terms, **Stocks** and **Cryptos**.
## Core Features
- [x] Supports vectorized and event-driven backtesting with different resolutions of data, e.g. tick data, second data and minute data etc.
- [x] Allows choosing your preferred data tool, e.g. pandas, polars, pyspark etc.
- [x] Supports machine learning models, features, technical analysis indicators
- [x] Trains machine learning models using your favorite frameworks, i.e. PFund is **ML-framework agnostic**
- [x] Offers **LEGO-style** strategy and model building, allowing strategies to add other strategies, models to add other models
- [x] Streamlines the algo-trading flow, from vectorized backtesting for strategy prototyping and event-driven backtesting for strategy development, to live trading for strategy deployment
- [x] Enables parallel data processing, e.g. Interactive Brokers and Binance each have their own process for receiving data feeds
- [x] Switches from backtesting to live trading by just changing **ONE line of code!!**
- [ ] Features a modern frontend using [Mantine UI] and TradingView's Charts library
- [ ] Supports manual/semi-manual trading via a trading app
> As PFund is for trading only, for all the data workloads, there is a separate library to handle that:\
[PFeed] - Data pipeline for algo-trading, helping traders in getting real-time and historical data, and storing them in a local data lake for quantitative research.
---
<details>
<summary>Table of Contents</summary>
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Backtesting](#backtesting)
- [Live Trading](#live-trading)
- [Parameter Training / Hyperparameter Tuning](#parameter-training--hyperparameter-tuning)
- [Building LEGO-Style Strategy and Model](#building-lego-style-strategy-and-model)
- [PFund Hub](#pfund-hub)
- [Supported Trading Venues](#supported-trading-venues)
- [Related Projects](#related-projects)
- [Disclaimer](#disclaimer)
</details>
## Installation
### Using [Poetry] (Recommended)
```bash
# [RECOMMENDED]: Trading + Backtesting + Machine Learning + Feature Engineering (e.g. feast, tsfresh, ta) + Analytics
poetry add "pfund[all]"
# [Trading + Backtesting + Machine Learning + Feature Engineering]:
poetry add "pfund[data,ml,fe]"
# [Trading + Backtesting + Machine Learning]:
poetry add "pfund[data,ml]"
# [Trading + Backtesting]:
poetry add "pfund[data]"
# [Trading only]:
poetry add pfund
# update to the latest version:
poetry update pfund
```
### Using Pip
```bash
# same as above, you can choose to install "pfund[all]", "pfund[data,ml,fe]", "pfund[data,ml]", "pfund[data]" or "pfund"
pip install "pfund[all]"
# install the latest version:
pip install -U pfund
```
### Checking your installation
```bash
$ pfund --version
```
## Quick Start
### Backtesting
```python
import pfund as pf
# NOTE: for more exciting strategies, please visit pfund.ai
class YourStrategy(pf.Strategy):
# triggered by bar/kline data (e.g. 1-minute data)
def on_bar(self):
# write your trading logic here
pass
engine = pf.BacktestEngine(mode='vectorized')
strategy = engine.add_strategy(YourStrategy(), name='your_strategy')
strategy.add_data(
'IB', 'AAPL', 'USD', 'STK', resolutions=['1d'],
backtest={
# NOTE: since IB does not provide any historical data for backtesting purpose, use data from 'YAHOO_FINANCE'
'data_source': 'YAHOO_FINANCE',
'start_date': '2024-01-01',
'end_date': '2024-02-01',
}
)
engine.run()
```
### Live Trading
> Just change one line of code, from '**BacktestEngine**' to '**TradeEngine**'. BOOM! you can now start live trading.
```python
import pfund as pf
engine = pf.TradeEngine(env='LIVE')
strategy = engine.add_strategy(YourStrategy(), name='your_strategy')
strategy.add_data(
'IB', 'AAPL', 'USD', 'STK', resolutions=['1d'],
# for convenience, you can keep the kwarg `backtest`, `TradeEngine` will ignore it
backtest={
# NOTE: since IB does not provide any historical data for backtesting purpose, use data from 'YAHOO_FINANCE'
'data_source': 'YAHOO_FINANCE',
'start_date': '2024-01-01',
'end_date': '2024-02-01',
}
)
engine.run()
```
### Parameter Training / Hyperparameter Tuning
> The correct term should be "Hyperparameter Tuning", but since not all traders are familiar with machine learning, the framework uses a more well-known term "training".
```python
import pfund as pf
engine = pf.TrainEngine()
strategy = engine.add_strategy(...)
strategy.add_data(...)
strategy.add_indicator(...)
engine.run()
```
### Building LEGO-Style Strategy and Model
```python
import pfund as pf
engine = pf.TradeEngine(env='LIVE')
strategy = engine.add_strategy(...)
strategy.add_data(...)
model = strategy.add_model(...)
model.add_data(...) # using different data than strategy's
sub_model = model.add_model(...) # YES, model can add another model to its use
# You can keep going:
# sub_sub_model = sub_model.add_model(...)
engine.run()
```
## PFund Hub
Imagine a space where algo-traders can share their trading strategies and machine learning models with one another.
Strategy and model development could be so much faster since you can build on top of an existing working model.
---
## Supported Trading Venues
| Trading Venue | Vectorized Backtesting | Event-Driven Backtesting | Paper Trading | Live Trading |
| ------------------------- | ---------------------- | ------------------------ | ------------- | ------------ |
| Bybit | π’ | π‘ | π‘ | π‘ |
| *Interactive Brokers (IB) | π‘ | π‘ | π‘ | π‘ |
| Binance | π΄ | π΄ | π΄ | π΄ |
| OKX | π΄ | π΄ | π΄ | π΄ |
| *Alpaca | π΄ | π΄ | π΄ | π΄ |
| *[Futu] | π΄ | π΄ | π΄ | π΄ |
| dYdX | π΄ | π΄ | π΄ | π΄ |
π’ = finished \
π‘ = in progress \
π΄ = todo \
\* = use a **_separate data source_** (e.g. [FirstRate Data]) for backtesting
## Related Projects
- [PFeed] β Data pipeline for algo-trading, helping traders in getting real-time and historical data, and storing them in a local data lake for quantitative research.
- [PyTrade.org] - A curated list of Python libraries and resources for algorithmic trading.
## Disclaimer
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This algo-trading framework is intended for educational and research purposes only. It should not be used for real trading without understanding the risks involved. Trading in financial markets involves significant risk, and there is always the potential for loss. Your trading results may vary. No representation is being made that any account will or is likely to achieve profits or losses similar to those discussed on this platform.
The developers of this framework are not responsible for any financial losses incurred from using this software. Users should conduct their due diligence and consult with a professional financial advisor before engaging in real trading activities.
Raw data
{
"_id": null,
"home_page": "https://pfund.ai",
"name": "pfund",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.10",
"maintainer_email": null,
"keywords": "trading, algo-trading, stocks, cryptos, cryptocurrencies, TradFi, CeFi, DeFi, portfolio management, investment, backtesting, machine learning",
"author": "Stephen Yau",
"author_email": "softwareentrepreneer+pfund@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/af/02/f72ce93c9afa4521d44f9648a9a49fb575c485ff85404aef81a159dc17ba/pfund-0.0.2.tar.gz",
"platform": null,
"description": "# PFund: A Complete Algo-Trading Framework powered by Machine Learning and Data Engineering, TradFi, CeFi and DeFi ready.\n\n[![Twitter Follow](https://img.shields.io/twitter/follow/pfund_ai?style=social)](https://x.com/pfund_ai)\n![GitHub stars](https://img.shields.io/github/stars/PFund-Software-Ltd/pfund?style=social)\n![PyPI downloads](https://img.shields.io/pypi/dm/pfund)\n[![PyPI](https://img.shields.io/pypi/v/pfund.svg)](https://pypi.org/project/pfund)\n![PyPI - Support Python Versions](https://img.shields.io/pypi/pyversions/pfund)\n[![marimo](https://marimo.io/shield.svg)](https://marimo.io)\n<!-- [![Jupyter Book Badge](https://raw.githubusercontent.com/PFund-Software-Ltd/pfund/main/docs/images/jupyterbook.svg\n)](https://jupyterbook.org) -->\n<!-- [![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) -->\n\n[TradFi]: https://www.techopedia.com/definition/traditional-finance-tradfi\n[CeFi]: https://www.techopedia.com/definition/centralized-finance-cefi\n[DeFi]: https://www.coinbase.com/learn/crypto-basics/what-is-defi\n[pytrade.org]: https://pytrade.org\n[dYdX]: https://dydx.exchange\n[polars]: https://pola.rs/\n[PFund.ai]: https://pfund.ai\n[PFeed]: https://github.com/PFund-Software-Ltd/pfeed\n[Bybit]: https://bybit.com/\n[PyTorch]: https://pytorch.org/\n[Poetry]: https://python-poetry.org\n[Futu]: https://www.futunn.com\n[FirstRate Data]: https://firstratedata.com\n[Mantine UI]: https://ui.mantine.dev/\n\n## Problem\nMachine learning (**AI**) and data engineering (**Big Data**) fields are advancing every year, but everyday traders are **not able to enjoy the benefits** of these improvements, leading to a **widening gap** between retail traders and professional traders.\n\n## Solution\nA modern algo-trading framework is needed to **bridge the gap** between algo-trading, machine learning and data engineering, empowering retail traders with state-of-the-art machine learning models and data engineering tools so that traders only need to focus on strategy research and the framework takes care of the rest.\n\n---\nPFund (/pi\u02d0 f\u028cnd/), which stands for \"**Personal Fund**\", is an **algo-trading framework** designed for using **machine learning** models natively to trade across [TradFi] (Traditional Finance, e.g. **Interactive Brokers**), [CeFi] (Centralized Finance, e.g. Binance) and [DeFi] (Decentralized Finance, e.g. [dYdX]), or in simple terms, **Stocks** and **Cryptos**.\n\n## Core Features\n- [x] Supports vectorized and event-driven backtesting with different resolutions of data, e.g. tick data, second data and minute data etc.\n- [x] Allows choosing your preferred data tool, e.g. pandas, polars, pyspark etc.\n- [x] Supports machine learning models, features, technical analysis indicators\n- [x] Trains machine learning models using your favorite frameworks, i.e. PFund is **ML-framework agnostic**\n- [x] Offers **LEGO-style** strategy and model building, allowing strategies to add other strategies, models to add other models\n- [x] Streamlines the algo-trading flow, from vectorized backtesting for strategy prototyping and event-driven backtesting for strategy development, to live trading for strategy deployment\n- [x] Enables parallel data processing, e.g. Interactive Brokers and Binance each have their own process for receiving data feeds\n- [x] Switches from backtesting to live trading by just changing **ONE line of code!!**\n- [ ] Features a modern frontend using [Mantine UI] and TradingView's Charts library\n- [ ] Supports manual/semi-manual trading via a trading app\n\n> As PFund is for trading only, for all the data workloads, there is a separate library to handle that:\\\n[PFeed] - Data pipeline for algo-trading, helping traders in getting real-time and historical data, and storing them in a local data lake for quantitative research.\n\n---\n\n<details>\n<summary>Table of Contents</summary>\n\n- [Installation](#installation)\n- [Quick Start](#quick-start)\n - [Backtesting](#backtesting)\n - [Live Trading](#live-trading)\n - [Parameter Training / Hyperparameter Tuning](#parameter-training--hyperparameter-tuning)\n - [Building LEGO-Style Strategy and Model](#building-lego-style-strategy-and-model)\n- [PFund Hub](#pfund-hub)\n- [Supported Trading Venues](#supported-trading-venues)\n- [Related Projects](#related-projects)\n- [Disclaimer](#disclaimer)\n\n</details>\n\n\n## Installation\n\n### Using [Poetry] (Recommended)\n```bash\n# [RECOMMENDED]: Trading + Backtesting + Machine Learning + Feature Engineering (e.g. feast, tsfresh, ta) + Analytics\npoetry add \"pfund[all]\"\n\n# [Trading + Backtesting + Machine Learning + Feature Engineering]:\npoetry add \"pfund[data,ml,fe]\"\n\n# [Trading + Backtesting + Machine Learning]:\npoetry add \"pfund[data,ml]\"\n\n# [Trading + Backtesting]:\npoetry add \"pfund[data]\"\n\n# [Trading only]:\npoetry add pfund\n\n# update to the latest version:\npoetry update pfund\n```\n\n### Using Pip\n```bash\n# same as above, you can choose to install \"pfund[all]\", \"pfund[data,ml,fe]\", \"pfund[data,ml]\", \"pfund[data]\" or \"pfund\"\npip install \"pfund[all]\"\n\n# install the latest version:\npip install -U pfund\n```\n\n### Checking your installation\n```bash\n$ pfund --version\n```\n\n\n## Quick Start\n### Backtesting\n```python\nimport pfund as pf\n\n# NOTE: for more exciting strategies, please visit pfund.ai\nclass YourStrategy(pf.Strategy):\n # triggered by bar/kline data (e.g. 1-minute data)\n def on_bar(self):\n # write your trading logic here\n pass\n\n\nengine = pf.BacktestEngine(mode='vectorized')\nstrategy = engine.add_strategy(YourStrategy(), name='your_strategy')\nstrategy.add_data(\n 'IB', 'AAPL', 'USD', 'STK', resolutions=['1d'],\n backtest={\n # NOTE: since IB does not provide any historical data for backtesting purpose, use data from 'YAHOO_FINANCE'\n 'data_source': 'YAHOO_FINANCE',\n 'start_date': '2024-01-01',\n 'end_date': '2024-02-01',\n }\n)\nengine.run()\n```\n\n\n### Live Trading\n> Just change one line of code, from '**BacktestEngine**' to '**TradeEngine**'. BOOM! you can now start live trading.\n```python\nimport pfund as pf\n\nengine = pf.TradeEngine(env='LIVE')\nstrategy = engine.add_strategy(YourStrategy(), name='your_strategy')\nstrategy.add_data(\n 'IB', 'AAPL', 'USD', 'STK', resolutions=['1d'],\n # for convenience, you can keep the kwarg `backtest`, `TradeEngine` will ignore it\n backtest={\n # NOTE: since IB does not provide any historical data for backtesting purpose, use data from 'YAHOO_FINANCE'\n 'data_source': 'YAHOO_FINANCE',\n 'start_date': '2024-01-01',\n 'end_date': '2024-02-01',\n }\n)\nengine.run()\n```\n\n### Parameter Training / Hyperparameter Tuning\n> The correct term should be \"Hyperparameter Tuning\", but since not all traders are familiar with machine learning, the framework uses a more well-known term \"training\".\n\n```python\nimport pfund as pf\n\nengine = pf.TrainEngine()\nstrategy = engine.add_strategy(...)\nstrategy.add_data(...)\nstrategy.add_indicator(...)\nengine.run()\n```\n\n### Building LEGO-Style Strategy and Model\n```python\nimport pfund as pf\n\nengine = pf.TradeEngine(env='LIVE')\nstrategy = engine.add_strategy(...)\nstrategy.add_data(...)\nmodel = strategy.add_model(...)\n\nmodel.add_data(...) # using different data than strategy's\nsub_model = model.add_model(...) # YES, model can add another model to its use\n# You can keep going: \n# sub_sub_model = sub_model.add_model(...)\n\nengine.run()\n```\n\n\n## PFund Hub\nImagine a space where algo-traders can share their trading strategies and machine learning models with one another.\nStrategy and model development could be so much faster since you can build on top of an existing working model.\n\n\n---\n\n## Supported Trading Venues\n| Trading Venue | Vectorized Backtesting | Event-Driven Backtesting | Paper Trading | Live Trading |\n| ------------------------- | ---------------------- | ------------------------ | ------------- | ------------ |\n| Bybit | \ud83d\udfe2 | \ud83d\udfe1 | \ud83d\udfe1 | \ud83d\udfe1 |\n| *Interactive Brokers (IB) | \ud83d\udfe1 | \ud83d\udfe1 | \ud83d\udfe1 | \ud83d\udfe1 |\n| Binance | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 |\n| OKX | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 |\n| *Alpaca | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 |\n| *[Futu] | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 |\n| dYdX | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 | \ud83d\udd34 |\n\n\ud83d\udfe2 = finished \\\n\ud83d\udfe1 = in progress \\\n\ud83d\udd34 = todo \\\n\\* = use a **_separate data source_** (e.g. [FirstRate Data]) for backtesting\n\n\n## Related Projects\n- [PFeed] \u2014 Data pipeline for algo-trading, helping traders in getting real-time and historical data, and storing them in a local data lake for quantitative research.\n- [PyTrade.org] - A curated list of Python libraries and resources for algorithmic trading.\n\n\n## Disclaimer\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nThis algo-trading framework is intended for educational and research purposes only. It should not be used for real trading without understanding the risks involved. Trading in financial markets involves significant risk, and there is always the potential for loss. Your trading results may vary. No representation is being made that any account will or is likely to achieve profits or losses similar to those discussed on this platform.\n\nThe developers of this framework are not responsible for any financial losses incurred from using this software. Users should conduct their due diligence and consult with a professional financial advisor before engaging in real trading activities.",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "A Complete Algo-Trading Framework for Machine Learning, enabling trading across TradFi, CeFi and DeFi. Supports Vectorized and Event-Driven Backtesting, Paper and Live Trading",
"version": "0.0.2",
"project_urls": {
"Documentation": "https://pfund-docs.pfund.ai",
"Homepage": "https://pfund.ai",
"Repository": "https://github.com/PFund-Software-Ltd/pfund"
},
"split_keywords": [
"trading",
" algo-trading",
" stocks",
" cryptos",
" cryptocurrencies",
" tradfi",
" cefi",
" defi",
" portfolio management",
" investment",
" backtesting",
" machine learning"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a3e7c5512708fd736e2e304d7e3ab71f727a8d9330bf7e9abc3b50b9479b8e6a",
"md5": "b1fb79ddbaac568273faacb7eb985354",
"sha256": "fb858d4b6fb9d868c862639c63bf564cd4c823dfdf1f2ff385c887bac8d626d0"
},
"downloads": -1,
"filename": "pfund-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b1fb79ddbaac568273faacb7eb985354",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.10",
"size": 305311,
"upload_time": "2024-10-18T05:08:21",
"upload_time_iso_8601": "2024-10-18T05:08:21.247057Z",
"url": "https://files.pythonhosted.org/packages/a3/e7/c5512708fd736e2e304d7e3ab71f727a8d9330bf7e9abc3b50b9479b8e6a/pfund-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af02f72ce93c9afa4521d44f9648a9a49fb575c485ff85404aef81a159dc17ba",
"md5": "69b1216bf38224e92fcca7b8f5cf81da",
"sha256": "e42fb431b07176804525fa43e9763ec2b486c2fd779b4f6eb54fdacbb7ce7040"
},
"downloads": -1,
"filename": "pfund-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "69b1216bf38224e92fcca7b8f5cf81da",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.10",
"size": 245991,
"upload_time": "2024-10-18T05:08:22",
"upload_time_iso_8601": "2024-10-18T05:08:22.889295Z",
"url": "https://files.pythonhosted.org/packages/af/02/f72ce93c9afa4521d44f9648a9a49fb575c485ff85404aef81a159dc17ba/pfund-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-18 05:08:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "PFund-Software-Ltd",
"github_project": "pfund",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pfund"
}