Skip to content

josesanch/prestaorm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PRESTASHOP Apis based on django ORM

What's that?

Is a library to connect with the apis of a prestashop website.

How to use

In a similar way to django orm

Using it

# Configure
from prestaorm import Api
Api.config(url, key)

# Use the api
from prestaorm.models import Product

# Get a list of instances of products
products = Product.objects.filter(name="Product%").sort_by("name")

# Get one instance
product, _ = Product.objects.get_or_create(name="Product1", reference="REF1")
product.price = 8
product.save()

Work in progress

This is a work in progress. I'm implementing only the models that I would need. Extra help is welcome.

About

Using prestashop api like an ORM

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages