Proof of concept of Mailchimp's Transactional API
Checkout the intro video :D
This is meant for Grasshopperfund use, though this repository does not have code used in implementation. This can be referred to compare the purpose and functionality of the following Mailchimp APIs:
- The Official Mailchimp Marketing Python API
- The Official Mailchimp Transactional Python API
- Third Party Vingt Cinq Mailchimp Marketing Python API
👩👧 Clone repository
git clone https://github.com/grasshopperfund/mailchimp-test
Navigate into the repository
$ cd mailchimp-test
🐍 Create Python virtual environment
There are a good amount of depencies for this project -- it will be good practice to use a virtual environment, albeit not necessary.
macOS/Linux:
python3 -m venv env
Windows Command Line or Powershell:
python -m venv env
The last argument is the location to create the virtual environment. Generally, you can just create this in your project and call it env.
✅ Activate virtual environment
macOS/Linux:
source env/bin/activate
Windows Command Line:
.\env\Scripts\activate.bat
Windows Powershell:
.\env\Scripts\activate.ps1
📦 Install packages
python -m pip install -r requirements.txt
Just like any other python script:
python ./<script_name>.py