Skip to content

michaellennox/oystercard-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#Oystercard

This is a repeat of the oystercard-challenge written in Python instead of the original Ruby. You can find my original Ruby solution at this repo.

I have aimed to solve this challenge in a test driven manner with automated tests using the unittest library.

##Installation Instructions

Clone the repository then change directory into it.

$ git clone git@github.com:michaellennox/oystercard-python.git
$ cd oystercard-python

Install and activate VirtualEnv

$ pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate

Install required packages using pip and the requirements.txt file

$ pip install -r requirements.txt

Open the interpreter and import the application files

$ python
>>>

Now you can use the oystercard system.

##Usage Instructions

##Brief

###User Stories

In order to use public transport
As a customer
I want money on my card

In order to keep using public transport
As a customer
I want to add money to my card

In order to protect my money
As a customer
I don't want to put too much money on my card

In order to pay for my journey
As a customer
I need my fare deducted from my card

In order to get through the barriers
As a customer
I need to touch in and out

In order to pay for my journey
As a customer
I need to have the minimum amount for a single journey

In order to pay for my journey
As a customer
I need to pay for my journey when it's complete

In order to pay for my journey
As a customer
I need to know where I've travelled from

In order to know where I have been
As a customer
I want to see to all my previous trips

In order to know how far I have travelled
As a customer
I want to know what zone a station is in

In order to be charged correctly
As a customer
I need a penalty charge deducted if I fail to touch in or out

In order to be charged the correct amount
As a customer
I need to have the correct fare calculated

##Contributors

About

A python solution to the oystercard challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages