Skip to content

Python script to iterate through a list of credit/debit cards and buy an Amazon.com gift cards of a specified amount.

License

Notifications You must be signed in to change notification settings

zoujiangtao159/amazon-auto-reload

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

amazon-auto-reload

This script automates the process of reloading Amazon gift cards with configurable amounts and transactions per execution. This is useful to maximize credit and/or debit card rewards or to prevent the closure of a credit account due to inactivity.

Dependencies

  • Python 2.7 or newer
  • Selenium
  • Chromedriver

Instructions

  1. Install Selenium by typing pip install -U selenium into your command line
  2. Download Chromedriver and place into the root directory (where run.py is)
  3. Create and/or modify config.json in the root directory with your Amazon credentials and the cards you wish to reload
{
    "username": "amazon_username",
    "password": "amazon_password",
    "cards": [
        { 
            "cardNumber": "XXXXXXXXXXXX5555", 
            "reloadAmount": 0.50,
            "reloadTimes": 1,
            "enabled": false
        },
        {
            "cardNumber": "XXXXXXXXXXXX1234", 
            "reloadAmount": 1.25,
            "reloadTimes": 3,
            "enabled": true
        }
    ],
    "reloadDelay": 300
}
  1. Execute run.py

About

Python script to iterate through a list of credit/debit cards and buy an Amazon.com gift cards of a specified amount.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%