Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-humanize

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-humanize

Use humanize 3rd-party lib as template filters

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

django-humanize − use humanize 3rd-party lib as template filters

Django already offers django.contrib.humanize but that implementation is lacking some features, like humanization of durations.

That lib comes to the rescue allowing you to use template filters backed on the standalone humanize lib.

Install

Add django_humanize to your INSTALLED_APPS setting.

Examples

Template

{% load humanizelib %}

It lasted {{ duration|naturaldelta }}.

View

import datetime
from django.shortcuts import render_

def summary(request):
    context = {'duration': datetime.timedelta(seconds=1000)}
    return render('template.html', context)

Will render as "lasted 16 minutes.".

Template filters

The following template filters are available :

  • naturalday
  • naturaltime
  • ordinal
  • intword
  • naturaldelta
  • intcomma
  • apnumber
  • fractional
  • naturalsize
  • naturaldate

Internationalization

Internationalization is supported and matches Django LANGUAGE_CODE setting. If it does not work, maybe, your language code is not supported by the standalone humanize lib. Think about contributing it.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc