"Contribute to Open Source: the right way" is my free and open source book, about... Open Source!
It will help you improve your skills and understand how to start this journey!
It will help you improve your skills and understand how to start this journey!
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.
I surf every day a lot on Reddit, and today I found this discussion but is not very welcoming, as there is just the package name for Django with no so much information and without a link…
I am here for you and I did that (mainly for me, otherwise I will forget all of them easily):
Tools
- https://pypi.org/project/django-auto-prefetch/ – Automatically prefetch foreign key values as needed (if the field’s value has not yet been loaded then auto-prefetch will prefetch the field for all model instances loaded by the same QuerySet)
- https://django-hijack.readthedocs.io/en/latest/ – Log in and work on behalf of other users without having to know their credentials
- https://drf-spectacular.readthedocs.io/ – Generate automatically your documentation for DjangoRestFramework automatically
- https://django-filter.readthedocs.io – A simple way to filter down a queryset based on parameters a user provides
- https://django-allauth.readthedocs.io – Set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication
- https://django-model-utils.readthedocs.io – A set of fields (like Status or Monitor), new model types (mainly about time)
- https://django-extensions.readthedocs.io – a collection of custom extensions (management commands, additional database fields, admin extensions and much more)
- https://pypi.org/project/django-cors-headers/ – adds Cross-Origin Resource Sharing (CORS) headers to responses (This allows in-browser requests to your Django application from other origins)
- https://github.com/jazzband/django-silk – a live profiling and inspection tool for the Django framework (intercepts and stores HTTP requests and database queries before presenting them in a user interface)
- https://django-simple-history.readthedocs.io – stores Django model state on every create/update/delete
- https://github.com/viewflow/django-fsm – simple declarative state management for django models
- https://github.com/vitalik/django-ninja – Fast, Async-ready, Openapi, type hints based framework for building APIs (an alternative to DRF)
- https://docs.graphene-python.org/projects/django/en/latest/ – GraphQL apis for Django
- https://django-configurations.readthedocs.io/en/stable/ – eases Django project configuration by relying on the composability of Python classes
- https://model-bakery.readthedocs.io/ – a smart way to create fixtures for testing in Django (with a simple and powerful API you can create many objects with a single line of code)
- https://pypi.org/project/whitenoise/ – Radically simplified static file serving for WSGI applications (with Django support)
- https://github.com/adamchainz/django-browser-reload – Automatically reload your browser in development
- https://bishwas-py.github.io/djapy/ – let you make RESTful APIs within Django with as no boilerplate, using plain Python and Django (not another framework)
- https://pypi.python.org/pypi/django-webtest/ – instant integration of Ian Bicking’s WebTest with Django’s testing framework (integration tests)
Admin
- https://pypi.org/project/django-widget-tweaks/ – Tweak the form field rendering in templates, not in python-level form definitions (Altering CSS classes and HTML attributes is supported)
- https://django-crispy-forms.readthedocs.io/ – A filter that change the HTML to use different CSS frameworks for your forms
- https://github.com/unfoldadmin/django-unfold – Compose beautiful Django admin interfaces (efficiently compose stunning Django administration panels, solving most common UI/UX problems)
- https://django-jazzmin.readthedocs.io/ – a drop-in app to jazz up your django admin site, with plenty of things you can easily customise, including a built-in UI customizer
- https://pypi.org/project/django-sql-explorer/ – Quickly write and share SQL queries in a simple, usable SQL editor, preview the results in the browser, share links, download CSV, JSON, or Excel files
Frontend
- https://django-tables2.readthedocs.io/ – From a QuerySet generate automatically HTML table in a template