Python 3 module to talk to SimplyGo from Transit Link in Singapore
Project description
SimplyGoPy: talk to transit (in Singapore)
SimplyGoPy enables you to talk to SimplyGo using Python.
Features
Currently basic features are supported:
- Login with SimplyGo login credentials.
- Retrieve notifications.
- Retrieve payment cards (you use to tap in/out at MRT/bus)
- Retrieve transactions
Authentication
These days encryption is no longer needed, the username and password are send in plaintext over HTTPS and signed with an HMAC signature.
Old:
SimplyGo used to use AES-CBC encryption when sending username and password to their API. The key/initialization vector were statically stored in p014sg.transitlink.base.Constants
(from their Android application).
Installation
Simple using pip:
$ pipenv install SimplyGoPy
🚎 🚇
Examples
Get notifications:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_notifications())
Get card information:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_card_info())
Get user information:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_user_info())
Get transactions of today:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_transactions('< UniqueCode from get_card_info() >'))
Get transactions from date X till today:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_transactions('< UniqueCode from get_card_info() >', '01-01-2019'))
Get transactions from date X till Y:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_transactions('< UniqueCode from get_card_info() >', '01-06-2019', '01-07-2019'))
Get all transactions of this month:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_transactions_this_month())
Get transactions of this month for specific card:
import simplygo
from pprint import pprint
rider = simplygo.Ride('<username>', '<password>')
pprint(rider.get_transactions_this_month('< UniqueCode from get_card_info() >'))
Disclaimer
I'm in no way affiliated with SimplyGo, Transit Link, or LTA.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simplygopy-2021.5.1.tar.gz
.
File metadata
- Download URL: simplygopy-2021.5.1.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a346a1b80c0dbd80435a4e58df50804b7bdbbc7bcf0d526a38c62e7757d77500 |
|
MD5 | 7f720527a3da8d4a0485477d9440e2fc |
|
BLAKE2b-256 | 32c2815bbbcaa23745c0f78046f8e21c78f1589e032c55c09d47f9c92086e02b |
File details
Details for the file simplygopy-2021.5.1-py3-none-any.whl
.
File metadata
- Download URL: simplygopy-2021.5.1-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f31a30b60725146b183f8a7cf83668e3010252689162e55dc909c77e18a471c9 |
|
MD5 | 09668f789a027d59d6b5039d043d2e0d |
|
BLAKE2b-256 | 92b0e355d772d2d339efa7ae4aa4ff79364fe41416ecc83a16bd229af5ee2c7c |