django-fiber
Django Fiber - a simple, user-friendly CMS for all your Django projects
What it is and what it does
Django Fiber is a simple, Django-based CMS that has been in production use since 2011. It provides a web interface for managing page hierarchies and content, integrated with Django's admin and backed by a REST API. The package depends on django-mppt for tree structures, django-compressor for asset optimization, djangorestframework for API endpoints, and easy-thumbnails for image handling.
The project is currently in maintenance mode—it receives updates to stay compatible with current Django and dependency releases, but no new features are planned. It is suitable for projects that need straightforward page and content management without the complexity of larger CMS platforms. Setup involves adding apps to INSTALLED_APPS, configuring middleware, and including Fiber's URL patterns.
Use it for:
- Build a simple website with editable pages and hierarchical content structure managed through Django admin.
- Add a lightweight CMS layer to an existing Django project without replacing the entire application.
- Serve page content via REST API for headless or decoupled frontend consumption.
- Manage image assets and thumbnails alongside page content using integrated image handling.
- Create a multi-page site where non-technical users can edit content through a web interface.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Django Fiber is a lightweight Django CMS that lets you manage page content and structure through a web interface, built on top of Django's admin and REST API.
Yes, if you need a lightweight, stable CMS for Django projects and accept maintenance-mode constraints. The package is production-stable, has low install friction, carries no known vulnerabilities, and works with current Django versions (3.2–4.1). However, do not install if you require active feature development or support for Django versions beyond 4.1—the last release was in October 2022, and no new features will be added.
Install
django-fiber on PyPI
pip
pip install django-fiberuv
uv add django-fiberpoetry
poetry add django-fiberInstalling django-fiber
Before you install
Low install friction with a pure-Python wheel distribution. Maintenance status is active but in 'maintenance mode'—updates track Django and dependency releases, but no new features are planned. Last release was 1406 days ago; repository remains active with recent commits.
License in practice
Licensed under Apache License, Version 2.0 (permissive). You can use, modify, and distribute the package freely in commercial and private projects with minimal restrictions.
Quickstart
pip install django-fiber
# In settings.py INSTALLED_APPS:
INSTALLED_APPS = (
'mptt',
'compressor',
'easy_thumbnails',
'fiber',
)
# In urls.py:
from fiber.views import page
urlpatterns = [
path('api/v2/', include('fiber.rest_api.urls')),
path('admin/fiber/', include('fiber.admin_urls')),
re_path('', page),
]
Requires Django 3.2, 4.0, 4.1 or later; Python 3.6 or later. Pillow must be installed for image handling.
Verify before relying
- Whether maintenance-mode status means security patches will be applied promptly if vulnerabilities are discovered.
- Compatibility with Django versions beyond 4.1 (classifiers stop at 4.1; last release was 2022-10-08).
- Whether the REST API (v2) is feature-complete or has known limitations compared to the admin interface.
Package facts
| License | Apache License, Version 2.0 (permissive) |
| Python support | supports the current Python release (>=3.6) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — django-mptt, django-compressor, djangorestframework, easy-thumbnails |
| Maintenance | actively maintained — 1,406 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 93,496/month — #13,382 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_fiber-1.10-py2.py3-none-any.whl
Keywords: cms, django
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
djangorestframeworkBuilds web APIs on top of Django with…
permissive · top 1,000 on PyPI
wagtailWagtail is a Django-based content management…
permissive · top 5,000 on PyPI
djangocms-admin-styleProvides styled CSS templates and admin…
permissive · top 15,000 on PyPI
django-split-settingsSplits Django settings across multiple files…
permissive · top 15,000 on PyPI
Products.CMFPlonePlone is a Python-based content management…
copyleft · top 15,000 on PyPI
django-cmsdjango CMS is a Django-based content management…
permissive · top 15,000 on PyPI
django-filerDjango Filer is a file and image management…
permissive · top 15,000 on PyPI
django-extensionsProvides a collection of custom management…
permissive · top 5,000 on PyPI
drf-api-loggerCaptures and logs Django REST Framework API…
permissive · top 15,000 on PyPI
djangocms-text-ckeditorIntegrates CKEditor (v4.17.2) as a text editing…
permissive · top 15,000 on PyPI