Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simplygopy-2021.5.1.tar.gz (8.3 kB view hashes)

Uploaded Source

Built Distribution

simplygopy-2021.5.1-py3-none-any.whl (8.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page