Skip to content

suqi/django-micro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Micro

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.

Features

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

We will try to support only 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.11
  • 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 app --bind localhost:8000
$ uwsgi --wsgi-file app.py --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 other.

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.

from django.db import models

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

  class Meta:
      app_label = 'blog'

Note: You always should set app_label attribute in Meta of your models. For sample: if application is placed in blog/app.py, app_label must have a blog value.

For getting app_label you can use get_app_label shortcut.

from django_micro import get_app_label

class Post:
    # ...

    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!')

Unfortunately, for this feature Micro uses a few dirty hacks. But everything works be fine if you don't think about it ;)

Related projects

  • importd — Popular implementation of django-as-microframework idea, but over-engineered, magical and not intuitive.
  • djmicro — Good and lightweight wrapper, but just an experimental, without support many features out-of-the-box, such as migrations or management commands deprecated

About

Django as microframework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.8%
  • HTML 8.2%