bmoscon / cryptostore

A scalable storage service for cryptocurrency data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ModuleNotFoundError: No module named 'cryptofeed.rest'

b-rockx opened this issue · comments

Using the default docker-compose and running
docker-compose up, you will get the error

`Traceback (most recent call last):

File "/usr/local/bin/cryptostore", line 11, in

load_entry_point('cryptostore', 'console_scripts', 'cryptostore')()

File "/cryptostore/bin/cryptostore.py", line 11, in main

cs = Cryptostore(config=args.config)

File "/cryptostore/cryptostore.py", line 30, in init

self.plugin.start()

File "/cryptostore/plugin/controller.py", line 34, in start

obj = getattr(import(module[0], fromlist=[module[1]]), module[1])

File "/cryptostore/plugin/backfill.py", line 14, in

from cryptofeed.rest import Rest

ModuleNotFoundError: No module named 'cryptofeed.rest'`

commented

These below steps should be removed from config-docker.yaml as Rest module has been removed from versions > 1.9.3

plugins:
backfill:
module: [cryptostore.plugin.backfill, Backfill]
config: config.yaml

backfill:
COINBASE:
BTC-USD:
start: '2017-01-01'