skevy/django-basic-apps — explained in plain English
Analysis updated 2026-07-17 · repo last pushed 2010-05-20
Build a content-heavy blog site where writers can embed photos into posts using simple tags.
Add ready-made comments, tagging, and text formatting features without building them from scratch.
Integrate a Django site with external services like Twitter and Bitly using included apps.
| skevy/django-basic-apps | a-bissell/unleash-lite | abhiinnovates/whatsapp-hr-assistant | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | Python | Python | Python |
| Last pushed | 2010-05-20 | — | — |
| Maintenance | Dormant | — | — |
| Setup difficulty | moderate | hard | hard |
| Complexity | 3/5 | 4/5 | 3/5 |
| Audience | developer | researcher | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires several other add-ons (Django Comments, Django-Markup, BeautifulSoup) to be installed separately.
Django Basic Apps is a collection of ready-made building blocks for Django websites, think of them as plug-and-play modules that handle common features you'd otherwise have to build from scratch. The main feature is an "inlines" system that lets you embed content (like photos) directly into other content (like blog posts) using simple markup tags. The way it works is straightforward. You download the apps you want, place them in a folder called "basic" in your project, and tell Django to use them by adding their names to your settings file. Once installed, you can use template filters in your HTML to trigger the features. For the inlines feature, you'd write a simple tag like <inline type="media.photo" id="1" /> in your blog post, then use a filter in your template to turn that tag into an actual embedded photo. The system figures out what type of content you're referring to and pulls it in automatically. This would appeal to Django developers building content-heavy sites, especially blogs, who want to avoid reinventing standard features. If you're running a blogging platform and want writers to be able to insert images or other media into their posts without touching code, this gives you a framework to make that happen. The project also includes support for comments, text formatting, tagging, and integrations with external services like Twitter and Bitly, so you can pick and choose what features you need. The trade-off is that this project relies on several other add-ons to work fully (Django Comments, Django-Markup, BeautifulSoup, and others), so you'll need those installed as well. It's designed for developers who are comfortable managing those kinds of dependencies and want a starting point rather than a complete, standalone solution.
A collection of plug-and-play Django apps for common website features, including a system that lets you embed photos and media directly inside blog posts.
Mainly Python. The stack also includes Python, Django.
Dormant — no commits in 2+ years (last push 2010-05-20).
Setup difficulty is rated moderate, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.