Unofficial Python Tesco Mobile (Ireland) API
Project description
pytescomobileirl
A Python API for accessing your Tesco Mobile Ireland account balance & usage stats. This is an unoffical API and the author/contributors are in no way connected to Tesco or Tesco Mobile. The API provides methods to:
- Get your current balances (€ credit and voice/text/data packages)
- Get your usage records as far back as is available.
For an example of this in use, see my Tesco Mobile BitBar plugin
Installation
pip install pytescomobileirl
Usage
It's very easy to use. Try the following to get your balance data:
from pytescomobileirl import *
from pprint import pprint
session = pytescomobileirl.TescoSession()
session.login("<PhoneNumber>","<Password>")
balances = session.get_balances()
my_credit = balances.credit_remaining
my_data = balances.remaining_total("data")
print(my_credit)
print(my_data.summary())
pprint(vars(my_data))
returns:
14.28
939 MB
{'balance_expires': datetime.datetime(2017, 10, 15, 0, 0),
'balance_type': u'data',
'is_active': True,
'remaining_qty': 939.181640625,
'serviceCode': u'AB3',
'unit': 'MByte'}
Or to get your usage history enter:
usage = session.get_usage()
pprint(vars(usage.records[0]))
returns:
{'called_number': u'tescomobile.liffeytelecom.com',
'charge': u'0.0',
'country_code': None,
'event_date': datetime.datetime(2017, 9, 23, 13, 33),
'roaming': False,
'service_code': u'GPBAS',
'service_name': u'GPRS Basic Service',
'unit': u'Bytes',
'use_type': u'DATA',
'volume': 119896.0}
Tests
python ./tests/tests.py
Contributing
Fork this repo, make some changes and create a new pull request!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pytescomobileirl-0.2.4.tar.gz
.
File metadata
- Download URL: pytescomobileirl-0.2.4.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a631bd6b1beca27d5510aa82bf7ed10db246c33482fcba505de17eaa89b09f89 |
|
MD5 | eafe9e8f7e17684a7acc8526a87663c1 |
|
BLAKE2b-256 | fa96cfcaf8418502269cbff4b8c2e985b096958fb68ebe4eb9b21c7da12f9448 |