Metadata-Version: 2.4
Name: enthusiast-source-medusa
Version: 1.1.0
Summary: A plugin for Enthusiast that provides a Medusa products importer.
License-File: LICENCE.md
Author: Kuba Szczęśniak
Author-email: kuba.szczęśniak@upsidelab.io
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: enthusiast-common (>=1.3,<2)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# Enthusiast Source Medusa E-Commerce Platform

This Enthusiast plugin enables the import of product data from Medusa.

# Usage
Assumption:
Medusa store is installed at http://localhost:9000/

Fetch products using below commands:
```
from source import MedusaProductSource                                                                                                                                                                                                                                                                       
s = MedusaProductSource(1, {"base_url": "http://localhost:9000/", "api_key": "your-jwt-token-here"})
s.fetch()
```
