Metadata-Version: 2.1
Name: artd-shopify
Version: 0.0.8
Summary: ArtD Shopify.
Home-page: https://www.artd.com.co/
Author: Jonathan Urzola
Author-email: jonathan@artd.com.co
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE

ArtD Shopify
============
ArtD Shopify is a package that connects with a store developed in Shopify and extracts products, their variants, prices, stock and images and other data.
---------------------------------------------------------------------------------------------------------------------------------------------------------
1. Add to your INSTALLED_APPS setting like this:

.. code-block:: python

    INSTALLED_APPS = [
        ...
        'django-json-widget'
        'artd_location',
        'artd_partner',
        'artd_product',
        'artd_product_price',
        'artd_stock',
        'artd_shopify',
    ]
2. Run the migration commands:
   
.. code-block::
    
        python manage.py makemigrations
        python manage.py migrate


3. Run the seeder data:
   
.. code-block::

        python manage.py create_countries
        python manage.py create_colombian_regions
        python manage.py create_colombian_cities
        python manage.py create_taxes

4. After you've installed the migrations and set up login details, you can import the information from Shopify
   
.. code-block::
        
        python manage.py import_shopify_product <<partner_slug>>

