Skip to main content

Collection of utilities for Django

Project description

YUTILS == Yet/Why Another Utility Belt

This is a collection of misc. utilities for Django.

Installation

  1. Download dependencies:
    • Python 2.6+

    • Django 1.5+

  2. pip install django-yutils or easy_install django-yutils

Configuration

settings.py

  1. Add “yutils” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        # all other installed apps
        'yutils',
    )
  2. Add logger handler:

    LOGGING = {
        'version': 1,
        'disable_existing_loggers': False,
        'handlers': {
            # all other handlers
            'log_file_yutils': {
                'level': 'DEBUG',
                'class': 'logging.handlers.RotatingFileHandler',
                'filename': os.path.join(os.path.join(os.path.dirname( __file__ ), '..'), 'logs/yutils.log'),
                'maxBytes': '16777216', # 16megabytes
             },
        },
        'loggers': {
            # all other loggers
            'yutils': {
                'handlers': ['log_file_yutils'],
                'propagate': True,
                'level': 'DEBUG',
            }
        }
    }
  3. Configure YUTILS’s settings:

    YUTILS = {
        'mandrill_api_key': '{{ API_KEY }}'
    }

Logs

Create a ‘logs’ folder in your project’s root folder (if you don’t have one already). Your project folder should look something like this:

myproject/
    __init__.py
    settings.py
    urls.py
    wsgi.py
logs/
manage.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-yutils-0.2.tar.gz (3.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page