Skip to main content

A Django app to convert units between different systems

Project description

A Django app to convert units between different systems.

It is meant to simplify the need to use different unit systems at the same time. E.g. providing inputs, that allow entering distances and weights in the imperial or the metric system.

Installation

To get the latest stable release from PyPi

pip install django-units

To get the latest commit from GitHub

pip install -e git+git://github.com/bitmazk/django-units.git#egg=units

TODO: Describe further installation steps (edit / remove the examples below):

Add units to your INSTALLED_APPS

INSTALLED_APPS = (
    ...,
    'units',
)

Add the units URLs to your urls.py

urlpatterns = patterns('',
    ...
    url(r'^units/', include('units.urls')),
)

Before your tags/filters are available in your templates, load them by using

{% load units_tags %}

Don’t forget to migrate your database

./manage.py migrate units

Usage

TODO: Describe usage or point to docs. Also describe available settings and templatetags.

Point to constants, form mixin and general conversion utils. [WIP]

Contribute

If you want to contribute to this project, please perform the following steps

# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 django-units
make develop

git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch

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-units-0.2.1.tar.gz (11.1 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