معرفی شرکت ها


django3-dashing-0.5.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple Django (v3 which requires Python 3) dashboard app to visualize interesting data about your project.
ویژگی مقدار
سیستم عامل -
نام فایل django3-dashing-0.5.2
نام django3-dashing
نسخه کتابخانه 0.5.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Michael Wickey
ایمیل نویسنده wickeym@gmail.com
آدرس صفحه اصلی https://github.com/wickeyware/django-dashing/
آدرس اینترنتی https://pypi.org/project/django3-dashing/
مجوز MIT License
=============================================== django-dashing =============================================== .. image:: https://travis-ci.org/talpor/django-dashing.svg?branch=master **Note this fork is to support Django 3, which dropped support for Python2.** **NOTE: Using Python 3.9 for development as shown in pipfile, but Python 3.6 or greater should work too.** `django-dashing` is a customisable, modular dashboard application framework for Django to visualize interesting data about your project. Inspired in the exceptionally handsome dashboard framework Dashing_ Check out a demo over `here <https://django-dashing-demo.herokuapp.com/dashboard/>`_. .. _Dashing: http://shopify.github.io/dashing/ .. image:: https://i.imgur.com/Uo67Q7L.png :alt: dashboard screenshot :width: 835 :height: 835 :align: center Prerequisites =============================================== - Django 3+ - Django Compressor (optional) Key concepts =============================================== - Use premade widgets, or fully create your own with css, html, and javascript. - Use the API to push data to your dashboards. - Drag & Drop interface for re-arranging your widgets. Installation =============================================== 1. Install latest stable version from PyPi: .. code-block:: text $ pip install django-dashing 2. Add `dashing` to ``INSTALLED_APPS`` of the your projects. .. code-block:: python INSTALLED_APPS = ( ... 'dashing', ) 3. Include the dashboard URLconf in your project urls.py like this: .. code-block:: python from dashing.utils import router ... path('dashboard/', include(router.urls)), 4. Start the development server and visit http://127.0.0.1:8000/dashboard/ to view the dummy dashboard. Quick Start =============================================== To make your own dashboard and retrieves the data from django you should: 1. Create a django dashboard application with a `widgets.py` file 2. Create your widget extended from **NumberWidget**, **ListWidget**, **GraphWidget** or simply **Widget** (from dashing.widgets), for example `see <https://github.com/individuo7/django-dashing-demo-app/blob/master/django_dashing_demo_app/widgets.py>`_. 3. Register your widget in `urls.py` like: .. code-block:: python from django.urls import include, path from dashing.utils import router from project.dashboard.widgets import CustomWidget router.register(CustomWidget, 'custom_widget') urlpatterns = [ path('dashboard/', include(router.urls)), ] Create a dashing-config.js file with a widget that retrive the data in your static directory like: .. code-block:: javascript var myDashboard = new Dashboard(); myDashboard.addWidget('customWidget', 'Number', { getData: function () { var self = this; Dashing.utils.get('custom_widget', function(data) { $.extend(self.scope, data); }); }, interval: 3000 }); Also if you want to locate the config file in a different directory you can create a `dashing/dashboard.html` file in your **TEMPLATE_DIRS** and replace the **config_file** block to the route of your javascript config file, see the `docs <http://django-dashing.readthedocs.org/en/latest/getting-started.html#template-file>`_. Testing =============================================== Install dependencies. .. code-block:: text $ npm install $ pip install -r requirements.txt Run tests. .. code-block:: text $ npm test Links =============================================== - `Documentation <http://django-dashing.readthedocs.org/>`_ - `Demo application <https://github.com/individuo7/django-dashing-demo-app>`_ - `Widget List <https://github.com/talpor/django-dashing-channel/blob/master/repositories.json>`_


نحوه نصب


نصب پکیج whl django3-dashing-0.5.2:

    pip install django3-dashing-0.5.2.whl


نصب پکیج tar.gz django3-dashing-0.5.2:

    pip install django3-dashing-0.5.2.tar.gz