Skip to main content

A Django app for calculating phonotactic probabilities in Serbian language.

Project description

=====
Phonotactic Probability Calculator for Serbian Language
=====

Phonotactic Probability Calculator is a Django app for calculating phonotactic probabilities in Serbian language.


Quick start
-----------

PREREQUISITES:

- Django 1.10
- Django “form tools” app

-----------

0. Install prerequisites and the phonotactics app with pip::

pip install django django-formtools django-phonotactics


1. Add prerequisites and "phonotactics" app to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'formtools',
'phonotactics',
]

2. For django-formtools to work with Django 1.10, custom middleware is needed - which is included with the phonotactics app. Add it to your MIDDLEWARE setting like this::

MIDDLEWARE = [
...
'phonotactics.middleware.AtopdedTo110DebugMiddleware'
]

3. Include the phonotactics URLconf in your project urls.py like this::

url(r'^', include('phonotactics.urls')),

4. Run `python manage.py migrate` to create the phonotactics models.

5. Run `python manage.py loaddata` to load the basic corpus.

Project details


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