Skip to content

blackcode-lab/django-micro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Micro

image

image

Django Micro — Lightweight wrapper for using Django as a microframework and writing small applications in a single file.

tl;dr: See an example of full-featured application.

What's works

Installation ===========

$ pip install django-micro

Quick start

Create app.py file with following content.

from django_micro import configure, route, run
from django.http import HttpResponse

DEBUG = True
configure(locals())


@route(r'^$', name='index')
def show_index(request):
    name = request.GET.get('name', 'World')
    return HttpResponse('Hello, {}!'.format(name))


application = run()

Run the application.

$ python app.py runserver

Note: Parent directory of app.py file should be valid python module name. Under the hood Micro adds this directory into INSTALLED_APPS and use it as normal django application.

Compatibility

Micro based only on latest stable version of Django. This is the only way to keep codebase of django-micro clean, without hacks for many versions of Django.

  • Django version: >=1.10, <1.12
  • Python version: 2.7, >=3.4

Run and deployment

On localhost, an application runs with the built-in runserver command and deploys as a standard WSGI application.

$ python app.py runserver
$ gunicorn example.app --bind localhost:8000
$ uwsgi --module example.app --http localhost:8000

This behaviour provided by single string: application = run(). The strongest magic in django-micro. This is actually just a shortcut to the following code.

if __name__ == '__main__':
    from django.core.management import execute_from_command_line
    execute_from_command_line(sys.argv)
else:
    from django.core.wsgi import get_wsgi_application
    application = get_wsgi_application()

Configuration

Call of the configure function should be placed at top of your application. Before definition views, models and imports another modules. Yes, it may violate PEP8. But this is the only way. You can't import any model from another application if Django is not configured.

The good way is define all configuration in global namespace and call configure with locals() argument. Don't worry, configuration takes only UPPERCASE variables.

from django_micro import configure

DEBUG = True
TEMPLATE_DIRS = ['templates']

configure(locals())

Views and routes

Routing is wrapped in single function route. You can use it as decorator.

from django_micro import route

@route(r'^$', name='index')
def show_index(request):
    return HttpResponse('hello')

Or use directly.

def show_index(request):
    return HttpResponse('hello')

route(r'^$' show_index, name='index')

Also route may be used with class-based views.

@route(r'^$', name='index')
class IndexView(View):
    def get(request):
        return HttpResponse('hello')

# or directly
route(r'^$', IndexView.as_view(), name='index')

You always can access to urlpatterns for using the low-level API.

from django.conf.urls import url
import django_micro as micro

micro.urlpatterns += [
    url(r'^$', mainpage, name='mainpage'),
]

Note: You can include third-party apps into Micro urlpatterns, but currently can't use Micro as third-party app. Micro — is singleton. You can't create more that one instance of it.

Models and migrations

Micro normally works with models and migrations. Just define model in your app.py file. If you need migrations, create migrations directory next to the app.py and call python app.py makemigrations.

blog
├── __init__.py
├── app.py
└── migrations
    ├── __init__.py
    └── 0001_initial.py
from django.db import models

class Post(models.Model):
    title = models.CharField(max_length=255)

    class Meta:
        app_label = 'blog'

Note: You always need to set app_label attribute in Meta of your models. For example, if application placed in blog/app.py, app_label should be blog.

For getting app_label you can use get_app_label shortcut.

from django_micro import get_app_label
from django.db import models

class Post(models.Model):
    class Meta:
        app_label = get_app_label()

You also can place models separately in models.py file. In this case app_label is not required. But this is not a micro-way ;)

Management commands

Now you can create any management cli command without creating file in yourapp/management/commands. Just defne command class in your app.py and wrap it to @command decorator.

from django.core.management.base import BaseCommand
from django_micro import command

@command('print_hello')
class PrintHelloCommand(BaseCommand):
    def handle(self, *args, **options):
        self.stdout.write('Hello, Django!')

You also can create function-based commands.

from django_micro import command

@command
def print_hello(cmd, **options):
    cmd.stdout.write('Hello, Django!')

Unfortunately the command decorator uses a few dirty hacks for commands registration. But everything works be fine if you don't think about it ;)

Custom template tags

Use template for register template tags. It works same as a register object in tag library file.

from django_micro import template

@template.simple_tag
def print_hello(name):
    return 'Hello, {}!'

@template.filter
def remove_spaces(value):
    return value.replace(' ', '')

You don't need to use the load tag. All template tags are global.

Testing

No magick. Use built-in test cases.

from django.test import TestCase

class TestIndexView(TestCase):
    def test_success(self):
        response = self.client.get('/')
        self.assertEqual(response.status_code, 200)

To run tests which defined in app.py use the following command:

$ python app.py test __main__

Who uses django-micro

  • storagl — simple storage for screenshots and other shared files with short direct links
  • importd — Popular implementation of django-as-microframework idea, but over-engineered, in my opinion, and magical.
  • djmicro — Good and lightweight wrapper. I took a few ideas from there. But just an experimental, undocumented, less functional and deprecated.

Releases

No releases published

Packages

No packages published

Languages

  • Python 92.7%
  • HTML 7.3%