Hi, I have a website but it is based on PHP and MySql databases, So it is possible for me to convert my website into Django without losing any data or design. Sneaker India <https://findyourkicks.com/> Trending Update <https://shukriyasongs.shop/goals-and-attributes-in-tcs-answers/> *The website has live traffic and It is my client's website. *
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'mydatabase', 'USER': 'root', 'PASSWORD': 'password', 'HOST': 'localhost', 'PORT': '', } } from myapp.models import User users = User.objects.all() for user in users: print(user.username) from myapp.models import User user = User(username='John', email='john @example.com') user.save() from myapp.models import User user = User.objects.get(id=1) user.username = 'John Doe' user.save() On Thursday, June 29, 2023 at 2:16:18 AM UTC+5:30 נתי שטרן wrote: > > I have published a repository using Django and FalconPy! > > You can find the repository at the following link: > https://github.com/NSH531/gammau-crwd > > In this repository, I have combined the power of Django and FalconPy to > create a web application. Django provides a robust and feature-rich > framework for building web applications, while FalconPy is a Python client > library for the Falcon API. > > Feel free to explore the repository, clone it, and use it as a starting > point for your own projects. It contains the code and configuration files > necessary to set up the web application using Django and FalconPy. > > If you have any questions or need further assistance with the repository, > feel free to reach out. Happy coding! > 01 > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/dea504ea-ce01-43e4-8b06-25b4e695d53dn%40googlegroups.com.