jpyforex


Namejpyforex JSON
Version 0.1 PyPI version JSON
download
home_page
Summaryjpyforex: Retrieve the exchange rate quoted in Japanese Yen (JPY).
upload_time2023-11-02 10:33:40
maintainer
docs_urlNone
author
requires_python>=3.10
licenseMIT License
keywords japanese yen
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # JPYForex

JPYForexは、ドル円、ユーロ円、人民元円の為替レートを手軽に取得できるPythonパッケージです。このツールは、pandas_datareaderを利用してFRED(セントルイス連銀のデータAPI)から最新の為替レートデータを取得し、それを円建ての価格に変換しています。

JPYForex is a Python package that allows you to easily retrieve exchange rates for USD/JPY, EUR/JPY, and CNY/JPY. This tool uses pandas_datareader to fetch the latest exchange rate data from FRED (Federal Reserve Bank of St. Louis Data API) and converts it into prices denominated in yen.

## 特徴 Features
- 簡単な操作:わずか数行のコードで、円建ての為替レートを取得できます。
- 多通貨対応:ドル円、ユーロ円、人民元円のレートをサポートしています。

- Easy to Use: With just a few lines of code, you can retrieve exchange rates denominated in yen.
- Supports Multiple Currencies: Supports rates for USD/JPY, EUR/JPY, and CNY/JPY.

## インストール

```
pip install jpyforex
```

```
pip install git+https://github.com/mazarimono/JPYForex.git
```

## 使い方(How to Use)

JPYForexの基本的な使用方法は以下の通りです。
The basic usage of JPYForex is as follows.

```python
from JPYForex import jpyforex
# 米ドル建ての日足データを5年分取得

usd = jpyforex.JPYForex()
df_usd = usd.get_data()

```

## ライセンス

MIT

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "jpyforex",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "Japanese Yen",
    "author": "",
    "author_email": "HideyukiO <hogawa098@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a3/09/37ee70cbf3174ebefdf6c2724788d9ebf311797a3eddc213f7b9bfffa27f/jpyforex-0.1.tar.gz",
    "platform": null,
    "description": "# JPYForex\n\nJPYForex\u306f\u3001\u30c9\u30eb\u5186\u3001\u30e6\u30fc\u30ed\u5186\u3001\u4eba\u6c11\u5143\u5186\u306e\u70ba\u66ff\u30ec\u30fc\u30c8\u3092\u624b\u8efd\u306b\u53d6\u5f97\u3067\u304d\u308bPython\u30d1\u30c3\u30b1\u30fc\u30b8\u3067\u3059\u3002\u3053\u306e\u30c4\u30fc\u30eb\u306f\u3001pandas_datareader\u3092\u5229\u7528\u3057\u3066FRED\uff08\u30bb\u30f3\u30c8\u30eb\u30a4\u30b9\u9023\u9280\u306e\u30c7\u30fc\u30bfAPI\uff09\u304b\u3089\u6700\u65b0\u306e\u70ba\u66ff\u30ec\u30fc\u30c8\u30c7\u30fc\u30bf\u3092\u53d6\u5f97\u3057\u3001\u305d\u308c\u3092\u5186\u5efa\u3066\u306e\u4fa1\u683c\u306b\u5909\u63db\u3057\u3066\u3044\u307e\u3059\u3002\n\nJPYForex is a Python package that allows you to easily retrieve exchange rates for USD/JPY, EUR/JPY, and CNY/JPY. This tool uses pandas_datareader to fetch the latest exchange rate data from FRED (Federal Reserve Bank of St. Louis Data API) and converts it into prices denominated in yen.\n\n## \u7279\u5fb4\u3000Features\n- \u7c21\u5358\u306a\u64cd\u4f5c\uff1a\u308f\u305a\u304b\u6570\u884c\u306e\u30b3\u30fc\u30c9\u3067\u3001\u5186\u5efa\u3066\u306e\u70ba\u66ff\u30ec\u30fc\u30c8\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059\u3002\n- \u591a\u901a\u8ca8\u5bfe\u5fdc\uff1a\u30c9\u30eb\u5186\u3001\u30e6\u30fc\u30ed\u5186\u3001\u4eba\u6c11\u5143\u5186\u306e\u30ec\u30fc\u30c8\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\n\n- Easy to Use: With just a few lines of code, you can retrieve exchange rates denominated in yen.\n- Supports Multiple Currencies: Supports rates for USD/JPY, EUR/JPY, and CNY/JPY.\n\n## \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\n```\npip install jpyforex\n```\n\n```\npip install git+https://github.com/mazarimono/JPYForex.git\n```\n\n## \u4f7f\u3044\u65b9(How to Use)\n\nJPYForex\u306e\u57fa\u672c\u7684\u306a\u4f7f\u7528\u65b9\u6cd5\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002\nThe basic usage of JPYForex is as follows.\n\n```python\nfrom JPYForex import jpyforex\n# \u7c73\u30c9\u30eb\u5efa\u3066\u306e\u65e5\u8db3\u30c7\u30fc\u30bf\u30925\u5e74\u5206\u53d6\u5f97\n\nusd = jpyforex.JPYForex()\ndf_usd = usd.get_data()\n\n```\n\n## \u30e9\u30a4\u30bb\u30f3\u30b9\n\nMIT\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "jpyforex: Retrieve the exchange rate quoted in Japanese Yen (JPY).",
    "version": "0.1",
    "project_urls": {
        "Repository": "https://github.com/mazarimono/JPYForex"
    },
    "split_keywords": [
        "japanese",
        "yen"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60377a6d388540f97929afefae5dfd1219345f97746710a26280a2e5eeb17842",
                "md5": "06b283f2917b6343049224029e028c7b",
                "sha256": "39819645892fae658bf015729c07848775dac7ab092a7d211d48773b26ec45b4"
            },
            "downloads": -1,
            "filename": "jpyforex-0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "06b283f2917b6343049224029e028c7b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 4447,
            "upload_time": "2023-11-02T10:33:39",
            "upload_time_iso_8601": "2023-11-02T10:33:39.449984Z",
            "url": "https://files.pythonhosted.org/packages/60/37/7a6d388540f97929afefae5dfd1219345f97746710a26280a2e5eeb17842/jpyforex-0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a30937ee70cbf3174ebefdf6c2724788d9ebf311797a3eddc213f7b9bfffa27f",
                "md5": "482a38c38d487555be860d6267447e0f",
                "sha256": "dbb519f3214b54fd7af272bb10b1ba0a10faf9aa050aac356bae7e914de757e0"
            },
            "downloads": -1,
            "filename": "jpyforex-0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "482a38c38d487555be860d6267447e0f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 4977,
            "upload_time": "2023-11-02T10:33:40",
            "upload_time_iso_8601": "2023-11-02T10:33:40.725497Z",
            "url": "https://files.pythonhosted.org/packages/a3/09/37ee70cbf3174ebefdf6c2724788d9ebf311797a3eddc213f7b9bfffa27f/jpyforex-0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-02 10:33:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mazarimono",
    "github_project": "JPYForex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "jpyforex"
}
        
Elapsed time: 0.13431s