https://github.com/justinforlenza/sendy-shopify-sync
Sync your Shopify Customers to your Sendy Lists
https://github.com/justinforlenza/sendy-shopify-sync
python sendy sendy-server shopify shopify-api
Last synced: 2 months ago
JSON representation
Sync your Shopify Customers to your Sendy Lists
- Host: GitHub
- URL: https://github.com/justinforlenza/sendy-shopify-sync
- Owner: justinforlenza
- License: mit
- Created: 2018-03-22T16:40:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-22T18:57:50.000Z (over 8 years ago)
- Last Synced: 2025-07-25T11:33:17.145Z (12 months ago)
- Topics: python, sendy, sendy-server, shopify, shopify-api
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sendy Shopify Sync
Use this Python script to synchronize your Shopify Customers with your Sendy Mailing Lists
## Installation
Copy the `sync.py` script to wherever you want it to run. Reccomeneded on a server where you can create a cron-job for continous syncing.
This script relies on the ShopifyAPI package and the pysendy package. Install them individually or use the included `requirements.txt` file.
Change the variables in the script file for your environment
```
API_KEY = '' # Your Shopify API KEY
PASSWORD = '' # Your Shopify API Password
STORE_URL = '' # Shopify Store SubDomain e.g. my-store
SENDY_URL = '' # Sendy URL e.g sendy.mydomain.com
SENDY_LIST = '' # Sendy Subscriber List(The subscriber list number on sendy)
```