SlideShare une entreprise Scribd logo
1  sur  17
Télécharger pour lire hors ligne
Concepts in Django
Douwe van der Meij
Goldmund, Wyldebeast & Wunderliebe
vandermeij@gw20e.com
github.com/douwevandermeij
Project
INSTALLED_APPS = (
...
'crm',
'webshop',
...
)
Dependencies
● Inter-app foreign
key constraint

crm

Customer

Project

account_nr

● How to reuse
webshop without
crm?

Order
order_nr

webshop

OrderLine
Concepts
Define:
● Producers
○ Contain data

Producer

● Consumers
○ Don’t contain data
○ Need a producer

Consumer
Customer concept
The concept we’re talking about:
● A customer
○ Has a number
Applications with concepts
crm
Producer

Customer

Project

account_nr

webshop
Consumer

Customer
number

Order

OrderLine
Define Producers
Conceptname

CONCEPTS = {
Producer model
'CustomerConcept': {
'crm.models.Customer': {
'number': 'account_nr',
Field mapping
},
},
}

● Map to existing models
Consume
class Order(models.Model):
customer = models.ForeignKey(CustomerConcept)
order_nr = models.IntegerField()
Dependencies
crm

● ORM level
Customer

Customer
CustomerConcept
concepts
Order
webshop

Project
Dependencies

crm

Customer

Order
webshop

Project

● Database level
The magic (1/4)
from django.conf import settings

for concept_name, mapping in settings.CONCEPTS.items():
for klass, fields in mapping.items():
...

● The concepts app
○ Loops over settings.CONCEPTS
The magic (2/4)
from concepts.util import load_class

● Create a dynamic class
● With
in

...
concept = type(
proxy = True
Meta
concept_name,
(load_class(klass),),
{
'__module__': __name__,
'Meta': type('Meta', (), {'proxy': True}),
},
)
...
The magic (3/4)
...
for _property, _field in fields.items():
if not hasattr(concept, _property):
setattr(
concept,
_property,
property(
lambda self: getattr(self, _field),
lambda self, value:
setattr(self, _field, value),
),
)
...

● Create properties for
all fields
The magic (4/4)
import concepts

● Bind the concept to
the concepts module

...
setattr(concepts, concept_name, concept)
Conclusion
● Concepts make apps reusable
○ Without dependencies

● The only dependency
○ Is a concept

● The concept producer
○ You may choose yourself
○ On existing apps
Try it yourself
● github.com /
douwevandermeij /
concepts_example
● Related work
○ Django Swappable Models
■ Like swapping auth.User model in 1.5+
○ Zope Component Architecture
■ Interfaces: implement/adapt
Thank you!
Douwe van der Meij
Goldmund, Wyldebeast & Wunderliebe
vandermeij@gw20e.com
github.com/douwevandermeij

Contenu connexe

Similaire à Concepts in Django

How to Build a ML Platform Efficiently Using Open-Source
How to Build a ML Platform Efficiently Using Open-SourceHow to Build a ML Platform Efficiently Using Open-Source
How to Build a ML Platform Efficiently Using Open-SourceDatabricks
 
GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production
GraphTour - The Workshop - Device Tracking in Practice: From Idea to ProductionGraphTour - The Workshop - Device Tracking in Practice: From Idea to Production
GraphTour - The Workshop - Device Tracking in Practice: From Idea to ProductionNeo4j
 
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptx
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptxIndore MuleSoft Meetup #5 April 2022 MDynamics 65.pptx
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptxIndoreMulesoftMeetup
 
Virtual Sample Software Explained
Virtual Sample Software ExplainedVirtual Sample Software Explained
Virtual Sample Software ExplainedGateway 3D Ltd
 
Vehicle Insurance Purchasing System
Vehicle Insurance Purchasing SystemVehicle Insurance Purchasing System
Vehicle Insurance Purchasing SystemOstap Kharysh
 
3 d printing business ideas
3 d printing business ideas3 d printing business ideas
3 d printing business ideasAbhishek Kapoor
 
Go headless with shopify using vsf next by Viral Rana
Go headless with shopify using vsf next   by Viral RanaGo headless with shopify using vsf next   by Viral Rana
Go headless with shopify using vsf next by Viral RanaViral Rana
 
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...New Horizons Madrid
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013Vivian Motti
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013Vivian Motti
 
Online Shopping Platform Design Proposal PowerPoint Presentation Slides
Online Shopping Platform Design Proposal PowerPoint Presentation SlidesOnline Shopping Platform Design Proposal PowerPoint Presentation Slides
Online Shopping Platform Design Proposal PowerPoint Presentation SlidesSlideTeam
 
Recurring Revenue: Custom pricing models against standardized billing tools, ...
Recurring Revenue: Custom pricing models against standardized billing tools, ...Recurring Revenue: Custom pricing models against standardized billing tools, ...
Recurring Revenue: Custom pricing models against standardized billing tools, ...CzechDreamin
 
Final Year Project.pptx
Final Year Project.pptxFinal Year Project.pptx
Final Year Project.pptxMehwishMug
 
Ecommerce Website Design Proposal PowerPoint Presentation Slides
Ecommerce Website Design Proposal PowerPoint Presentation SlidesEcommerce Website Design Proposal PowerPoint Presentation Slides
Ecommerce Website Design Proposal PowerPoint Presentation SlidesSlideTeam
 
Lead AI incubations as a Product manager
Lead AI incubations as a Product manager Lead AI incubations as a Product manager
Lead AI incubations as a Product manager Debapriya Basu
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...youngculture
 
Introduction of CMS Technology to the People of Tanay, Rizal Philippines
Introduction of CMS Technology to the People of Tanay, Rizal PhilippinesIntroduction of CMS Technology to the People of Tanay, Rizal Philippines
Introduction of CMS Technology to the People of Tanay, Rizal PhilippinesEleison Cruz
 
Harnessing 3D for eCommerce
Harnessing 3D for eCommerceHarnessing 3D for eCommerce
Harnessing 3D for eCommerceGateway 3D Ltd
 

Similaire à Concepts in Django (20)

How to Build a ML Platform Efficiently Using Open-Source
How to Build a ML Platform Efficiently Using Open-SourceHow to Build a ML Platform Efficiently Using Open-Source
How to Build a ML Platform Efficiently Using Open-Source
 
GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production
GraphTour - The Workshop - Device Tracking in Practice: From Idea to ProductionGraphTour - The Workshop - Device Tracking in Practice: From Idea to Production
GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production
 
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptx
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptxIndore MuleSoft Meetup #5 April 2022 MDynamics 65.pptx
Indore MuleSoft Meetup #5 April 2022 MDynamics 65.pptx
 
Virtual Sample Software Explained
Virtual Sample Software ExplainedVirtual Sample Software Explained
Virtual Sample Software Explained
 
Vehicle Insurance Purchasing System
Vehicle Insurance Purchasing SystemVehicle Insurance Purchasing System
Vehicle Insurance Purchasing System
 
3 d printing business ideas
3 d printing business ideas3 d printing business ideas
3 d printing business ideas
 
Go headless with shopify using vsf next by Viral Rana
Go headless with shopify using vsf next   by Viral RanaGo headless with shopify using vsf next   by Viral Rana
Go headless with shopify using vsf next by Viral Rana
 
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...
Curso 20485 Advanced Windows Store App Development using C# - NEW HORIZONS MA...
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013
 
FrontEnd.pdf
FrontEnd.pdfFrontEnd.pdf
FrontEnd.pdf
 
Online Shopping Platform Design Proposal PowerPoint Presentation Slides
Online Shopping Platform Design Proposal PowerPoint Presentation SlidesOnline Shopping Platform Design Proposal PowerPoint Presentation Slides
Online Shopping Platform Design Proposal PowerPoint Presentation Slides
 
Recurring Revenue: Custom pricing models against standardized billing tools, ...
Recurring Revenue: Custom pricing models against standardized billing tools, ...Recurring Revenue: Custom pricing models against standardized billing tools, ...
Recurring Revenue: Custom pricing models against standardized billing tools, ...
 
Final Year Project.pptx
Final Year Project.pptxFinal Year Project.pptx
Final Year Project.pptx
 
Ecommerce Website Design Proposal PowerPoint Presentation Slides
Ecommerce Website Design Proposal PowerPoint Presentation SlidesEcommerce Website Design Proposal PowerPoint Presentation Slides
Ecommerce Website Design Proposal PowerPoint Presentation Slides
 
Introduction of CRM in Odoo.pdf
Introduction of CRM in Odoo.pdfIntroduction of CRM in Odoo.pdf
Introduction of CRM in Odoo.pdf
 
Lead AI incubations as a Product manager
Lead AI incubations as a Product manager Lead AI incubations as a Product manager
Lead AI incubations as a Product manager
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
 
Introduction of CMS Technology to the People of Tanay, Rizal Philippines
Introduction of CMS Technology to the People of Tanay, Rizal PhilippinesIntroduction of CMS Technology to the People of Tanay, Rizal Philippines
Introduction of CMS Technology to the People of Tanay, Rizal Philippines
 
Harnessing 3D for eCommerce
Harnessing 3D for eCommerceHarnessing 3D for eCommerce
Harnessing 3D for eCommerce
 

Dernier

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Dernier (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

Concepts in Django