iterweb / django_fake_counter

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

Home Page:https://pypi.org/project/fake-count/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fake Visitor Counter

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

Quick start

  • Install:
    pip install django-fake-counter-0.1.tar.gz
    or
    pip install fake-count
  • Add fake_count to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (
        ...
        'fake_count',
    )
  • 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
  • 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>

License: The 3-Clause BSD License
Copyright (c) 2021, ITerWeb

About

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

https://pypi.org/project/fake-count/


Languages

Language:Python 92.2%Language:HTML 7.8%