├── .DS_Store ├── .idea ├── digital-wallet.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── images ├── fourth-degree-friends2.png └── friend-of-a-friend1.png ├── insight_testsuite ├── .DS_Store ├── results.txt ├── run_tests.sh ├── temp │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ ├── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── run.sh │ └── src │ │ ├── .DS_Store │ │ ├── __pycache__ │ │ └── addedfeatures.cpython-35.pyc │ │ ├── addedfeatures.py │ │ ├── antifraud.py │ │ └── antifraud3.py └── tests │ ├── .DS_Store │ ├── test-1-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-10-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-11-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-2-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-3-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-4-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-5-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-6-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-7-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ ├── test-8-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ │ ├── batch_payment.txt │ │ └── stream_payment.txt │ └── paymo_output │ │ ├── .DS_Store │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── output3.txt │ │ └── output4.txt │ └── test-9-paymo-trans │ ├── .DS_Store │ ├── paymo_input │ ├── batch_payment.txt │ └── stream_payment.txt │ └── paymo_output │ ├── .DS_Store │ ├── output1.txt │ ├── output2.txt │ ├── output3.txt │ └── output4.txt ├── paymo_input ├── batch_payment.txt └── stream_payment.txt ├── paymo_output ├── .DS_Store ├── output1.txt ├── output2.txt ├── output3.txt └── output4.txt ├── run.sh └── src ├── .DS_Store ├── __pycache__ └── addedfeatures.cpython-35.pyc ├── addedfeatures.py └── antifraud.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/digital-wallet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.idea/digital-wallet.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/README.md -------------------------------------------------------------------------------- /images/fourth-degree-friends2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/images/fourth-degree-friends2.png -------------------------------------------------------------------------------- /images/friend-of-a-friend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/images/friend-of-a-friend1.png -------------------------------------------------------------------------------- /insight_testsuite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/results.txt -------------------------------------------------------------------------------- /insight_testsuite/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/run_tests.sh -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/temp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/run.sh -------------------------------------------------------------------------------- /insight_testsuite/temp/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/src/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/temp/src/__pycache__/addedfeatures.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/src/__pycache__/addedfeatures.cpython-35.pyc -------------------------------------------------------------------------------- /insight_testsuite/temp/src/addedfeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/src/addedfeatures.py -------------------------------------------------------------------------------- /insight_testsuite/temp/src/antifraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/src/antifraud.py -------------------------------------------------------------------------------- /insight_testsuite/temp/src/antifraud3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/temp/src/antifraud3.py -------------------------------------------------------------------------------- /insight_testsuite/tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-1-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- 1 | time, id1, id2, amount, message 2 | 2016-11-01 17:38:25, 49466, 6989, 23.74, 🦄 3 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-1-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- 1 | trusted 2 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- 1 | trusted 2 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- 1 | trusted 2 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-1-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- 1 | Unverified Reason: Payment 25.32 was suspicious, between users 6989 and 49466 2 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-10-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-10-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-11-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-11-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- 1 | trusted 2 | unverified 3 | -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-2-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-2-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-3-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-3-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-4-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-4-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-5-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-5-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-6-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-6-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-7-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-7-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-8-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-8-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_output/.DS_Store -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_output/output1.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_output/output2.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_output/output3.txt -------------------------------------------------------------------------------- /insight_testsuite/tests/test-9-paymo-trans/paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/insight_testsuite/tests/test-9-paymo-trans/paymo_output/output4.txt -------------------------------------------------------------------------------- /paymo_input/batch_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_input/batch_payment.txt -------------------------------------------------------------------------------- /paymo_input/stream_payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_input/stream_payment.txt -------------------------------------------------------------------------------- /paymo_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_output/.DS_Store -------------------------------------------------------------------------------- /paymo_output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_output/output1.txt -------------------------------------------------------------------------------- /paymo_output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_output/output2.txt -------------------------------------------------------------------------------- /paymo_output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_output/output3.txt -------------------------------------------------------------------------------- /paymo_output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/paymo_output/output4.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/run.sh -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/__pycache__/addedfeatures.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/src/__pycache__/addedfeatures.cpython-35.pyc -------------------------------------------------------------------------------- /src/addedfeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/src/addedfeatures.py -------------------------------------------------------------------------------- /src/antifraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhananjaymehta/InsightDataEngineer-DigitalWallet/HEAD/src/antifraud.py --------------------------------------------------------------------------------