# LiveCoinWatch API wrapper
Python3 wrapper around the [LiveCoinWatch](https://www.livecoinwatch.com/) API
[![PyPi Version](https://img.shields.io/pypi/v/pylivecoinwatch.svg)](https://pypi.python.org/pypi/pylivecoinwatch/)
[![Downloads](https://pepy.tech/badge/pylivecoinwatch)](https://pepy.tech/project/pylivecoinwatch)
![GitHub](https://img.shields.io/github/license/PlayErphil/pylivecoinwatch.svg)
## Installation
PyPI
```bash
pip install pylivecoinwatch
```
or from source
```bash
git clone https://github.com/PlayErphil/pylivecoinwatch.git
cd pylivecoinwatch
python3 setup.py install
```
## Usage
Create the class.
```python
from pylivecoinwatch import LiveCoinWatchAPI
lcw = LiveCoinWatchAPI("<YOUR_API_KEY>")
```
**The package has no API key, so make sure to get one from the [API playground](https://www.livecoinwatch.com/tools/api) and pass it as a parameter when creating the class.**
## API Key Error
If your API key is wrong or you didn't specify one, the class will raise 401 Error.
401 Error example:
```python
>>> from pylivecoinwatch import LiveCoinWatchAPI
>>> lcw = LiveCoinWatchAPI()
>>> lcw.overview()
Traceback (most recent call last):
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 401 Client Error: Unauthorized for url: https://api.livecoinwatch.com/overview
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
ValueError: {'error': {'code': 401, 'status': 'Unauthorized', 'description': 'The requester is not authorized to access the resource. This is similar to 403 but is used in cases where authentication is expected but has failed or has not been provided.'}}
```
If you wished to change your API key at any point you can use the following function:
```python
lcw.set_api_key("<NEW_API_KEY>")
# This will change your API key to <NEW_API_KEY>
```
## Usage
The required parameters for each endpoint are defined as required (mandatory) parameters for the corresponding functions.
Any optional parameters can be passed using same names, as defined in [LiveCoinWatch API Documentation](https://livecoinwatch.github.io/lcw-api-docs/)
_Booleans are supported as input for boolean type parameters; they can be str ('true', 'false') or bool (True, False)
(e.g. see /coins/single usage examples)._
Usage examples:
```python
# /coins/single endpoint without the required parameters
>>> lcw.coins_single()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: coins_single() missing 1 required positional argument: 'code'
# same endpoint with the required parameters
>>> lcw.coins_single(code="BTC")
{'rate': 49810.12848625034, 'volume': 18780569901, 'cap': 942054277908}
# optional parameters can be passed as defined in the API doc (https://livecoinwatch.github.io/lcw-api-docs/)
>>> lcw.coins_single(currency="EUR", code="BTC", meta='true')
# OR (also booleans can be used for boolean type arguments)
>>> lcw.coins_single(currency="EUR", code="BTC", meta=True)
{'name': 'Bitcoin', 'symbol': '₿', 'color': '#fa9e32', 'png32': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/32/btc.png', 'png64': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/64/btc.png', 'webp32': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/32/btc.webp', 'webp64': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/64/btc.webp', 'exchanges': 171, 'markets': 4483, 'pairs': 1604, 'allTimeHighUSD': 68780.77475755227, 'circulatingSupply': 18912906, 'totalSupply': 18912906, 'maxSupply': 21000000, 'rate': 43399.258910010154, 'volume': 17172466006, 'cap': 820806104234}
```
## API Documentation
https://livecoinwatch.github.io/lcw-api-docs/
## Enpoints included
> :warning: **Endpoints documentation**: To make sure that your are using properly each endpoint you should check the [API documentation](https://livecoinwatch.github.io/lcw-api-docs/). Return behaviour and parameters of the endpoints, such as _pagination_, might have changed. <br> Any **optional parameters** defined in LiveCoinWatch API doc can be passed as function parameters using same parameters names with the API _(see Examples above)_.
- _status_
- **/status** (Check API server status)
```python
lcw.status()
```
Example:
```python
>>> lcw.status()
{}
```
- _credits_
- **/credits** (Get your API key related information.)
```python
lcw.credits()
```
Example:
```python
>>> lcw.credits()
{'dailyCreditsRemaining': 9995, 'dailyCreditsLimit': 10000}
```
- _overview_
- **/overview** (Get current aggregated data for all coins.)
```python
lcw.overview()
```
Example:
```python
>>> lcw.overview()
{'cap': 2401907143522, 'volume': 70680847315, 'liquidity': 5779984192, 'btcDominance': 0.3927240083177512}
```
- **/overview/history** (Get historical aggregated data of entire market.)
```python
lcw.overview_history()
```
Example:
```python
>>> lcw.overview_history(start="1606232700000", end="1606232700000")
[{'date': 1606232700000, 'cap': 581171117946, 'volume': 56158051529, 'liquidity': 1295845494, 'btcDominance': 0.6144324552690166}]
```
- _coins_
- **/coins/single** (Get all information about a single coin at latest moment in time.)
```python
lcw.coins_single()
```
Example:
```python
>>> lcw.coins_single(code="BTC")
{'rate': 49810.12848625034, 'volume': 18780569901, 'cap': 942054277908}
```
- **/coins/single/history** (Get historical information about a single coin.)
```python
lcw.coins_single_history()
```
Example:
```python
>>> lcw.coins_single_history(start=1617035100000, end=1617035400000, code="ETH")
{'history': [{'date': 1617035100000, 'rate': 1783.635049099136, 'volume': 7615440037, 'cap': 205564989970}, {'date': 1617035400000, 'rate': 1785.1535622292442, 'volume': 7682072359, 'cap': 205741029536}]}
```
- **/coins/map** (Assorted information for a custom map of coins.)
```python
lcw.coins_map()
```
Example:
```python
>>> lcw.coins_map(currency="USD", codes=["ETH", "BTC"], code="ETH", sort="rank", order="ascending", offset=0, limit=0, meta=False)
[{'code': 'BTC', 'rate': 20179.546446594384, 'volume': 21739986652, 'cap': 387234256303, 'delta': {'hour': 0.999, 'day': 1.0437, 'week': 1.0461, 'month': 1.0641, 'quarter': 0.8685, 'year': 0.3216}}, {'code': 'ETH', 'rate': 1480.8660158628147, 'volume': 17513723105, 'cap': 181219294947, 'delta': {'hour': 0.9999, 'day': 1.1029, 'week': 1.1356, 'month': 1.131, 'quarter': 0.8946, 'year': 0.3496}}]
```
- **/coins/list** (Get assorted information for a list of coins.)
```python
lcw.coins_list()
```
Example:
```python
>>> lcw.coins_list(limit=2, sort="rank", order="ascending")
[{'code': 'BTC', 'rate': 49741.45295774467, 'volume': 18786805838, 'cap': 940755424093}, {'code': 'ETH', 'rate': 3944.8091570473284, 'volume': 10458770693, 'cap': 469117284843}]
```
- **/coins/contract** (Get all information about a single coin at latest moment in time, based on its platform identifier and contract address.)
```python
lcw.coins_contract()
```
Example:
```python
>>> lcw.coins_contract(currency="USD", platform="ETH", address="0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", meta=False)
{'rate': 1487.490793378846, 'volume': 17716229188, 'cap': 182029994563, 'liquidity': 665137261, 'delta': {'hour': 1.0014, 'day': 1.1056, 'week': 1.1406, 'month': 1.1301, 'quarter': 0.895, 'year': 0.3517}, 'code': 'ETH'}
```
- _fiats_
- **/fiats/all** (Get list of all the fiats.)
```python
lcw.fiats_all()
```
Example:
```python
>>> lcw.fiats_all()
[{'code': 'PAB', 'countries': ['PAN'], 'flag': 'PAN', 'name': 'Panamanian Balboa', 'symbol': 'B/.'}, {'code': 'AZN', 'countries': ['AZE'], 'flag': 'AZE', 'name': 'Azerbaijani Manat', 'symbol': '₼'} ............... {'code': 'PKR', 'countries': ['PAK'], 'flag': 'PAK', 'name': 'Pakistani Rupee', 'symbol': '₨'}]
```
- _exchanges_
- **/exchanges/single** (Get assorted exchange information.)
```python
lcw.exchanges_single()
```
Example:
```python
>>> lcw.exchanges_single(code="kucoin")
{'code': 'kucoin', 'markets': 947, 'volume': 2916293370, 'bidTotal': 40050156.01994438, 'askTotal': 45237792.80490364, 'depth': 85287948.82484803, 'visitors': 94003, 'volumePerVisitor': 31023.407444443263}
```
- **/exchanges/list** (Get assorted information on list of exchanges.)
```python
lcw.exchanges_list()
```
Example:
```python
>>> lcw.exchanges_list(sort="visitors", order="descending", limit=2, offset=1)
[{'code': 'binance', 'markets': 1302, 'volume': 16969814270, 'bidTotal': 360409773.5276142, 'askTotal': 307530423.509523, 'depth': 667940197.0371372, 'visitors': 1303774, 'volumePerVisitor': 13015.91707611902}, {'code': 'pancakeswapv2', 'markets': 3416, 'volume': 337585574, 'bidTotal': None, 'askTotal': None, 'depth': 0, 'visitors': 501047, 'volumePerVisitor': 673.7602939444803}]
```
- _platforms_
- **/platforms/all** (Get a list of all the coin platforms.)
```python
lcw.platforms_all()
```
Example:
```python
>>> lcw.platforms_all()
[{'code': 'BSC', 'name': 'BNB Smart Chain'}, {'name': 'Ethereum', 'code': 'ETH'}, {'name': 'BNB Beacon Chain', 'code': 'BC'}, {'name': 'Polygon', 'code': 'MATIC'}, {'name': 'Solana', 'code': 'SOL'}, {'name': 'Tron (TRC20)', 'code': 'TRX'}, {'name': 'Fantom', 'code': 'FTM'}, {'name': 'Avalanche C-Chain', 'code': 'AVAX'}, {'name': 'Huobi Eco Chain', 'code': 'HECO'}]
```
## Test
Run unit tests with:
```
# after installing pytest using pip3
pytest tests
Make sure you add an API key for tests.
```
## License
[MIT](https://choosealicense.com/licenses/mit/)
# VERSION 1.2
- Documentation updated
- coins/map enpoint added
- plataforms/all enpoint added
- coins/contract enpoint added
# VESION 1.0.1
- Some test fixed
- Changes in the Readme and the test documentation
# VESION 1.0
- Readme finished
- Functions fixed to endpoints names
# VERSION 0.2
- Functions now return dict
- Tests implemented with new API
# VERSION 0.1
- All endpoints added
- Tests implemented
- First release
Raw data
{
"_id": null,
"home_page": "https://github.com/PlayErphil/LCW-API-Wrapper",
"name": "pylivecoinwatch",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "crypto,crypto bot,livecoinwatch",
"author": "Rene Gonzalez",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/7a/6e/4d6d9a70e31ce111a0bab9f1f74d5249a14859461e5a1dca8937f99a5061/pylivecoinwatch-1.2.3.tar.gz",
"platform": null,
"description": "# LiveCoinWatch API wrapper\n\nPython3 wrapper around the [LiveCoinWatch](https://www.livecoinwatch.com/) API\n\n[![PyPi Version](https://img.shields.io/pypi/v/pylivecoinwatch.svg)](https://pypi.python.org/pypi/pylivecoinwatch/)\n[![Downloads](https://pepy.tech/badge/pylivecoinwatch)](https://pepy.tech/project/pylivecoinwatch)\n![GitHub](https://img.shields.io/github/license/PlayErphil/pylivecoinwatch.svg)\n\n## Installation\n\nPyPI\n\n```bash\npip install pylivecoinwatch\n```\n\nor from source\n\n```bash\ngit clone https://github.com/PlayErphil/pylivecoinwatch.git\ncd pylivecoinwatch\npython3 setup.py install\n```\n\n## Usage\n\nCreate the class.\n\n```python\nfrom pylivecoinwatch import LiveCoinWatchAPI\nlcw = LiveCoinWatchAPI(\"<YOUR_API_KEY>\")\n```\n\n**The package has no API key, so make sure to get one from the [API playground](https://www.livecoinwatch.com/tools/api) and pass it as a parameter when creating the class.**\n\n## API Key Error\n\nIf your API key is wrong or you didn't specify one, the class will raise 401 Error.\n\n401 Error example:\n\n```python\n>>> from pylivecoinwatch import LiveCoinWatchAPI\n>>> lcw = LiveCoinWatchAPI()\n>>> lcw.overview()\n\nTraceback (most recent call last):\n\nraise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 401 Client Error: Unauthorized for url: https://api.livecoinwatch.com/overview\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n\nValueError: {'error': {'code': 401, 'status': 'Unauthorized', 'description': 'The requester is not authorized to access the resource. This is similar to 403 but is used in cases where authentication is expected but has failed or has not been provided.'}}\n\n```\n\nIf you wished to change your API key at any point you can use the following function:\n\n```python\nlcw.set_api_key(\"<NEW_API_KEY>\")\n# This will change your API key to <NEW_API_KEY>\n```\n\n## Usage\n\nThe required parameters for each endpoint are defined as required (mandatory) parameters for the corresponding functions.\nAny optional parameters can be passed using same names, as defined in [LiveCoinWatch API Documentation](https://livecoinwatch.github.io/lcw-api-docs/)\n\n_Booleans are supported as input for boolean type parameters; they can be str ('true', 'false') or bool (True, False)\n(e.g. see /coins/single usage examples)._\n\nUsage examples:\n\n```python\n# /coins/single endpoint without the required parameters\n>>> lcw.coins_single()\nTraceback (most recent call last):\n File \"<stdin>\", line 1, in <module>\nTypeError: coins_single() missing 1 required positional argument: 'code'\n\n\n# same endpoint with the required parameters\n>>> lcw.coins_single(code=\"BTC\")\n{'rate': 49810.12848625034, 'volume': 18780569901, 'cap': 942054277908}\n\n\n# optional parameters can be passed as defined in the API doc (https://livecoinwatch.github.io/lcw-api-docs/)\n>>> lcw.coins_single(currency=\"EUR\", code=\"BTC\", meta='true')\n# OR (also booleans can be used for boolean type arguments)\n>>> lcw.coins_single(currency=\"EUR\", code=\"BTC\", meta=True)\n{'name': 'Bitcoin', 'symbol': '\u20bf', 'color': '#fa9e32', 'png32': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/32/btc.png', 'png64': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/64/btc.png', 'webp32': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/32/btc.webp', 'webp64': 'https://lcw.nyc3.cdn.digitaloceanspaces.com/production/currencies/64/btc.webp', 'exchanges': 171, 'markets': 4483, 'pairs': 1604, 'allTimeHighUSD': 68780.77475755227, 'circulatingSupply': 18912906, 'totalSupply': 18912906, 'maxSupply': 21000000, 'rate': 43399.258910010154, 'volume': 17172466006, 'cap': 820806104234}\n```\n\n## API Documentation\n\nhttps://livecoinwatch.github.io/lcw-api-docs/\n\n## Enpoints included\n\n> :warning: **Endpoints documentation**: To make sure that your are using properly each endpoint you should check the [API documentation](https://livecoinwatch.github.io/lcw-api-docs/). Return behaviour and parameters of the endpoints, such as _pagination_, might have changed. <br> Any **optional parameters** defined in LiveCoinWatch API doc can be passed as function parameters using same parameters names with the API _(see Examples above)_.\n\n- _status_\n\n - **/status** (Check API server status)\n\n ```python\n lcw.status()\n ```\n\n Example:\n\n ```python\n >>> lcw.status()\n {}\n ```\n\n- _credits_\n\n - **/credits** (Get your API key related information.)\n\n ```python\n lcw.credits()\n ```\n\n Example:\n\n ```python\n >>> lcw.credits()\n\n {'dailyCreditsRemaining': 9995, 'dailyCreditsLimit': 10000}\n ```\n\n- _overview_\n\n - **/overview** (Get current aggregated data for all coins.)\n\n ```python\n lcw.overview()\n ```\n\n Example:\n\n ```python\n >>> lcw.overview()\n\n {'cap': 2401907143522, 'volume': 70680847315, 'liquidity': 5779984192, 'btcDominance': 0.3927240083177512}\n ```\n\n - **/overview/history** (Get historical aggregated data of entire market.)\n\n ```python\n lcw.overview_history()\n ```\n\n Example:\n\n ```python\n >>> lcw.overview_history(start=\"1606232700000\", end=\"1606232700000\")\n\n [{'date': 1606232700000, 'cap': 581171117946, 'volume': 56158051529, 'liquidity': 1295845494, 'btcDominance': 0.6144324552690166}]\n ```\n\n- _coins_\n\n - **/coins/single** (Get all information about a single coin at latest moment in time.)\n\n ```python\n lcw.coins_single()\n ```\n\n Example:\n\n ```python\n >>> lcw.coins_single(code=\"BTC\")\n\n {'rate': 49810.12848625034, 'volume': 18780569901, 'cap': 942054277908}\n ```\n\n - **/coins/single/history** (Get historical information about a single coin.)\n\n ```python\n lcw.coins_single_history()\n ```\n\n Example:\n\n ```python\n >>> lcw.coins_single_history(start=1617035100000, end=1617035400000, code=\"ETH\")\n\n {'history': [{'date': 1617035100000, 'rate': 1783.635049099136, 'volume': 7615440037, 'cap': 205564989970}, {'date': 1617035400000, 'rate': 1785.1535622292442, 'volume': 7682072359, 'cap': 205741029536}]}\n ```\n\n - **/coins/map** (Assorted information for a custom map of coins.)\n\n ```python\n lcw.coins_map()\n ```\n\n Example:\n\n ```python\n >>> lcw.coins_map(currency=\"USD\", codes=[\"ETH\", \"BTC\"], code=\"ETH\", sort=\"rank\", order=\"ascending\", offset=0, limit=0, meta=False)\n\n [{'code': 'BTC', 'rate': 20179.546446594384, 'volume': 21739986652, 'cap': 387234256303, 'delta': {'hour': 0.999, 'day': 1.0437, 'week': 1.0461, 'month': 1.0641, 'quarter': 0.8685, 'year': 0.3216}}, {'code': 'ETH', 'rate': 1480.8660158628147, 'volume': 17513723105, 'cap': 181219294947, 'delta': {'hour': 0.9999, 'day': 1.1029, 'week': 1.1356, 'month': 1.131, 'quarter': 0.8946, 'year': 0.3496}}]\n ```\n\n - **/coins/list** (Get assorted information for a list of coins.)\n\n ```python\n lcw.coins_list()\n ```\n\n Example:\n\n ```python\n >>> lcw.coins_list(limit=2, sort=\"rank\", order=\"ascending\")\n\n [{'code': 'BTC', 'rate': 49741.45295774467, 'volume': 18786805838, 'cap': 940755424093}, {'code': 'ETH', 'rate': 3944.8091570473284, 'volume': 10458770693, 'cap': 469117284843}]\n ```\n\n - **/coins/contract** (Get all information about a single coin at latest moment in time, based on its platform identifier and contract address.)\n\n ```python\n lcw.coins_contract()\n ```\n\n Example:\n\n ```python\n >>> lcw.coins_contract(currency=\"USD\", platform=\"ETH\", address=\"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\", meta=False)\n\n {'rate': 1487.490793378846, 'volume': 17716229188, 'cap': 182029994563, 'liquidity': 665137261, 'delta': {'hour': 1.0014, 'day': 1.1056, 'week': 1.1406, 'month': 1.1301, 'quarter': 0.895, 'year': 0.3517}, 'code': 'ETH'}\n ```\n\n- _fiats_\n\n - **/fiats/all** (Get list of all the fiats.)\n\n ```python\n lcw.fiats_all()\n ```\n\n Example:\n\n ```python\n >>> lcw.fiats_all()\n\n [{'code': 'PAB', 'countries': ['PAN'], 'flag': 'PAN', 'name': 'Panamanian Balboa', 'symbol': 'B/.'}, {'code': 'AZN', 'countries': ['AZE'], 'flag': 'AZE', 'name': 'Azerbaijani Manat', 'symbol': '\u20bc'} ............... {'code': 'PKR', 'countries': ['PAK'], 'flag': 'PAK', 'name': 'Pakistani Rupee', 'symbol': '\u20a8'}]\n ```\n\n- _exchanges_\n\n - **/exchanges/single** (Get assorted exchange information.)\n\n ```python\n lcw.exchanges_single()\n ```\n\n Example:\n\n ```python\n >>> lcw.exchanges_single(code=\"kucoin\")\n\n {'code': 'kucoin', 'markets': 947, 'volume': 2916293370, 'bidTotal': 40050156.01994438, 'askTotal': 45237792.80490364, 'depth': 85287948.82484803, 'visitors': 94003, 'volumePerVisitor': 31023.407444443263}\n ```\n\n - **/exchanges/list** (Get assorted information on list of exchanges.)\n\n ```python\n lcw.exchanges_list()\n ```\n\n Example:\n\n ```python\n >>> lcw.exchanges_list(sort=\"visitors\", order=\"descending\", limit=2, offset=1)\n\n [{'code': 'binance', 'markets': 1302, 'volume': 16969814270, 'bidTotal': 360409773.5276142, 'askTotal': 307530423.509523, 'depth': 667940197.0371372, 'visitors': 1303774, 'volumePerVisitor': 13015.91707611902}, {'code': 'pancakeswapv2', 'markets': 3416, 'volume': 337585574, 'bidTotal': None, 'askTotal': None, 'depth': 0, 'visitors': 501047, 'volumePerVisitor': 673.7602939444803}]\n ```\n\n- _platforms_\n\n - **/platforms/all** (Get a list of all the coin platforms.)\n\n ```python\n lcw.platforms_all()\n ```\n\n Example:\n\n ```python\n >>> lcw.platforms_all()\n\n [{'code': 'BSC', 'name': 'BNB Smart Chain'}, {'name': 'Ethereum', 'code': 'ETH'}, {'name': 'BNB Beacon Chain', 'code': 'BC'}, {'name': 'Polygon', 'code': 'MATIC'}, {'name': 'Solana', 'code': 'SOL'}, {'name': 'Tron (TRC20)', 'code': 'TRX'}, {'name': 'Fantom', 'code': 'FTM'}, {'name': 'Avalanche C-Chain', 'code': 'AVAX'}, {'name': 'Huobi Eco Chain', 'code': 'HECO'}]\n ```\n\n## Test\n\nRun unit tests with:\n\n```\n# after installing pytest using pip3\npytest tests\nMake sure you add an API key for tests.\n```\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n\n# VERSION 1.2\n\n- Documentation updated\n- coins/map enpoint added\n- plataforms/all enpoint added\n- coins/contract enpoint added\n\n# VESION 1.0.1\n\n- Some test fixed\n- Changes in the Readme and the test documentation\n\n# VESION 1.0\n\n- Readme finished\n- Functions fixed to endpoints names\n\n# VERSION 0.2\n\n- Functions now return dict\n- Tests implemented with new API\n\n# VERSION 0.1\n\n- All endpoints added\n- Tests implemented\n- First release\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python wrapper around Live Coin Watch API",
"version": "1.2.3",
"split_keywords": [
"crypto",
"crypto bot",
"livecoinwatch"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1e6680b5375a28eb886a386a15bb73d798f3e0ce3bb2e3bda34fc98e45d68c48",
"md5": "c2c93bea34f79d6fff6b2abc737c4335",
"sha256": "b32a32f5e7128e982b0bdc752ecd4e6d63d52ea27a2de78f8560b02c71e0724d"
},
"downloads": -1,
"filename": "pylivecoinwatch-1.2.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c2c93bea34f79d6fff6b2abc737c4335",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 8678,
"upload_time": "2023-01-19T21:20:45",
"upload_time_iso_8601": "2023-01-19T21:20:45.313823Z",
"url": "https://files.pythonhosted.org/packages/1e/66/80b5375a28eb886a386a15bb73d798f3e0ce3bb2e3bda34fc98e45d68c48/pylivecoinwatch-1.2.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a6e4d6d9a70e31ce111a0bab9f1f74d5249a14859461e5a1dca8937f99a5061",
"md5": "2162d3b7b3eb2929d8a2558fb54ac709",
"sha256": "adeab82178adf33eb1dc8e2768097c433dfb47266d10aeaa7c349c27ac2dd5fa"
},
"downloads": -1,
"filename": "pylivecoinwatch-1.2.3.tar.gz",
"has_sig": false,
"md5_digest": "2162d3b7b3eb2929d8a2558fb54ac709",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8584,
"upload_time": "2023-01-19T21:20:47",
"upload_time_iso_8601": "2023-01-19T21:20:47.062360Z",
"url": "https://files.pythonhosted.org/packages/7a/6e/4d6d9a70e31ce111a0bab9f1f74d5249a14859461e5a1dca8937f99a5061/pylivecoinwatch-1.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-01-19 21:20:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "PlayErphil",
"github_project": "LCW-API-Wrapper",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "pylivecoinwatch"
}