Git Product home page Git Product logo

pay-fake-api's Introduction

pay-fake-api

This repo allows to use a (too) simple payment API from your localhost (also available online). Pull requests are welcomed!

Quick Start:

from requests import get

card_details = {
    'card_number': 4242420000000000, # Python int object, Accepted cards numbers are in the file 'card_numbers.csv'
    'card_cvc': 987, # Python int object, Any int is accepted 
    'card_name': 'Random Name', # Python str object, 
    'card_expiration_date': '12/2020' # Date in format %m/%Y
}

response = get('http://pay-fake.herokuapp.com/', data=card_details).json()
print(response)

This prints:

{'Payment Status': 'Payment Received'}

If card_name is 'Misionsio Salinas' the payment is rejected or the card_number is not in the accepted card_numbers list the output would be:

{'Payment Status': 'Payment Error. Check your card details or if you have enough fonds'}

Another alternative is to use your local server

$ git clone repo && cd repo
$ pip3 install virtualenv && virtualenv .env && source .env/bin/activate
(.env) $ pip install -r requirements.txt
(.env) $ python app.py

Usage: Once your local server is up and running, replace the line

response = get('http://pay-fake.herokuapp.com/', data=card_details).json()

with

response = get('http://localhost:5000/', data=card_details).json()

to use the API hosted on your local machine.

pay-fake-api's People

Contributors

claudio9701 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.