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

SimplyGo uses AES-CBC encryption when sending username and password to their API. The key/initialization vector are statically stored in p014sg.transitlink.base.Constants (from their Android application). You can encrypt your username (e-mail address) and password by running:

$ simplygo-encrypt mailbox@example.com
LOF3yVaERNdbNxfw1ctm63Dwqbx8ha98UR7GUEby3Pw=

Or use simplygo-decrypt to do the opposite:

$ simplygo-decrypt LOF3yVaERNdbNxfw1ctm63Dwqbx8ha98UR7GUEby3Pw=
mailbox@example.com

You can use the pre-encrypted values when starting the simplygo module:

import simplygo
talk = simplygo.Ride('< encrypted username>', '<encrypted password>')

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_card_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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

simplygopy-2019.9.1-py3-none-any.whl (10.3 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