Uses the parsedatetime package to parse human readable date/time expressions into Django fields
Project description
Django Human DateTime Parsing
- Authors:
Justin Quick <justquick@gmail.com>
- Version:
0.1
This tool uses the parsedatetime package to turn human readable form input (like ‘tomorrow 7PM’) into datetime objects (like datetime.datetime(2010, 4, 9, 19, …)). This app requires parsedatetime and pytz. The app comes with a set of fields to replace Django’s own DateTimeField, DateField, and TimeField. Get them by using:
from humandt.fields import HumanDateTimeField, HumanTimeField, HumanDateField
Then use them however you like as form fields in your own Django Forms:
from django.forms import Form class ExampleForm(Form): datetime = HumanDateTimeField(required=False) time = HumanTimeField(required=False) date = HumanDateField(required=False)
Example Project
Download the most recent sourcecode and start up the development server. Make sure you have the most recent version of django:
git clone git://github.com/justquick/django-human-datetime.git cd django-human-datetime pip install parsedatetime pytz django python setup.py install cd example_project python manage.py runserver
If all goes well it will be available at http://127.0.0.1:8000/. There is an example form up there that just spits out the parsed date/time input. Look at the example_project.views for useage example. To test the humandt app, stop the server and run this:
python manage.py test humandt
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-human-datetime-0.1.tar.gz
.
File metadata
- Download URL: django-human-datetime-0.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31f4c68ff40f46585c8ae510867f2561f691dd279fc77b2076974ddf6b94b628 |
|
MD5 | ecff600a0625d1cd4909b4d0e95c0d6f |
|
BLAKE2b-256 | 27667d28dce5f117e9e4c553b9b925775cbf359354472f2887d9e32b08f8ff63 |