metalpriceapi


Namemetalpriceapi JSON
Version 1.0.4 PyPI version JSON
download
home_pagehttps://github.com/metalpriceapi/metalpriceapi-python
SummaryOfficial Python wrapper for metalpriceapi.com
upload_time2024-02-22 02:38:37
maintainer
docs_urlNone
authorMetalpriceAPI
requires_python
license
keywords currency metal price exchangerate rates
VCS
bugtrack_url
requirements requests
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # metalpriceapi

metalpriceapi is the official Python wrapper for MetalpriceAPI.com. This allows you to quickly integrate our metal price API and foreign exchange rate API into your application. Check https://metalpriceapi.com documentation for more information.

## Installation

Install the latest release with:


    pip install metalpriceapi

## Usage

```python
from metalpriceapi.client import Client

api_key = 'SET_YOUR_API_KEY_HERE'
client = Client(api_key)
```
---
## Documentation

#### fetchSymbols()
```python
client.fetchSymbols()
```

[Link](https://metalpriceapi.com/documentation#api_symbol)

---
#### fetchLive(base, currencies)

- `base` <[string]> Optional. Pass in a base currency, defaults to USD.
- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.

```python
client.fetchLive(base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])
```

[Link](https://metalpriceapi.com/documentation#api_realtime)

---
#### fetchHistorical(date, base, currencies)

- `date` <[string]> Required. Pass in a string with format `YYYY-MM-DD`
- `base` <[string]> Optional. Pass in a base currency, defaults to USD.
- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.

```python
client.fetchHistorical(date='2024-02-05', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])
```

[Link](https://metalpriceapi.com/documentation#api_historical)

---
#### convert(from_currency, to_currency, amount, date)

- `from_currency` <[string]> Optional. Pass in a base currency, defaults to USD.
- `to_currency` <[string]> Required. Specify currency you would like to convert to.
- `amount` <[number]> Required. The amount to convert.
- `date` <[string]> Optional. Specify date to use historical midpoint value for conversion with format `YYYY-MM-DD`. Otherwise, it will use live exchange rate date if value not passed in.

```python
client.convert(from_currency='USD', to_currency='EUR', amount=100, date='2024-02-05')
```

[Link](https://metalpriceapi.com/documentation#api_convert)

---
#### timeframe(start_date, end_date, base, currencies)

- `start_date` <[string]> Required. Specify the start date of your timeframe using the format `YYYY-MM-DD`.
- `end_date` <[string]> Required. Specify the end date of your timeframe using the format `YYYY-MM-DD`.
- `base` <[string]> Optional. Pass in a base currency, defaults to USD.
- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.

```python
client.timeframe(start_date='2024-02-05', end_date='2024-02-06', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])
```

[Link](https://metalpriceapi.com/documentation#api_timeframe)

---
#### change(start_date, end_date, base, currencies)

- `start_date` <[string]> Required. Specify the start date of your timeframe using the format `YYYY-MM-DD`.
- `end_date` <[string]> Required. Specify the end date of your timeframe using the format `YYYY-MM-DD`.
- `base` <[string]> Optional. Pass in a base currency, defaults to USD.
- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.

```python
client.change(start_date='2024-02-05', end_date='2024-02-06', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])
```

[Link](https://metalpriceapi.com/documentation#api_change)

---
#### carat(base, date)

- `base` <[string]> Optional. Pass in a base currency, defaults to USD.
- `date` <[string]> Optional. Specify date to get Carat for specific date using format `YYYY-MM-DD`. If not specified, uses live rates.

```python
client.carat(base='USD', date='2024-02-05')
```

[Link](https://metalpriceapi.com/documentation#api_carat)

---
**[Official documentation](https://metalpriceapi.com/documentation)**


---
## FAQ

- How do I get an API Key?

    Free API Keys are available [here](https://metalpriceapi.com).

- I want more information

    Checkout our FAQs [here](https://metalpriceapi.com/faq).


## Support

For support, get in touch using [this form](https://metalpriceapi.com/contact).


[List]: https://www.w3schools.com/python/python_datatypes.asp 'List'
[number]: https://www.w3schools.com/python/python_datatypes.asp 'Number'
[string]: https://www.w3schools.com/python/python_datatypes.asp 'String'

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/metalpriceapi/metalpriceapi-python",
    "name": "metalpriceapi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "currency,metal price,exchangerate,rates",
    "author": "MetalpriceAPI",
    "author_email": "contact@metalpriceapi.com",
    "download_url": "https://files.pythonhosted.org/packages/6b/24/4310d97456cd77386c3e360660dbed272b460b081d124523639a16d5c9a9/metalpriceapi-1.0.4.tar.gz",
    "platform": null,
    "description": "# metalpriceapi\n\nmetalpriceapi is the official Python wrapper for MetalpriceAPI.com. This allows you to quickly integrate our metal price API and foreign exchange rate API into your application. Check https://metalpriceapi.com documentation for more information.\n\n## Installation\n\nInstall the latest release with:\n\n\n    pip install metalpriceapi\n\n## Usage\n\n```python\nfrom metalpriceapi.client import Client\n\napi_key = 'SET_YOUR_API_KEY_HERE'\nclient = Client(api_key)\n```\n---\n## Documentation\n\n#### fetchSymbols()\n```python\nclient.fetchSymbols()\n```\n\n[Link](https://metalpriceapi.com/documentation#api_symbol)\n\n---\n#### fetchLive(base, currencies)\n\n- `base` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.\n\n```python\nclient.fetchLive(base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])\n```\n\n[Link](https://metalpriceapi.com/documentation#api_realtime)\n\n---\n#### fetchHistorical(date, base, currencies)\n\n- `date` <[string]> Required. Pass in a string with format `YYYY-MM-DD`\n- `base` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.\n\n```python\nclient.fetchHistorical(date='2024-02-05', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])\n```\n\n[Link](https://metalpriceapi.com/documentation#api_historical)\n\n---\n#### convert(from_currency, to_currency, amount, date)\n\n- `from_currency` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `to_currency` <[string]> Required. Specify currency you would like to convert to.\n- `amount` <[number]> Required. The amount to convert.\n- `date` <[string]> Optional. Specify date to use historical midpoint value for conversion with format `YYYY-MM-DD`. Otherwise, it will use live exchange rate date if value not passed in.\n\n```python\nclient.convert(from_currency='USD', to_currency='EUR', amount=100, date='2024-02-05')\n```\n\n[Link](https://metalpriceapi.com/documentation#api_convert)\n\n---\n#### timeframe(start_date, end_date, base, currencies)\n\n- `start_date` <[string]> Required. Specify the start date of your timeframe using the format `YYYY-MM-DD`.\n- `end_date` <[string]> Required. Specify the end date of your timeframe using the format `YYYY-MM-DD`.\n- `base` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.\n\n```python\nclient.timeframe(start_date='2024-02-05', end_date='2024-02-06', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])\n```\n\n[Link](https://metalpriceapi.com/documentation#api_timeframe)\n\n---\n#### change(start_date, end_date, base, currencies)\n\n- `start_date` <[string]> Required. Specify the start date of your timeframe using the format `YYYY-MM-DD`.\n- `end_date` <[string]> Required. Specify the end date of your timeframe using the format `YYYY-MM-DD`.\n- `base` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `currencies` <[List]<[string]>> Optional. Pass in an list of currencies to return values for.\n\n```python\nclient.change(start_date='2024-02-05', end_date='2024-02-06', base='USD', currencies=['XAU', 'XAG', 'XPD', 'XPT'])\n```\n\n[Link](https://metalpriceapi.com/documentation#api_change)\n\n---\n#### carat(base, date)\n\n- `base` <[string]> Optional. Pass in a base currency, defaults to USD.\n- `date` <[string]> Optional. Specify date to get Carat for specific date using format `YYYY-MM-DD`. If not specified, uses live rates.\n\n```python\nclient.carat(base='USD', date='2024-02-05')\n```\n\n[Link](https://metalpriceapi.com/documentation#api_carat)\n\n---\n**[Official documentation](https://metalpriceapi.com/documentation)**\n\n\n---\n## FAQ\n\n- How do I get an API Key?\n\n    Free API Keys are available [here](https://metalpriceapi.com).\n\n- I want more information\n\n    Checkout our FAQs [here](https://metalpriceapi.com/faq).\n\n\n## Support\n\nFor support, get in touch using [this form](https://metalpriceapi.com/contact).\n\n\n[List]: https://www.w3schools.com/python/python_datatypes.asp 'List'\n[number]: https://www.w3schools.com/python/python_datatypes.asp 'Number'\n[string]: https://www.w3schools.com/python/python_datatypes.asp 'String'\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Official Python wrapper for metalpriceapi.com",
    "version": "1.0.4",
    "project_urls": {
        "Homepage": "https://github.com/metalpriceapi/metalpriceapi-python"
    },
    "split_keywords": [
        "currency",
        "metal price",
        "exchangerate",
        "rates"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab046847a82b7988ef04111bff26a8d2e89b2cbcc4e49119e7dce916fca6c1b1",
                "md5": "c8c77e24169a77f4d7a4247b35a3cef2",
                "sha256": "51d0c033adf4b0a4a5c01acf467dbd157272d02252aa19078163eae55f727a2b"
            },
            "downloads": -1,
            "filename": "metalpriceapi-1.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8c77e24169a77f4d7a4247b35a3cef2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 15351,
            "upload_time": "2024-02-22T02:38:35",
            "upload_time_iso_8601": "2024-02-22T02:38:35.302867Z",
            "url": "https://files.pythonhosted.org/packages/ab/04/6847a82b7988ef04111bff26a8d2e89b2cbcc4e49119e7dce916fca6c1b1/metalpriceapi-1.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b244310d97456cd77386c3e360660dbed272b460b081d124523639a16d5c9a9",
                "md5": "c2e3a3edee316be1a264a4d936a514be",
                "sha256": "86f8607f15f0ae8eb85594e27c9058e5948ed03ec094b7e3193b08b6057d5353"
            },
            "downloads": -1,
            "filename": "metalpriceapi-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c2e3a3edee316be1a264a4d936a514be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 15083,
            "upload_time": "2024-02-22T02:38:37",
            "upload_time_iso_8601": "2024-02-22T02:38:37.149455Z",
            "url": "https://files.pythonhosted.org/packages/6b/24/4310d97456cd77386c3e360660dbed272b460b081d124523639a16d5c9a9/metalpriceapi-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 02:38:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "metalpriceapi",
    "github_project": "metalpriceapi-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.31.0"
                ]
            ]
        }
    ],
    "lcname": "metalpriceapi"
}
        
Elapsed time: 0.20949s