django-tours


Namedjango-tours JSON
Version 1.0.5 PyPI version JSON
download
home_page
SummaryDjango app to display tours with shepherdjs
upload_time2024-01-11 11:11:42
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2023 Wilmer Martinez Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords django tours shepherdjs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-tours

Django app to display tours with [shepherdjs](https://shepherdjs.dev/)

![Python Logo](https://www.python.org/static/community_logos/python-logo.png "Sample inline image")

![django-tours-1](https://github.com/wilmerm/django-tours/assets/44853160/d7a8c20f-ddb1-4f93-b287-e143813aef95)

## Instalation

```sh
pip install django-tours
```

## Use

### Add to installed applications

```py
# settings.py

INSTALLED_APPS = [
    # ...
    'tours',
    # ...
]
```

### Optional configuration:

**If you want to set default variables, you can add the following in your settings.py file:**

```py
# settings.py

DEFAULT_SHEPHERD_JS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/js/shepherd.min.js'
DEFAULT_SHEPHERD_CSS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/css/shepherd.css'
```

### Add the URLs

```py
urlpatterns = [
    # ...
    path('tours/', include('tours.urls')),
    # ...
]
```

### Run the migrations

```sh
python manage.py migrate
```

### Load tours into the template

```django
{% load tours %}

{% load_tours request %}
```

## Licence

This project is licensed under the MIT License. See [LICENSE](LICENSE) file for details.

## Proyect Status

This project is in Production/Stable ✔

## Contribution 💗

If you find value in this project and would like to show your support, please consider making a donation via PayPal:

[Donate on PayPal](https://paypal.me/martinezwilmer?country.x=DO&locale.x=es_XC)

Your generosity helps us to continue improving and maintaining this project. We appreciate every contribution, however small. Thanks for being part of our community!

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "django-tours",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "django,tours,shepherdjs",
    "author": "",
    "author_email": "Wilmer Martinez <info@wilmermartinez.dev>",
    "download_url": "https://files.pythonhosted.org/packages/8e/91/32329da7c57c9cf93a2d6a630ff2214777276d086e92f0056edf3b188620/django-tours-1.0.5.tar.gz",
    "platform": null,
    "description": "# django-tours\n\nDjango app to display tours with [shepherdjs](https://shepherdjs.dev/)\n\n![Python Logo](https://www.python.org/static/community_logos/python-logo.png \"Sample inline image\")\n\n![django-tours-1](https://github.com/wilmerm/django-tours/assets/44853160/d7a8c20f-ddb1-4f93-b287-e143813aef95)\n\n## Instalation\n\n```sh\npip install django-tours\n```\n\n## Use\n\n### Add to installed applications\n\n```py\n# settings.py\n\nINSTALLED_APPS = [\n    # ...\n    'tours',\n    # ...\n]\n```\n\n### Optional configuration:\n\n**If you want to set default variables, you can add the following in your settings.py file:**\n\n```py\n# settings.py\n\nDEFAULT_SHEPHERD_JS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/js/shepherd.min.js'\nDEFAULT_SHEPHERD_CSS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/css/shepherd.css'\n```\n\n### Add the URLs\n\n```py\nurlpatterns = [\n    # ...\n    path('tours/', include('tours.urls')),\n    # ...\n]\n```\n\n### Run the migrations\n\n```sh\npython manage.py migrate\n```\n\n### Load tours into the template\n\n```django\n{% load tours %}\n\n{% load_tours request %}\n```\n\n## Licence\n\nThis project is licensed under the MIT License. See [LICENSE](LICENSE) file for details.\n\n## Proyect Status\n\nThis project is in Production/Stable \u2714\n\n## Contribution \ud83d\udc97\n\nIf you find value in this project and would like to show your support, please consider making a donation via PayPal:\n\n[Donate on PayPal](https://paypal.me/martinezwilmer?country.x=DO&locale.x=es_XC)\n\nYour generosity helps us to continue improving and maintaining this project. We appreciate every contribution, however small. Thanks for being part of our community!\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Wilmer Martinez  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Django app to display tours with shepherdjs",
    "version": "1.0.5",
    "project_urls": {
        "Homepage": "https://github.com/wilmerm/django-tours",
        "Issues": "https://github.com/wilmerm/django-tours/issues",
        "Repository": "https://github.com/wilmerm/django-tours"
    },
    "split_keywords": [
        "django",
        "tours",
        "shepherdjs"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f65aa90e60248ea26eb52b302343feccdf691bde0f0fb33a6d5e9789cecfc11",
                "md5": "68397979ea40995469fab0e6c87524f5",
                "sha256": "1552b66377f44e3685d30a7995980bf3b0d8c981aa0daa1f1d8e37c56ace3465"
            },
            "downloads": -1,
            "filename": "django_tours-1.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "68397979ea40995469fab0e6c87524f5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 10526,
            "upload_time": "2024-01-11T11:11:41",
            "upload_time_iso_8601": "2024-01-11T11:11:41.288450Z",
            "url": "https://files.pythonhosted.org/packages/1f/65/aa90e60248ea26eb52b302343feccdf691bde0f0fb33a6d5e9789cecfc11/django_tours-1.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e9132329da7c57c9cf93a2d6a630ff2214777276d086e92f0056edf3b188620",
                "md5": "f6ea4aa2b562c4c938d80a349f341e18",
                "sha256": "81886582ff5e600c11c60cb557ba0e3f59fc2acf84e46f3e779388a0832d4a05"
            },
            "downloads": -1,
            "filename": "django-tours-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "f6ea4aa2b562c4c938d80a349f341e18",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 7860,
            "upload_time": "2024-01-11T11:11:42",
            "upload_time_iso_8601": "2024-01-11T11:11:42.505442Z",
            "url": "https://files.pythonhosted.org/packages/8e/91/32329da7c57c9cf93a2d6a630ff2214777276d086e92f0056edf3b188620/django-tours-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-11 11:11:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wilmerm",
    "github_project": "django-tours",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "django-tours"
}
        
Elapsed time: 0.18615s