File size: 491 Bytes
94ed9e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from restful.utilities import Utilities
from restful.schemas import CryptocurrencyPredictionSchema

class cryptocurrency_svc:
	# Prediction Utilities
	__PRED_UTILS = Utilities()

	# Prediction Service
	def prediction(self, payload: CryptocurrencyPredictionSchema) -> list:
		days: int = payload.days
		currency: str = payload.currency

		result: list = self.__PRED_UTILS.cryptocurrency_prediction_utils(
			days = days,
			model_name = currency,
			sequence_length = 60
		)

		return result