Skip to content

Commit dcda13a

Browse files
author
DUYN
committed
Change file structure of data modules
1 parent b95d445 commit dcda13a

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

bot/data/data_provider/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from bot.data.data_provider.template.fmp_data_provider import FMPDataProvider
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ def clear(self):
6262

6363
@abstractmethod
6464
def get_id(self) -> str:
65-
pass
65+
pass
File renamed without changes.

bot/data/data_providers/fmp_data_provider.py renamed to bot/data/data_provider/template/fmp_data_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import requests
33
from pandas import DataFrame
44

5-
from bot.data.data_providers.data_provider import DataProvider
5+
from bot.data.data_provider.data_provider import DataProvider
66

77
TICKER_LIST = 'https://financialmodelingprep.com/api/v3/company/stock/list'
88
PROFILE_ENDPOINT = 'https://financialmodelingprep.com/api/v3/company/profile/{}'

bot/data/data_providers/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)