Skip to main content

django app for torque

Project description

The torque app

This is the django app that should be deployed in a running django server.

Outside of installing the app, this should remain a black box. The reason being that none of the routes or uses for this should be accessed except through the Torque MediaWiki plugin.

For developers, look in the individual code files for details on the inner workings.

Installation and Startup

Install via pip

$ pip install django-torque

Installation Configuration

Update your settings.py to include:

INSTALLED_APPS = [
    ...
    "torque",
    "torque.cache_rebuilder",
    ...
]

# and the urls
ROOT_URLCONF = "torque.urls"

For the urls, you can also do add them by the following:

urlpatterns = [
    ...
    path('torque/', include('torque.urls')),
    ...
]

If you do that, you need to make sure that your mediawiki extension is configured to the correct subpath (localhost:5000/torque/ or however)

Then run the migrations:

$ python manage.py migrate

App configuration

TORQUE_ENABLED_JINJA_EXTENSIONS

A list of jinja2 extensions to enable when rendering templates See an extension list: https://jinja.palletsprojects.com/en/2.11.x/extensions/ For example, to enable the "jinja2.ext.do" extension you would set this to

TORQUE_ENABLED_JINJA_EXTENSIONS=['jinja2.ext.do']

TORQUE_FILTERS

All the search filters for cached search items. These must implement utils.Filter, and that class has more documentation on what must be done.

In short, the filters must provide a name, translate the documents into in values that can be filtered upon.

from torque import utils
class ExampleFilter(utils.Filter):
    def name(self):
        return "example"

    def display_name(self):
        return "Example"

    def document_value(self, document):
        # Filter on the first character of the key
        return document.key[0]

FILTERS=[
    ExampleFilter()
]

TORQUE_CSV_PROCESS

When generating a csv, this dictionary will match against fields named in the keys, and the document will be processed through the value, which should be an instance of utils.CsvFieldProcessor

Running from this repository (in development)

Install a pipenv environment:

pipenv install

Set up your configuration via

$ cp config.py.tmpl config.py
$ $EDITOR config.py

Then run the migrations:

$ python manage.py migrate

Then start it up via normal django commands

$ pipenv run python manage.py runserver 5000

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-torque-0.2.3.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_torque-0.2.3-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file django-torque-0.2.3.tar.gz.

File metadata

  • Download URL: django-torque-0.2.3.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.2

File hashes

Hashes for django-torque-0.2.3.tar.gz
Algorithm Hash digest
SHA256 918902e818da50cf32c5d05362304bc285b732280214bdc9bde031a4a7a1f3a6
MD5 e81635f0b82093c22cfdb7a97ecdec28
BLAKE2b-256 19d1fd06b612f97cc8268b4af3331c4864a288e58cac171398843cdcf135dc38

See more details on using hashes here.

File details

Details for the file django_torque-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: django_torque-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.2

File hashes

Hashes for django_torque-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e03b5d1eded146fcedd23564ffa982083d6da6b788f62b5549d069f95bb2ae84
MD5 91dc96e6155cb6645512f50fb745858d
BLAKE2b-256 6256c96daccb2f50ecf2397d11de132ccbeeb1eca2f65206100e4997821e0f65

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page