Metadata-Version: 2.1
Name: bitcoin-value
Version: 1.4.0
Summary: A tracker that gets the latest value of Bitcoin in any currency
Home-page: https://github.com/dewittethomas/bitcoin_value
License: MIT
Keywords: bitcoin currency value worth btc usd eur gbp crypto fetch
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.22.0)

# nationality-predictor

[![npm](https://img.shields.io/pypi/v/bitcoin-value.svg)](https://pypi.org/project/bitcoin-value/)

A tracker that gets the latest value of Bitcoin in any currency.

## Installation

Run the following to install:

```console
pip install bitcoin-value
```

## Usage

### Currency

```python
currency()
```

Params:

```
Currency: String ? The currency of the Bitcoin.
```

Demo:

```python
from nationality_predictor import predict

cur = currency("USD")
```

### Fetch

```python
currency.fetch()
```

Result:

```
Currency: str()
```

Demo:

```python
result = currency("USD").fetch()
print(result)
```

# License
[MIT](https://github.com/dewittethomas/nationality-predictor/blob/master/LICENSE)

