Skip to main content

Welcome to Zinc

Zinc is an API for making e-commerce purchases. This package allows you to easily access the API and make purchases on Amazon through the command line. It also offers wrappers around the Zinc API that can be used easily in python code.

The module features:
  • Interactive wizard for purchasing Amazon items from the command line

  • Simple order script that reads your order information from a json file and places the order

  • Python module that allows you to write your own scripts on top of the Zinc API

Quick Start

For starting quickly, you can either clone the repo or use the pip python package manager.:

sudo pip install zinc

Once you’ve installed the Zinc module, you can start using it like so:

python -m zinc

This will bring up an interactive wizard interface that you can use the make Amazon purchases. Follow the instructions in the wizard, and you’ll be able to make a purchase directly from your terminal!

CLI Options

There are other ways of using the Zinc CLI. You can create a json file which will store your shipping and billing information. You can run python -m zinc -h to get help for the commands that you can use. For example, I might have the file /home/john/zinc_cli/examples/my_information.json with the following contents:

{
  "shipping_address": {
    "first_name": "Tim",
    "last_name": "Beaver",
    "address_line1": "77 Massachusetts Avenue",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  },
  "billing_address": {
    "first_name": "Alyssa",
    "last_name": "Hacker",
    "address_line1": "77 Massachusetts Avenue",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  }
}

Then I could run the cli with the -f option pointing to this shipping address file so that I wouldn’t have to enter my shipping address again in the interactive wizard:

python -m zinc -f /home/john/zinc_cli/examples/my_information.json

You can include credit card information if you’d like (we have an example in the examples/sample_information.json for reference), but we highly discourage you from including it. It’s a BAD idea to leave your credit card information on your hard drive in plaintext.

The examples folder has an example file that has fake prepopulated information that you can try. You won’t be able to complete a full purchase with it, though, because it’s a fake credit card number. To run the wizard with the fake information, you can do:

python -m zinc -f examples/sample_information.json

Simple Order

If you don’t like going through the process of making orders through the interactive cli, you can also use the Zinc simple order module. This is a python module which allows you to make orders by pre-specifying all of your required fields in a python dictionary or a json file.

You can see an example of the simple order format in examples/simple_order.json, reproduced below:

{
  "client_token": "public",
  "retailer": "amazon",
  "product_id": "B007JR5304",
  "quantity": 1,
  "shipping_address": {
    "first_name": "Ben",
    "last_name": "Bitdiddle",
    "address_line1": "77 Massachusetts Avenue",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  },
  "is_gift": false,
  "customer_email": "benbitdiddle@gmail.com",
  "shipping_preference": "cheapest",
  "payment_method": {
    "number": "5555555555554444",
    "security_code": "123",
    "expiration_month": 1,
    "expiration_year": 2015
  },
  "billing_address": {
    "first_name": "Alyssa",
    "last_name": "Hacker",
    "address_line1": "84 Massachusetts Ave",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  }
}

Once you’ve written this down into a json file, you can specify the -s option (for simple order) and you can run:

python -m zinc -s -f examples/simple_order.json

To make simple orders, you just need to prepopulate all the relevant information like shipping address, billing address, payment method information, etc. The product_id field corresponds to the Amazon Standard Identification Number (ASIN), which can be found in the Amazon product url. You will aslo need to set the shipping_preference field, explained in the next section.

Shipping Methods

For the shipping_preference item, you can set different preferences for how you want your items shipped. The available preferences are:

  • cheapest: Select the cheapest shipping method available

  • second: Select second day shipping

  • standard: Select the standard shipping method

Python Usage

Instead of using the CLI, you can also import the zinc module into one of your python scripts. This allows you to customize and automate your Amazon purchases.:

from zinc import ZincSimpleOrder

simple_order = ZincSimpleOrder()
result = simple_order.process({
  "client_token": "public",
  "retailer": "amazon",
  "product_id": "B007JR5304",
  "quantity": 1,
  "shipping_address": {
    "first_name": "Ben",
    "last_name": "Bitdiddle",
    "address_line1": "77 Massachusetts Avenue",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  },
  "is_gift": false,
  "customer_email": "benbitdiddle@gmail.com",
  "shipping_preference": "cheapest",
  "payment_method": {
    "number": "5555555555554444",
    "security_code": "123",
    "expiration_month": 1,
    "expiration_year": 2015
  },
  "billing_address": {
    "first_name": "Alyssa",
    "last_name": "Hacker",
    "address_line1": "84 Massachusetts Ave",
    "address_line2": "",
    "zip_code": "02139",
    "city": "Cambridge",·
    "state": "MA",
    "country": "US"
  }
})

print result

You can check out an example python script that processes orders from a python file concurrently. The script is in examples/multi_process.py.

Contact

If you would like to learn more about Zinc or place a large number of orders on Amazon in an automated way, please contact <support@zinc.io>. We’ve got infrastructure set up to help you out! nn

Release files for zinc 0.1.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zinc 0.1.9
File Size Uploaded
Zinc-0.1.9.tar.gz 13.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for zinc 0.1.9
File Interpreter ABI Platform
Zinc-0.1.9.linux-x86_64.tar.gz Details

Total release size: 35.5 kB

Release files / Zinc-0.1.9.tar.gz

Download URL Zinc-0.1.9.tar.gz
Size 13.0 kB
Tags Source
SHA-256 checksum
How to use checksums
18a3e791219d3fb8f74b9a66cfa7c75215a12c45d77e5c48ed97115eced9ddf2
BLAKE2b-256 checksum
How to use checksums
27bcf61d70b195c6e08b58b29b9515404bbeac30a5611f49e3d938ba6c0a9e4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / Zinc-0.1.9.linux-x86_64.tar.gz

Download URL Zinc-0.1.9.linux-x86_64.tar.gz
Size 22.4 kB
Tags Source
SHA-256 checksum
How to use checksums
648c3104633f473e98c9c41f06d359bcd7d13045881ef18509cb49f71149b7f1
BLAKE2b-256 checksum
How to use checksums
a704170654c225cef04f7755e4701645be95f26e4fa0f55d6205033f94e065ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

0.1.16

2 release files

0.1.15

2 release files

0.1.14

2 release files

0.1.13

2 release files

0.1.12

2 release files

0.1.11

2 release files

0.1.10

2 release files

This release

0.1.9 This release

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page