Code Monkey home page Code Monkey logo

django-yutils's Introduction

django-yutils

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

django-yutils's People

Contributors

andrecrt avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.