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-mysql | django-pandas | django-adminactions | Django MongoDB Backend | faker-file |
|---|---|---|---|---|---|---|---|---|---|---|
|
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. … |
:dolphin: :horse: Extensions
to Django for use with MySQL/MariaDB |
Tools for working with pandas
in your Django projects |
collection of useful django
actions to use with ModelAdmin or AdminSite. |
Django MongoDB Backend
|
Create files with fake data.
In many formats. With no efforts. |
|
Category
|
App | App | Other | Other | App | App | App | App | Other | Other |
|
Using This
|
541
|
24
|
8
|
1
|
26
|
1
|
4
|
2
|
0
|
1
|
|
Python 3?
|
Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
Dev Status
|
Production/Stable | Unknown | Alpha | Production/Stable | Production/Stable | Production/Stable | Alpha | Unknown | Production/Stable | Beta |
|
Version (PyPI)
|
6.3.0 | 4.4.1 | 1.3.7 | 0.36.0 | 1.1.0 | 4.19.0 | 0.6.7 | 2.4 | 6.0.3 | 0.19.1 |
|
Stars
|
8,355 | 3,321 | 1,935 | 1,605 | 1,276 | 588 | 811 | 701 | 221 | 104 |
|
Forks
|
1,082 | 825 | 355 | 48 | 128 | 115 | 120 | 114 | 33 | 10 |
|
Commits
|
|
|
|
|
|
|
|
|
|
|
|
Updated
|
7 May 2026 | 5 May 2026 | 26 Feb 2026 | 27 Apr 2026 | 10 Feb 2026 | 29 Apr 2026 | 30 May 2025 | 3 Apr 2025 | 1 May 2026 | 8 Mar 2026 |
|
License
|
BSD-3-Clause | Custom | AGPL | Custom | MIT | MIT | BSD License | Custom | Custom | MIT |
|
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
Showing 10 of 73 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.