Fully featured shop application built on djangoSHOP framework.
Project description
Shopit
A fully featured shop application built on djangoSHOP framework.
This project aims to provide a quick & easy way to set up a fully featured shop without much hassle.
Features
Shopit comes with the most useful features that a classic shops needs, out of the box.
Here's what you can expect:
- Easily manage Products and their variations with custom Attributes.
- Attach images, videos & files on products.
- Set Up-sell, Cross-sell and other customized Relations between products.
- Create custom checkbox Flags for products and categorization.
- Group products in Category, Brand and Manufacturer groups.
- Create discounts and promotional codes with Modifiers.
- Add custom Taxes for categories and products.
- Enable customer Reviews on products.
Requirements
- Django 1.11
- django-shop as shop framework.
- django-cms for placeholders.
- django-parler to translate everything.
- django-mptt for tree management.
- django-admin-sortable2 to sort stuff.
- django-measurement to add measurements.
Installation
Install using pip:
pip install django-shopit
You should follow django-cms & django-shop installation guide first, and then add the following to your settings:
INSTALLED_APPS = [
...
'adminsortable2',
'mptt',
'parler',
'shopit',
]
SHOP_APP_LABEL = 'shopit'
SHOP_PRODUCT_SUMMARY_SERIALIZER = 'shopit.serializers.ProductSummarySerializer'
SHOP_CART_MODIFIERS = (
'shop.modifiers.DefaultCartModifier',
'shopit.modifiers.ShopitCartModifier',
...
)
Urls
There are two ways to configure the urls. First would be to add to your urls.py
:
urlpatterns = [
url(r'^shop/', include('shopit.urls')),
...
]
The second option is to use django-cms apphooks. Shopit comes with a couple of those for different application parts. ShopitApphook
is the main one, and one that should always be attached to a page (if the urls are not already added). Then there are other optional apphooks for account, categorization & products. If you want to keep it simple, and not have to set every application part individually. You can add to your settings:
SHOPIT_SINGLE_APPHOOK = True
This will load all the neccesary urls under the ShopitApphook
.
Documentation
Full documentation is availiable on ReadTheDocs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-shopit-0.5.2.tar.gz
.
File metadata
- Download URL: django-shopit-0.5.2.tar.gz
- Upload date:
- Size: 92.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25dd5700038e5f99c2b203c0e577efdb1cd6c486492dc7a1c2eb11ce06f47e7e |
|
MD5 | 1916549ecfd3546c8fd56d722861e27b |
|
BLAKE2b-256 | 0b00513708fd360dc515833650760f0dd3ae974647d9eaa52a404a371d64067c |
File details
Details for the file django_shopit-0.5.2-py2.py3-none-any.whl
.
File metadata
- Download URL: django_shopit-0.5.2-py2.py3-none-any.whl
- Upload date:
- Size: 128.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7e5bbb3568441a86cbd964ad037b899d01f34e2df3b9bf3a660e0f1c9891d3e |
|
MD5 | 5ffe15dcfe0ef21a6e7ac123f6670978 |
|
BLAKE2b-256 | faf51ea6bd4c19c661eb85d41fc0e5392c6bc56153db26db474271e6deb30489 |