Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

base_cms.py

Jordan Banasik edited this page Nov 18, 2019 · 1 revision

CMS Object

class CMS():
    def __init__(self, vendor):
        if vendor['cms'] == 'shopify':
            self.cms = Shopify(vendor['url'])

Example:

cms = CMS({
    "name": "Dixie Mech",
    "url": "https://dixiemech.store",
    "dataname": "dixiemech_store",
    "cms": "shopify",
    "scrape": True,
    "currency": False,
    "uuid": "94adcef3-f143-4aa6-8c59-daf6dfe0cdce"
})
Clone this wiki locally