Metadata-Version: 2.3
Name: django_no_hot_reload_mod
Version: 0.0.2
Summary: Change django endpoints' functionality with no hot reload.
Project-URL: Homepage, https://github.com/AggelosAr/django-no-hot-reload-mod
Project-URL: Issues, https://github.com/AggelosAr/django-no-hot-reload-mod
Author-email: "https://github.com/AggelosAr" <aggelosarelakis@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown


✨ django-no-hot-reload-mod ✨
Effortlessly modify Django endpoint functionality without restarting the server.


https://pypi.org/project/django-no-hot-reload-mod/

pip install django-no-hot-reload-mod

🌟 Overview
django-no-hot-reload-mod enables real-time modifications to Django endpoints without needing to restart the development server. Perfect for rapid development and testing, allowing you to make frequent changes on the fly.


⚙️ Installation
1️⃣ Add to Installed Apps
Add django_no_hot_reload_mod.code_modifier to the INSTALLED_APPS list in your settings.py:


python
Copy code
INSTALLED_APPS = [
    ...,
    'django_no_hot_reload_mod.src.code_modifier',
]

2️⃣ Update URL Configuration
Include code_modifier in your project’s URL configuration by adding it to your urls.py:


python
Copy code
from django.urls import path, include


urlpatterns = [
    ...,
    path("code_modifier/", include("django_no_hot_reload_mod.src.code_modifier.urls")),
]

Let me know if you’d like any further changes or additions! 🎉