معرفی شرکت ها


django-gvar-0.1.0a0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Django extension which adds model fields to store multi-dimensional Gaussian random variables.
ویژگی مقدار
سیستم عامل -
نام فایل django-gvar-0.1.0a0
نام django-gvar
نسخه کتابخانه 0.1.0a0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده @ckoerber
ایمیل نویسنده software@ckoerber.com
آدرس صفحه اصلی https://github.com/callat-qcd/django-gvar
آدرس اینترنتی https://pypi.org/project/django-gvar/
مجوز -
[![Documentation Status](https://readthedocs.org/projects/django-gvar/badge/?version=latest)](https://django-gvar.readthedocs.io/en/latest/?badge=latest) [![Code Coverage](https://codecov.io/gh/callat-qcd/django-gvar/branch/master/graph/badge.svg)](https://codecov.io/gh/callat-qcd/django-gvar) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) # django-gvar ## Description `django-gvar` is a Python module which allows to store [multi-dimensional Gaussian random variables implemented by G. Peter Lepage's `gvar` module](https://github.com/gplepage/gvar) into [Django](https://www.djangoproject.com)'s ORM Framework. It adds a `GVarField`, which can be used to store individual GVars, arrays of GVars, and Dictionaries of GVars. ### Usage in scripts After pip-installing the module, import the `GVarField` field into your project and use it out-of-the-box (changing settings is not required) ```python # myproject.models.py from django.db import models from django_gvar import GVarField class ExampleTable(models.Model): a = GVarField() ``` After migrating new table definitions, the `GVarField` can be used as any other field in external scripts ```python from gvar import gvar from myproject.models import ExampleTable a = gvar([1, 2, 3], [4, 5, 6]) entry = ExampleTable(a=a) entry.save() ``` ### Usage in forms For web-forms, the default widget for `GVarField`s are text areas. Currently, the form supports single numbers and arrays as input. These forms utilize custom syntax to convert the input to `GVars`: * GVars without correlations are can specified by lists of numbers where parenthesis define standard deviations ```text 1(2), 3(4), ... ``` * GVars with correlations are specified as arrays of mean values and the covariance matrix separated by a `|` ```text [1, 2] | [[1, 2], [2, 3]] ``` ## Install `django-gvar` can be installed from the repository root using `pip` ```bash pip install [-e] [--user] . ``` Because it utilizes Django's `JSONField`, which is available for all database backends in Django version 3.1 (previously it was a Postgres only field), it currently depends on the development version of Django (`Django==3.1a1`). Once established, the dependencies will be updated accordingly. ## Details The underlying database type for `django-gvar`s are `JSONField`s. It uses `gvars` `gdumps` and `gloads` to generate corresponding `JSON`. The [project documentation](https://django-gvar.readthedocs.io) specifies more details. ## Examples The `tests` directory implements a simple Django app using the `GVarField`s. To start it, install the repo as specified above and run ```bash cd tests python manage.py migrate # init that test database / only needs to be run once python manage.py runserver # start a local server ```


نیازمندی

مقدار نام
==3.1a1 Django
- numpy
- gvar
- pytest
- pytest-django
- pytest-cov
- black
- flake8
- flake8-docstrings
- mkdocs


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl django-gvar-0.1.0a0:

    pip install django-gvar-0.1.0a0.whl


نصب پکیج tar.gz django-gvar-0.1.0a0:

    pip install django-gvar-0.1.0a0.tar.gz