Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djetelina/aiocrypto_prices
asyncio cryptocurrency prices
https://github.com/djetelina/aiocrypto_prices
aiocrypto-prices asyncio bitcoin cryptocurrencies cryptocurrency python python3
Last synced: 2 months ago
JSON representation
asyncio cryptocurrency prices
- Host: GitHub
- URL: https://github.com/djetelina/aiocrypto_prices
- Owner: djetelina
- License: mit
- Created: 2018-01-22T02:02:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T10:56:55.000Z (about 2 years ago)
- Last Synced: 2023-08-13T03:01:00.097Z (over 1 year ago)
- Topics: aiocrypto-prices, asyncio, bitcoin, cryptocurrencies, cryptocurrency, python, python3
- Language: Python
- Size: 333 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aiocrypto_prices
![pypi](https://badge.fury.io/py/aiocrypto-prices.svg) [![build](https://travis-ci.org/iScrE4m/aiocrypto_prices.svg?branch=master)](https://travis-ci.org/iScrE4m/aiocrypto_prices) [![Join the chat at https://gitter.im/iScrE4m/aiocrypto_prices](https://badges.gitter.im/iScrE4m/aiocrypto_prices.svg)](https://gitter.im/iScrE4m/aiocrypto_prices?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Very early version - API WILL CHANGE!
If you happen to stumble upon this library, please provide any and all feedback
through any means comfortable to you.## Install
`$ pipenv install aiocrypto-prices`
or
`$ pip install aiocrypto-prices --user`
## Usage
Behind the scenes we are (currently) using cryptocompare's API,
which means all of the symbols need to be in their format and supported
by them.### Simple
```python
>> from aiocrypto_prices import currencies
>> await currencies.ETH.prices.get('USD')
1053.28
```### Advanced
Useful for loading things in parallel.
Careful, if you're not accessing the target price through `get`,
it might not reload after cache expires
```python
>> from aiocrypto_prices import currencies
>> currencies.add('BTC', 'ETH', 'IOT')
>> await currencies.load_all()
>> currencies.IOT.prices.USD
2.79
```### Setting up extra options
```python
>>> from aiocrypto_prices import currencies
>>> currencies.cache = 120 # 2 minute cache
>>> currencies.target_currencies.append('EUR') # In addition to defaults, let's fetch EUR too.
>>> currencies.human = True # Get name and url of a logo
```or
```python
>>> from aiocrypto_prices import Currencies
>>> currencies = Currencies(cache=120, target_currencies=['USD', 'EUR'], human=True)
```## Changelog
### 0.0.3
* extra_information parameter was renamed to human
* new paramter 'full' providing market cap and supply
* More data should be provided with 'full', but requires a redesign of Prices class## TODO
* all the TODOs scattered around the code
* All the available information cryptocompare offers
* Assign amount in that currency? - perhaps aiocrypto_folio?
* Implement adding together currencies of the same symbol and possibly other interactions* aiocrypto_exchanges
* aiocrypto_pools