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.
Release files for django-shopit 0.5.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-shopit-0.5.2.tar.gz | 92.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_shopit-0.5.2-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 220.9 kB
Release files / django-shopit-0.5.2.tar.gz
| Download URL | django-shopit-0.5.2.tar.gz |
|---|---|
| Size | 92.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
25dd5700038e5f99c2b203c0e577efdb1cd6c486492dc7a1c2eb11ce06f47e7e
|
|
BLAKE2b-256 checksum How to use checksums |
0b00513708fd360dc515833650760f0dd3ae974647d9eaa52a404a371d64067c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / django_shopit-0.5.2-py2.py3-none-any.whl
| Download URL | django_shopit-0.5.2-py2.py3-none-any.whl |
|---|---|
| Size | 128.6 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
e7e5bbb3568441a86cbd964ad037b899d01f34e2df3b9bf3a660e0f1c9891d3e
|
|
BLAKE2b-256 checksum How to use checksums |
faf51ea6bd4c19c661eb85d41fc0e5392c6bc56153db26db474271e6deb30489
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|