mvideo.py 411 B

12345678910
  1. from service import Service
  2. class MVideo(Service):
  3. def send_sms(self):
  4. if self.country_code == 'ru':
  5. phone = f'{self.phone[1:4]}-{self.phone[4:-1]}'
  6. self.session.post('https://www.mvideo.ru/internal-rest-api/common/atg/rest/actors/VerificationActor/getCode',
  7. params={'pageName': 'registerPrivateUserPhoneVerification'}, data={'phone': phone})