mirror of
https://github.com/Redume/Shirino.git
synced 2024-12-25 09:43:45 +03:00
chore: Added the multiplier directly to the api request
This commit is contained in:
parent
4fd2d3d182
commit
45307caee5
1 changed files with 5 additions and 3 deletions
|
@ -25,7 +25,7 @@ class Converter:
|
|||
|
||||
def convert(self) -> None:
|
||||
if not self.kekkai():
|
||||
self.kekkai()
|
||||
self.ddg()
|
||||
|
||||
number = Decimal(str(self.conv_amount))
|
||||
|
||||
|
@ -62,7 +62,8 @@ class Converter:
|
|||
res = requests.get(f'{config['kekkai_instance']}/api/getRate/', {
|
||||
'from_currency': self.from_currency,
|
||||
'conv_currency': self.conv_currency,
|
||||
'date': date
|
||||
'date': date,
|
||||
'conv_amount': self.conv_amount
|
||||
}, timeout=3)
|
||||
|
||||
data = res.json()
|
||||
|
@ -70,7 +71,8 @@ class Converter:
|
|||
if not HTTPStatus(res.status_code).is_success:
|
||||
return False
|
||||
|
||||
self.conv_amount = float(data.get('rate') * self.amount)
|
||||
|
||||
self.conv_amount = data.get('conv_amount')
|
||||
|
||||
return True
|
||||
except requests.exceptions.ConnectionError:
|
||||
|
|
Loading…
Add table
Reference in a new issue