=============================
Nobinobi Stats
=============================
.. image:: https://badge.fury.io/py/nobinobi-stats.svg
:target: https://badge.fury.io/py/nobinobi-stats
.. image:: https://travis-ci.org/prolibre-ch/nobinobi-stats.svg?branch=master
:target: https://travis-ci.org/prolibre-ch/nobinobi-stats
.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-stats/branch/master/graph/badge.svg
:target: https://codecov.io/gh/prolibre-ch/nobinobi-stats
Package Stats for nobinobi
Documentation
-------------
The full documentation is at https://nobinobi-stats.readthedocs.io.
Quickstart
----------
Install Nobinobi Stats::
pip install nobinobi-stats
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'phonenumber_field',
'crispy_forms',
'django_extensions',
'rest_framework',
'rest_framework.authtoken',
'rest_framework_datatables',
'menu',
'bootstrap_modal_forms',
'widget_tweaks',
'django_select2',
'bootstrap_datepicker_plus',
'nobinobi_core',
'nobinobi_staff',
'nobinobi_child.apps.NobinobiChildConfig',
'nobinobi_daily_follow_up.apps.NobinobiDailyFollowUpConfig',
'nobinobi_stats.apps.NobinobiStatsConfig',
...
)
Add Nobinobi Stats's URL patterns:
.. code-block:: python
from nobinobi_core import urls as nobinobi_core_urls
from nobinobi_staff import urls as nobinobi_staff_urls
from nobinobi_child import urls as nobinobi_child_urls
from nobinobi_daily_follow_up import urls as nobinobi_daily_follow_up_urls
from nobinobi_stats import urls as nobinobi_stats_urls
urlpatterns = [
...
path('', include(nobinobi_core_urls)),
path('', include(nobinobi_staff_urls)),
path('', include(nobinobi_child_urls)),
path('', include(nobinobi_daily_follow_up_urls)),
path('', include(nobinobi_stats_urls)),
...
]
Features
--------
* TODO
Running Tests
-------------
Does the code actually work?
::
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Development commands
---------------------
::
pip install -r requirements_dev.txt
invoke -l
Credits
-------
Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
History
-------
0.1.5 (2023-09-13)
++++++++++++++++++
* 75783f3 - Update stats occupancy to use ocs and dayoff
0.1.4 (2023-09-12)
++++++++++++++++++
* cde21fa - Fix stats occupancy remove Organisation Closure from stats
0.1.3 (2022-02-24)
++++++++++++++++++
* 5e7d804 - fix in stats attendance when 3 periods is between us
0.1.2 (2021-12-14)
++++++++++++++++++
* 2292069 - fix error in new version of bootstrap datetimepicker
* 02cac33 - Add FR translation to git
0.1.1 (2021-09-24)
++++++++++++++++++
* 359beea - Fix for bumpversion
* c937c74 - Update Copyright
0.1.0 (2021-09-24)
++++++++++++++++++
* First release on PyPI.
Raw data
{
"_id": null,
"home_page": "https://github.com/prolibre-ch/nobinobi-stats",
"name": "nobinobi-stats",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "nobinobi-stats",
"author": "Florian Alu",
"author_email": "alu@prolibre.com",
"download_url": "https://files.pythonhosted.org/packages/aa/3f/e31f74b9520740672f80bce272e67aea3f9a122bd0c7467bb60883c39c50/nobinobi-stats-0.1.5.tar.gz",
"platform": null,
"description": "=============================\nNobinobi Stats\n=============================\n\n.. image:: https://badge.fury.io/py/nobinobi-stats.svg\n :target: https://badge.fury.io/py/nobinobi-stats\n\n.. image:: https://travis-ci.org/prolibre-ch/nobinobi-stats.svg?branch=master\n :target: https://travis-ci.org/prolibre-ch/nobinobi-stats\n\n.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-stats/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/prolibre-ch/nobinobi-stats\n\nPackage Stats for nobinobi\n\nDocumentation\n-------------\n\nThe full documentation is at https://nobinobi-stats.readthedocs.io.\n\nQuickstart\n----------\n\nInstall Nobinobi Stats::\n\n pip install nobinobi-stats\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'phonenumber_field',\n 'crispy_forms',\n 'django_extensions',\n 'rest_framework',\n 'rest_framework.authtoken',\n 'rest_framework_datatables',\n 'menu',\n 'bootstrap_modal_forms',\n 'widget_tweaks',\n 'django_select2',\n 'bootstrap_datepicker_plus',\n 'nobinobi_core',\n 'nobinobi_staff',\n 'nobinobi_child.apps.NobinobiChildConfig',\n 'nobinobi_daily_follow_up.apps.NobinobiDailyFollowUpConfig',\n 'nobinobi_stats.apps.NobinobiStatsConfig',\n ...\n )\n\nAdd Nobinobi Stats's URL patterns:\n\n.. code-block:: python\n\n from nobinobi_core import urls as nobinobi_core_urls\n from nobinobi_staff import urls as nobinobi_staff_urls\n from nobinobi_child import urls as nobinobi_child_urls\n from nobinobi_daily_follow_up import urls as nobinobi_daily_follow_up_urls\n from nobinobi_stats import urls as nobinobi_stats_urls\n\n urlpatterns = [\n ...\n path('', include(nobinobi_core_urls)),\n path('', include(nobinobi_staff_urls)),\n path('', include(nobinobi_child_urls)),\n path('', include(nobinobi_daily_follow_up_urls)),\n path('', include(nobinobi_stats_urls)),\n ...\n ]\n\nFeatures\n--------\n\n* TODO\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n source <YOURVIRTUALENV>/bin/activate\n (myenv) $ pip install tox\n (myenv) $ tox\n\n\nDevelopment commands\n---------------------\n\n::\n\n pip install -r requirements_dev.txt\n invoke -l\n\n\nCredits\n-------\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `cookiecutter-djangopackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n\n\n\n\nHistory\n-------\n\n0.1.5 (2023-09-13)\n++++++++++++++++++\n\n* 75783f3 - Update stats occupancy to use ocs and dayoff\n\n0.1.4 (2023-09-12)\n++++++++++++++++++\n\n* cde21fa - Fix stats occupancy remove Organisation Closure from stats\n\n0.1.3 (2022-02-24)\n++++++++++++++++++\n\n* 5e7d804 - fix in stats attendance when 3 periods is between us\n\n0.1.2 (2021-12-14)\n++++++++++++++++++\n\n* 2292069 - fix error in new version of bootstrap datetimepicker\n* 02cac33 - Add FR translation to git\n\n0.1.1 (2021-09-24)\n++++++++++++++++++\n\n* 359beea - Fix for bumpversion\n* c937c74 - Update Copyright\n\n0.1.0 (2021-09-24)\n++++++++++++++++++\n\n* First release on PyPI.\n",
"bugtrack_url": null,
"license": "",
"summary": "Application Stats for nobinobi",
"version": "0.1.5",
"project_urls": {
"Homepage": "https://github.com/prolibre-ch/nobinobi-stats"
},
"split_keywords": [
"nobinobi-stats"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "dfd6b559527419b85d704964d0de9e323b1d6099cc2c5383073ed421d14a21b0",
"md5": "64f540c0902f1a659f5713793deacb81",
"sha256": "e90fba3d6e9461285e822571d7ac46e6f3fc39ae6321827b9067c43ba3e15d41"
},
"downloads": -1,
"filename": "nobinobi_stats-0.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "64f540c0902f1a659f5713793deacb81",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 42260,
"upload_time": "2023-09-13T12:34:09",
"upload_time_iso_8601": "2023-09-13T12:34:09.394860Z",
"url": "https://files.pythonhosted.org/packages/df/d6/b559527419b85d704964d0de9e323b1d6099cc2c5383073ed421d14a21b0/nobinobi_stats-0.1.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa3fe31f74b9520740672f80bce272e67aea3f9a122bd0c7467bb60883c39c50",
"md5": "816a08857932dbf7a7031f80f89679a8",
"sha256": "ed86499e130b11d4b3fad2fa353d600f1c77f1ff60502085b130c854dccbc263"
},
"downloads": -1,
"filename": "nobinobi-stats-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "816a08857932dbf7a7031f80f89679a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33040,
"upload_time": "2023-09-13T12:34:11",
"upload_time_iso_8601": "2023-09-13T12:34:11.042140Z",
"url": "https://files.pythonhosted.org/packages/aa/3f/e31f74b9520740672f80bce272e67aea3f9a122bd0c7467bb60883c39c50/nobinobi-stats-0.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-13 12:34:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "prolibre-ch",
"github_project": "nobinobi-stats",
"travis_ci": true,
"coveralls": true,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "nobinobi-stats"
}