new project

38 views
Skip to first unread message

נתי שטרן

unread,
Jun 28, 2023, 4:46:18 PM6/28/23
to Django users

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!


Nature Green

unread,
Jul 11, 2023, 11:56:46 AM7/11/23
to Django users
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  Trending Update
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()
Reply all
Reply to author
Forward
0 new messages