demo-tracify


Namedemo-tracify JSON
Version 1.5.1 PyPI version JSON
download
home_pagehttps://github.com/pys-info/tracify
SummaryDjango Tracify
upload_time2024-01-08 10:36:28
maintainer
docs_urlNone
authorPysquad
requires_python>=3.5
license
keywords django issue tracker development
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1><i> tracify </i></h1>

**[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)**
<a href="http://www.djangoproject.com/"><img src="https://www.djangoproject.com/m/img/badges/djangomade124x25.gif" border="0" alt="Made with Django." title="Made with Django." /></a>

## Project description
Django Tracify is a robust package designed to streamline issue tracking within Django web applications.The package supports various notification channels, allowing teams to receive updates through their preferred communication methods.By integrating this package, teams can collaborate seamlessly, expedite issue resolution, and enhance overall efficiency throughout the software development and maintenance lifecycle in Django projects.
## Feature

* **Multiple Notification Channels:**
Django Tracify supports multiple channels for sending notifications, such as email, MS Teams, Discord, or any other custom channels. This flexibility allows teams to choose the most effective means of receiving notifications based on their communication preferences and workflows.
* **Real-Time Error Monitoring:**
Get instant notifications and detailed stack traces for errors occurring in your application, allowing you to respond quickly.

## Requirements
- Python >=3.8
- Django >=3.0
## Supported Channels
- Discord
- MS Teams
- Email
- Database
- Slack

## Installation

**Python package:**

    pip install tracify

settings.py (Please note that below settings is required as INSTALLED_APPS)::

    # Specify channels configuration as follows:

    TRACIFY_CHANNELS_CONFIGURATION = {
    "DISCORD": {
        "BACKEND": "tracify.channels.backends.discord.DiscordChannel",
        "WEBHOOK_URL": <"DISCORD_WEBHOOK_URL">,
    },
    "TEAMS": {
        "BACKEND": "tracify.channels.backends.teams.TeamsChannel",
        "WEBHOOK_URL": <"TEAMS_WEBHOOK_URL">,
    },
    "EMAIL": {
        "BACKEND": "tracify.channels.backends.email.EmailChannel",
    },
    # If you are using EMAIL in above configuration you must need to configure EMAIL Configuration with EMAIL_ADMIN_USER and EMAIL_HOST_USER in settings.py
    "DB": {
        "BACKEND": "tracify.channels.backends.db.DBChannel",
    },
    # If you are using DB in above configuration you must need to add tracify.db_backend in INSTALLED_APP
    "SLACK": {
        "BACKEND": "tracify.channels.backends.slack.SlackChannel",
        "WEBHOOK_URL": <"SLACK_WEBHOOK_URL">,
    }
    ...
}

    INSTALLED_APPS = [
        ...
        # The following apps is required:
       tracify,
    ]

## Acknowledgements
 - We would like to express our gratitude to the following individuals and organizations for their contributions, support, and inspiration:
   - PySquad Informatics LLP(https://pysquad.com/)

 - We also want to extend our thanks to the open-source community for their continuous efforts and contributions to the Python ecosystem. We greatly appreciate the work of all the developers, contributors, and maintainers of the libraries and frameworks that this package relies on.
 - Finally, we would like to thank our users for their feedback, bug reports, and feature requests. Your input has been invaluable in shaping the evolution of this package.
 - We are grateful to everyone who has played a part in making this package what it is today, and we look forward to continued collaboration and improvement in the future.

## Configuration
-  The package can be configured using configuration file or enviroment variable.Refer to the configuration documentation for details information on available setting and customization options.See details information inside `docs/configuration.rst`.
-  Troubleshooting and Support If you encounter any issues or have questions, please visit our support page or check out the FAQs for common troubleshooting steps and answers to frequently asked questions. See details information inside `docs/faq.rst`.
-  Changelog to see the full history of changes made to the package.please refer to the changlog.See details information inside `ChangLog.rst`.
-  This packages is licenced under the MIT Licence.See details information inside`License`.
-  Refer to the Channels documentation for details information on available channels.See details information inside `docs/channels.rst`
-  Release version related information you can get inside the release-notes documents.See details information inside `docs/release-notes.rst`

## License
*MIT License:* <https://choosealicense.com/licenses/mit/>

## Contact
For any inquiries or feedback, you can reach us at contact@pysquad.com or join our community channel from here https://discord.gg/d2yxwBCd.
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pys-info/tracify",
    "name": "demo-tracify",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "django,issue,tracker,development",
    "author": "Pysquad",
    "author_email": "vh@pysquad.com",
    "download_url": "https://files.pythonhosted.org/packages/0d/06/be3fba5ed044a899dc3c03edff2a06079c7a96726197f812436bd1106693/demo-tracify-1.5.1.tar.gz",
    "platform": null,
    "description": "<h1><i> tracify </i></h1>\n\n**[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)**\n<a href=\"http://www.djangoproject.com/\"><img src=\"https://www.djangoproject.com/m/img/badges/djangomade124x25.gif\" border=\"0\" alt=\"Made with Django.\" title=\"Made with Django.\" /></a>\n\n## Project description\nDjango Tracify is a robust package designed to streamline issue tracking within Django web applications.The package supports various notification channels, allowing teams to receive updates through their preferred communication methods.By integrating this package, teams can collaborate seamlessly, expedite issue resolution, and enhance overall efficiency throughout the software development and maintenance lifecycle in Django projects.\n## Feature\n\n* **Multiple Notification Channels:**\nDjango Tracify supports multiple channels for sending notifications, such as email, MS Teams, Discord, or any other custom channels. This flexibility allows teams to choose the most effective means of receiving notifications based on their communication preferences and workflows.\n* **Real-Time Error Monitoring:**\nGet instant notifications and detailed stack traces for errors occurring in your application, allowing you to respond quickly.\n\n## Requirements\n- Python >=3.8\n- Django >=3.0\n## Supported Channels\n- Discord\n- MS Teams\n- Email\n- Database\n- Slack\n\n## Installation\n\n**Python package:**\n\n    pip install tracify\n\nsettings.py (Please note that below settings is required as INSTALLED_APPS)::\n\n    # Specify channels configuration as follows:\n\n    TRACIFY_CHANNELS_CONFIGURATION = {\n    \"DISCORD\": {\n        \"BACKEND\": \"tracify.channels.backends.discord.DiscordChannel\",\n        \"WEBHOOK_URL\": <\"DISCORD_WEBHOOK_URL\">,\n    },\n    \"TEAMS\": {\n        \"BACKEND\": \"tracify.channels.backends.teams.TeamsChannel\",\n        \"WEBHOOK_URL\": <\"TEAMS_WEBHOOK_URL\">,\n    },\n    \"EMAIL\": {\n        \"BACKEND\": \"tracify.channels.backends.email.EmailChannel\",\n    },\n    # If you are using EMAIL in above configuration you must need to configure EMAIL Configuration with EMAIL_ADMIN_USER and EMAIL_HOST_USER in settings.py\n    \"DB\": {\n        \"BACKEND\": \"tracify.channels.backends.db.DBChannel\",\n    },\n    # If you are using DB in above configuration you must need to add tracify.db_backend in INSTALLED_APP\n    \"SLACK\": {\n        \"BACKEND\": \"tracify.channels.backends.slack.SlackChannel\",\n        \"WEBHOOK_URL\": <\"SLACK_WEBHOOK_URL\">,\n    }\n    ...\n}\n\n    INSTALLED_APPS = [\n        ...\n        # The following apps is required:\n       tracify,\n    ]\n\n## Acknowledgements\n - We would like to express our gratitude to the following individuals and organizations for their contributions, support, and inspiration:\n   - PySquad Informatics LLP(https://pysquad.com/)\n\n - We also want to extend our thanks to the open-source community for their continuous efforts and contributions to the Python ecosystem. We greatly appreciate the work of all the developers, contributors, and maintainers of the libraries and frameworks that this package relies on.\n - Finally, we would like to thank our users for their feedback, bug reports, and feature requests. Your input has been invaluable in shaping the evolution of this package.\n - We are grateful to everyone who has played a part in making this package what it is today, and we look forward to continued collaboration and improvement in the future.\n\n## Configuration\n-  The package can be configured using configuration file or enviroment variable.Refer to the configuration documentation for details information on available setting and customization options.See details information inside `docs/configuration.rst`.\n-  Troubleshooting and Support If you encounter any issues or have questions, please visit our support page or check out the FAQs for common troubleshooting steps and answers to frequently asked questions. See details information inside `docs/faq.rst`.\n-  Changelog to see the full history of changes made to the package.please refer to the changlog.See details information inside `ChangLog.rst`.\n-  This packages is licenced under the MIT Licence.See details information inside`License`.\n-  Refer to the Channels documentation for details information on available channels.See details information inside `docs/channels.rst`\n-  Release version related information you can get inside the release-notes documents.See details information inside `docs/release-notes.rst`\n\n## License\n*MIT License:* <https://choosealicense.com/licenses/mit/>\n\n## Contact\nFor any inquiries or feedback, you can reach us at contact@pysquad.com or join our community channel from here https://discord.gg/d2yxwBCd.",
    "bugtrack_url": null,
    "license": "",
    "summary": "Django Tracify",
    "version": "1.5.1",
    "project_urls": {
        "Bug Reports": "https://github.com/pys-info/tracify/issues",
        "Homepage": "https://github.com/pys-info/tracify",
        "Source": "https://github.com/pys-info/tracify"
    },
    "split_keywords": [
        "django",
        "issue",
        "tracker",
        "development"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d06be3fba5ed044a899dc3c03edff2a06079c7a96726197f812436bd1106693",
                "md5": "a65134b4f9dc919d4397b41472b9ce0d",
                "sha256": "d48fa43ea6400739f75e0a31f5a55d4c75f9d9d057499537f53f98e2378dd638"
            },
            "downloads": -1,
            "filename": "demo-tracify-1.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a65134b4f9dc919d4397b41472b9ce0d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 14648,
            "upload_time": "2024-01-08T10:36:28",
            "upload_time_iso_8601": "2024-01-08T10:36:28.335817Z",
            "url": "https://files.pythonhosted.org/packages/0d/06/be3fba5ed044a899dc3c03edff2a06079c7a96726197f812436bd1106693/demo-tracify-1.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-08 10:36:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pys-info",
    "github_project": "tracify",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "demo-tracify"
}
        
Elapsed time: 0.16046s