Skip to main content

Django app for displaying a random number based on the time of day.

Project description

Fake Counter is a simple Django app for displaying a random number based on the time of day.

Quick start

  1. Add “fake_count” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'fake_count',
    )
  2. Add these settings to “settings.py” file in your project:

    CACHES = {
        'default': {
            'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
            'LOCATION': os.path.join(BASE_DIR, 'fake_count_cache'),
        }
    }
    # optional
    MAX_COUNT_DAY = integer value # default 500
    MAX_COUNT_NIGHT = integer value # default 200
  3. Load “fake_count_tmpl” in your html template and use it like “fake_counter”:

    {% load fake_count_tmpl %}
    
    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="UTF-8">
            <title>Title</title>
        </head>
        <body>
            <p>Some text</p>
            <p>{% fake_counter %}</p>
        </body>
    </html>

Project details


Release history Release notifications | RSS feed

This version

0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fake_count-0.0.tar.gz (2.8 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