Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ritiek/smartbytes-monitor
Python package to monitor your Airtel broadband network stats like remaining data, days left, etc
https://github.com/ritiek/smartbytes-monitor
airtel data-usage monitor smartbytes-tracker stats
Last synced: 3 months ago
JSON representation
Python package to monitor your Airtel broadband network stats like remaining data, days left, etc
- Host: GitHub
- URL: https://github.com/ritiek/smartbytes-monitor
- Owner: ritiek
- License: mit
- Created: 2017-08-15T05:40:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-27T19:56:18.000Z (about 7 years ago)
- Last Synced: 2024-09-16T06:01:14.112Z (4 months ago)
- Topics: airtel, data-usage, monitor, smartbytes-tracker, stats
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
smartbytes-monitor
==================Python package to monitor your Airtel broadband network stats like remaining data, days
left, etc.Installation
------------::
pip install smartbytes-monitor
or if you like to live on the bleeding edge:
::
python setup.py install
Usage
-----Just launch the command ``smartbytes`` and it will tell you about your
broadband plan information.::
$ smartbytes
=============================
Total data : 30.0 GB
Data left : 2.6 GB
Days left : 1 day(s)
DSL number : 0172xxxxxxx:_dsl
=============================
This tool can also used as a library:.. code:: python
>>> import smartbytes
>>> airtel = smartbytes.smartbytes()
>>> airtel.data_total
u'30.0 GB'
>>> airtel.data_left
u'2.6 GB'
>>> airtel.days_left
u'1 day(s)'
>>> airtel.dsl_number
u'0172xxxxxxx:_dsl'License
-------``The MIT License``