Data Tools
Apps, packages, and modules related to data management: import/export, fixtures, serialization and formats, handling large QuerySets, etc.
Search & Filter
| Package | django-debug-toolbar | django-import-export | djongo | python-benedict | Django REST Pandas | django-adminactions | django-mysql | django-pandas | Django MongoDB Backend | django-jinja-knockout |
|---|---|---|---|---|---|---|---|---|---|---|
|
Description
|
A configurable set of panels
that display various debug information about the current requ… |
Django application and library
for importing and exporting data with admin integration. |
Django and MongoDB database
connector |
:blue_book: dict subclass with
keylist/keypath support, built-in I/O operations (base64, c… |
📊📈 Serves up Pandas dataframes
via the Django REST Framework for use in client-side (i.e. … |
collection of useful django
actions to use with ModelAdmin or AdminSite. |
:dolphin: :horse: Extensions
to Django for use with MySQL/MariaDB |
Tools for working with pandas
in your Django projects |
Django MongoDB Backend
|
Django datatables and widgets,
both AJAX and traditional. Display-only ModelForms. ModelFo… |
|
Category
|
App | App | Other | Other | App | App | App | App | Other | Framework |
|
Using This
|
541
|
24
|
8
|
1
|
26
|
2
|
1
|
4
|
0
|
1
|
|
Python 3?
|
Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
Dev Status
|
Production/Stable | Unknown | Alpha | Production/Stable | Production/Stable | Unknown | Production/Stable | Alpha | Production/Stable | Production/Stable |
|
Version (PyPI)
|
7.0.0 | 4.4.1 | 1.3.7 | 0.37.0 | 1.1.0 | 2.4 | 4.19.0 | 0.6.7 | 6.0.3 | 2.2.1 |
|
Stars
|
8,372 | 3,328 | 1,934 | 1,607 | 1,276 | 700 | 588 | 811 | 223 | 143 |
|
Forks
|
1,089 | 828 | 355 | 47 | 128 | 115 | 115 | 120 | 33 | 29 |
|
Commits
|
|
|
|
|
|
|
|
|
|
|
|
Updated
|
18 Jun 2026 | 27 May 2026 | 28 May 2026 | 9 May 2026 | 10 Feb 2026 | 19 May 2026 | 14 Jun 2026 | 30 May 2025 | 16 Jun 2026 | 7 Aug 2025 |
|
License
|
BSD-3-Clause | Custom | AGPL | Custom | MIT | Custom | MIT | BSD License | Custom | LGPL-3.0 |
|
Links
|
||||||||||
|
Feature Comparison
(click cells to edit)
|
||||||||||
|
Used For
|
—
|
Import/Export
|
—
|
—
|
—
|
—
|
Approximate Counting, Efficient iteration over large QuerySets, NoSQL lookups with HANDLER
|
—
|
—
|
—
|
|
Import
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Export
|
—
|
—
|
—
|
—
|
|
—
|
—
|
—
|
—
|
—
|
|
Fixtures
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Querying
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Synchronization
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Backup
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
—
|
A configurable set of panels that display various debug information about the current request/response.
Django application and library for importing and exporting data with admin integration.
:blue_book: dict subclass with keylist/keypath support, built-in I/O operations (base64, csv, html, ini, json, pickle, plist, query-string, toml, xls, xml, yaml), s3 support and many utilities.
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
:dolphin: :horse: Extensions to Django for use with MySQL/MariaDB
Django datatables and widgets, both AJAX and traditional. Display-only ModelForms. ModelForms / inline formsets with AJAX submit and validation. Works with Django templates.
Showing 10 of 72 packages in this grid.
Features Being Compared
Used For
FilteredRawQuerySet allows to use raw SELECT for Django paginator. ListQuerySet allows to use Python lists (including prefetched reverse relationships) in Django ORM calls and for Django paginator.
Import
Export
Fixtures
Saving the lists of fixtures then checking which fixtures were already loaded allows to execute Selenium tests partially, increasing the speed of test development.
Querying
Implements FilteredRawQuerySet which supersedes Django RawQuerySet with .filter() / .exclude() / .order_by() and SQL-level slicing. Implements ListQuerySet for Python lists, including prefetched reverse relationships.