pd-fred


Namepd-fred JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/yourusername/pd_fred
SummaryPython package to calculate Probability of Default using FRED data.
upload_time2024-10-24 13:09:53
maintainerNone
docs_urlNone
authorYour Name
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pd_fred

A Python package for calculating the Probability of Default (PD) using FRED data.

## Installation
```bash
pip install pd_fred
```

## Usage
```python
from pd_fred import DataFetcher, PDefaultCalculator

# Fetch data
fetcher = DataFetcher(api_key='your_fred_api_key')
data = fetcher.get_data('DGS10')

# Calculate PD using the Merton model
pd_value = PDefaultCalculator.calculate_merton_model(
    asset_value=100, debt_value=80, asset_volatility=0.2, risk_free_rate=0.01, time_horizon=1
)
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/yourusername/pd_fred",
    "name": "pd-fred",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Your Name",
    "author_email": "your.email@example.com",
    "download_url": "https://files.pythonhosted.org/packages/bf/2d/1ebf4f2c758345d8efddb5d4567918097dabcd98d8146bd1226e4e61db98/pd_fred-0.1.0.tar.gz",
    "platform": null,
    "description": "# pd_fred\n\nA Python package for calculating the Probability of Default (PD) using FRED data.\n\n## Installation\n```bash\npip install pd_fred\n```\n\n## Usage\n```python\nfrom pd_fred import DataFetcher, PDefaultCalculator\n\n# Fetch data\nfetcher = DataFetcher(api_key='your_fred_api_key')\ndata = fetcher.get_data('DGS10')\n\n# Calculate PD using the Merton model\npd_value = PDefaultCalculator.calculate_merton_model(\n    asset_value=100, debt_value=80, asset_volatility=0.2, risk_free_rate=0.01, time_horizon=1\n)\n```\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python package to calculate Probability of Default using FRED data.",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/yourusername/pd_fred"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5d45b5af1ec59c0cc507ba2fe128e90b8bd41324ab1502eb56d8702f03df84f",
                "md5": "8ba6d3a960e1a67ecbe4d1b508d116cf",
                "sha256": "4420fd84306697159d07b8997c059acf79d38b779d6c92526a4149825ac8efef"
            },
            "downloads": -1,
            "filename": "pd_fred-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8ba6d3a960e1a67ecbe4d1b508d116cf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4592,
            "upload_time": "2024-10-24T13:09:52",
            "upload_time_iso_8601": "2024-10-24T13:09:52.612317Z",
            "url": "https://files.pythonhosted.org/packages/d5/d4/5b5af1ec59c0cc507ba2fe128e90b8bd41324ab1502eb56d8702f03df84f/pd_fred-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf2d1ebf4f2c758345d8efddb5d4567918097dabcd98d8146bd1226e4e61db98",
                "md5": "bb581546a48b4773b8f6103182a2c159",
                "sha256": "e500b5d76c410bf80bf2b9a2d973a18978c6fc617046a73f28f221b59d0ad355"
            },
            "downloads": -1,
            "filename": "pd_fred-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bb581546a48b4773b8f6103182a2c159",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 3201,
            "upload_time": "2024-10-24T13:09:53",
            "upload_time_iso_8601": "2024-10-24T13:09:53.811300Z",
            "url": "https://files.pythonhosted.org/packages/bf/2d/1ebf4f2c758345d8efddb5d4567918097dabcd98d8146bd1226e4e61db98/pd_fred-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-24 13:09:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yourusername",
    "github_project": "pd_fred",
    "github_not_found": true,
    "lcname": "pd-fred"
}
        
Elapsed time: 0.43602s