{"id":13415639,"url":"https://github.com/awesto/django-shop","last_synced_at":"2025-12-16T17:08:25.145Z","repository":{"id":41429243,"uuid":"1094430","full_name":"awesto/django-shop","owner":"awesto","description":"A Django based shop system","archived":false,"fork":false,"pushed_at":"2023-10-19T01:09:56.000Z","size":9121,"stargazers_count":3260,"open_issues_count":105,"forks_count":1040,"subscribers_count":170,"default_branch":"master","last_synced_at":"2025-04-05T14:01:41.759Z","etag":null,"topics":["django","django-shop","e-commerce"],"latest_commit_sha":null,"homepage":"http://www.django-shop.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/awesto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.rst","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2010-11-19T11:15:48.000Z","updated_at":"2025-04-03T18:59:49.000Z","dependencies_parsed_at":"2024-01-09T05:25:04.334Z","dependency_job_id":"c1e85c58-ae14-4ff0-b156-93a9dd21bd32","html_url":"https://github.com/awesto/django-shop","commit_stats":null,"previous_names":["divio/django-shop"],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesto%2Fdjango-shop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesto%2Fdjango-shop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesto%2Fdjango-shop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesto%2Fdjango-shop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awesto","download_url":"https://codeload.github.com/awesto/django-shop/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248173810,"owners_count":21059594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-shop","e-commerce"],"created_at":"2024-07-30T21:00:50.981Z","updated_at":"2025-12-16T17:08:20.087Z","avatar_url":"https://github.com/awesto.png","language":"Python","funding_links":["https://developer.paypal.com/docs/api/overview/"],"categories":["Python","Third-Party Packages","E-commerce","资源列表","电子商务","E-commerce [🔝](#readme)","Django","Awesome Python"],"sub_categories":["ECommerce","电子商务","E-commerce"],"readme":"# django-SHOP\n\n**Django-SHOP** aims to be a the easy, fun and fast e-commerce counterpart to\n[django-CMS](https://www.django-cms.org/).\n\n[![Build Status](https://travis-ci.org/awesto/django-shop.svg?branch=master)](https://travis-ci.org/awesto/django-shop?branch=master)\n[![PyPI version](https://img.shields.io/pypi/v/django-shop.svg)](https://pypi.python.org/pypi/django-shop)\n[![Python versions](https://img.shields.io/pypi/pyversions/django-shop.svg)](https://pypi.python.org/pypi/django-shop)\n[![Join the chat at https://gitter.im/awesto/django-shop](https://badges.gitter.im/awesto/django-shop.svg)](https://gitter.im/awesto/django-shop?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Software license](https://img.shields.io/pypi/l/django-shop.svg)](https://pypi.python.org/pypi/django-shop)\n[![Twitter Follow](https://img.shields.io/twitter/follow/djangoSHOP.svg?style=social\u0026label=djangoSHOP)](https://twitter.com/djangoSHOP)\n\nHere you can find the [full documentation for django-SHOP](https://django-shop.readthedocs.io/en/latest/).\n\n## Build the database model out of the product's properties – not vice versa\n\nMost e-commerce systems are shipped with a predefined database model for products. But products can\nvary a lot, and it simply is impossible to create a model which fits for all of them. This is\nesspecially true for products with a hierarchy of variants. In many popular e-commerce platforms,\nyou either have far too many attributes per product, and/or the really required attributes are\nmissing.\n\nIn **django-SHOP** implementations, the product models reflect their pysical properties making it\npossible to create complete and deep hierarchies of variations, but without having to fiddle with\nunneeded properties. It furthermore avoids the need for an\n[Entity Attribute Value Model](https://en.wikipedia.org/wiki/Entity–attribute–value_model), which\nis considered a database anti-pattern, because it produces far too many table joins, when filtering\nby property.\n\n\n## Don't build pages using hard-coded templates – compose them\n\nWith the advent of frameworks, such as Angular, React, Vue and Aurelia, building web-applications\nshifted from a page-centric to a component-based approach.\n\nIn **django-SHOP**, you are in full control over the page's layout, since all components are\nencapsulated and independent from each other. This means that instead of adopting the Catalog, Cart,\nCheckout and Order pages, use the **django-CMS** plugin system to compose everything required for\nthose pages.\n\n\n## All Views are either HTML or RESTful services\n\nBrowser based navigation is important, but nowadays it's only one of many channels clients use to\ncommunicate with a web-server. Consider Single Page Applications or other native clients, where we\nuse RESTful APIs instead of pure HTTP.\n\nThis substantially reduces the payload having to be transferred. It furthermore gives the client a\nsmoother user experience, since only the content has to be updated, rather than having to do full\npage reloads.\n\n\n## Programmable cart modifiers\n\nDuring checkout, taxes have to be applied or attributed. Depending on the shipping destination, the\nproduct group and other factors, this computation can either be simple or quite demanding.\n**Django-SHOP** offers a pluggable interface to create modifiers which calculate the cart's totals,\ntaxes and other costs.\n\nThis same interface can be extended to compute the weight and shipping costs. It also can be used\nfor subtracting discounts or to add additional charges. \n\n\n## Programmable workflow for fulfilment and delivery\n\nFulfilling and shipping orders probably requires the most individual adaption for an e-commerce business. \n**Django-SHOP** offers a programmable interface for order by using a finite\nstate machine to adopt the workflow. Each order may have several states, but the only actions\nallowed are limited to explicitly defined state transitions.\n\n\n## It's modular\n\nWhenever possible, extra features should be added by third party libraries. This implies that\n**django-SHOP** aims to provide an API, which allows merchants to add every feature they desire.\n\nCurrently there are third party libraries for several Payment Service Providers, such as\n[PayPal](https://developer.paypal.com/docs/api/overview/), [Stripe](https://stripe.com/docs/api),\n[BS-PayOne](https://www.bspayone.com/DE/en) and [Viveum](https://www.viveum.com/?lang=en).\nAn open interface allows you to add any other provider.\n\nShipping Service Providers may be added as third party library as well. With\n[SendCloud](https://docs.sendcloud.sc/), ship your orders using one or more parcel services\navailable for your region.\n\n\n## Start by building your own demo\n\nInstead of providing an accessible online demo, **django-SHOP** can be set up in less than three\nminutes and preconfigured to your needs. Having access to the product models, you can immediatly\nstart to play arround with, rename, and modify them to reflect the properties of your products.\nThis is the easiest way to get a shop up and running out of the box with the flexibility of a\nwebsite that you could have built from scratch.\n\nIf you want to start with a fresh demo, please use the prepared\n[Cookiecutter template for django-SHOP](https://github.com/awesto/cookiecutter-django-shop)\nand follow the instructions. \n\n\n## Audience of django-SHOP users\n\nSpecifically, we aim at providing a clean, modular and Pythonic/Djangonic implementation of an\ne-commerce framework, that a moderately experienced Django developer should be able to pick up\nand run easily. Pure Django models are used to describe each product type, and so the Django admin\ncan be used to build a minimalistic editor for each of them.\n\n\n## Consultancy\n\nWe provide full consultancy support and are available for building complete e-commerce systems based\non **django-SHOP**. Please contact office@awesto.com for further questions.\n\n\n## Documentation\n\nRead the full documentation on Read-the-docs:\n\n[https://django-shop.readthedocs.io/en/latest/](https://django-shop.readthedocs.io/en/latest/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawesto%2Fdjango-shop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawesto%2Fdjango-shop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawesto%2Fdjango-shop/lists"}