Top Tweets for #djangoTutorial
4️⃣ Designing URLs and views
4/ test your new view
Run server
./manage.py runserver 10000
visit http://127.0.0.1:10000/
You should see the following output
#learndjangotutorial #Python #DjangoTutorial #SoftwareEngineering #SoftwareDevelopment

4️⃣ Designing URLs and views
1/ create a simple view
open file ldt/apps/core/views.py
#learndjangotutorial #Python #DjangoTutorial #SoftwareEngineering #SoftwareDevelopment

3️⃣ Building models and connecting to a database
5/ add data
./manage.py shell
from ldt.apps.core.models import Contact
Contact.objects.create(name='Jon Smith', email='[email protected]', text='Hello')
Contact.objects.all()
#learndjangotutorial #Python #DjangoTutorial #django

3️⃣ Building models and connecting to a database
4/ create migration and migrate
Make sure you are in the root directory where the file https://t.co/6Zv7cX1mjk is.
./manage.py makemigrations
./manage.py migrate
#learndjangotutorial #Python #DjangoTutorial #SoftwareDevelopment

3️⃣ Building models and connecting to a database
3/ define your model
go to ldt/apps/core/models.py
#learndjangotutorial #Python #DjangoTutorial #SoftwareEngineering #SoftwareDevelopment

3️⃣ Building models and connecting to a database
2/ add your app
In your https://t.co/NrulIw0HaI add 'ldt.apps.core'
and in apps/core/apps.py
change name to 'ldt.apps.core'
#learndjangotutorial #Python #DjangoTutorial #SoftwareEngineering #SoftwareDevelopment

3️⃣ Building models and connecting to a database
1/ Create own app
#learndjangotutorial #Python #DjangoTutorial
mkdir <name>/apps
touch <name>/apps/__init__.py
cd <name>/apps
django-admin startapp core

2️⃣ Creating a Django project
#learndjangotutorial #Python #DjangoTutorial
1/
//install most recent version of django
pip install django
django-admin createproject <name>
change into <name>
//Run
python https://t.co/6Zv7cX1mjk migrate
python https://t.co/6Zv7cX1mjk runserver
↓

1️⃣ Setting up a development environment
3/Virtual environment
#learndjangotutorial #Python #DjangoTutorial
python3.xx -m venv <env_name>
python3.11 -m venv <env_name>
#Windows
env_name/Scripts/activate.bat
#Linux/#Mac
source env_name/bin/activate
pip install django
1️⃣ Setting up a development environment
2/ Tips
#bestpractices #Python #DjangoTutorial
pyenv #Windows
//Install a specific version
pyenv install <version>
//Set specific version
pyenv global <version>
//show installed versions
pyenv versions
python -V

1️⃣ Setting up a development environment
1/
#learndjangotutorial #Python #DjangoTutorial
Download recent version of python on https://t.co/Qoq24nZMJH
🐍🌐 Exciting News! Learn Django, the Python web framework, with an easy-to-follow tutorial! 🎉✨ Whether you're a beginner or an experienced developer, this guide will help you build web applications with ease. Let's get started! 🚀 #Python #DjangoTutorial

Just finished watching the 'Django Tutorial for Beginners' by Telusko(@navinreddy20) and it's a great resource for anyone looking to clear their basics on Django! Highly recommend it for those starting out with web development. #DjangoTutorial #WebDevelopment #django #Python

Pivot digital projects like a PRO with this tips.
#digital #digitalproduct #developer #programmer #coder #coding #IT #codingtutorials #youtube #youtuber #javascript #reactjs #angularjs #vuejs #nodejs #fullstack #pythondeveloper #djangotutorial #html #css #fullstacklearning

İlan Sitesi Yapımı - Kullanıcı Kayıt İşlemi
#django , #djangotutorial , #djangodersleri
https://t.co/cyaDhtlAGr
How To Add Category Pages To A Blog With Django and Python!
#Django #Python #PythonDjango #DjangoBlog #DjangoTutorial #WEbDeveloper #WebDevelopment #Codemy #JohnElder #Coding #Coder #cs #html #css #webdesign #DjangoRocks
https://t.co/twESV6mlwn
How to build a Contact Webpage with Django!
#django #django3 #djangoTutorial #Python #DjangoPython #PythonDjango #Coder #Codemy #JohnElder #WEbDeveloper #WebDevelopment
https://t.co/QIjCoGfacQ
In this video, I am going to explain to you reusable templates and forms in Django.
To know more: https://t.co/jny0nl1haj
#Django #Reusabletemplates #Djangotutorial #artificialintelligence #deeplearning #machinelearning #tensorflow #deepinsightofAI
Do you need to have your #Django #app sending #emails? Check out our #guide on how to do this using different functions and out-of-the-box packages. #CodeSamples included!
#emailtesting #emailsending #djangotutorial https://t.co/VOBb6GIo9t
Programming a Social Media Network - Indie developer! #programming #DjangoSocialMedia #djangotutorial #tradingapps #pythontutorial #pythonprogramming #djangoprogramming #cryptocurrency #tradingbots #cryptopotluck #potluckeconomics
https://t.co/PQzuTnR0eQ
Most Popular Users

Elon Musk 
@elonmusk
240.2M followers

Barack Obama 
@barackobama
119.3M followers

Donald J. Trump 
@realdonaldtrump
111.6M followers

Cristiano Ronaldo 
@cristiano
109M followers

Narendra Modi 
@narendramodi
107M followers

Rihanna 
@rihanna
97.3M followers

NASA 
@nasa
92.1M followers

Justin Bieber 
@justinbieber
90.6M followers

KATY PERRY 
@katyperry
86.8M followers

Taylor Swift 
@taylorswift13
80.6M followers

Lady Gaga 
@ladygaga
72.2M followers

Kim Kardashian 
@kimkardashian
69.4M followers

YouTube 
@youtube
68.6M followers

Virat Kohli 
@imvkohli
68.6M followers

Bill Gates 
@billgates
63.4M followers

The Ellen Show
@theellenshow
62.5M followers

CNN 
@cnn
61.9M followers

Neymar Jr 
@neymarjr
61.1M followers

X 
@x
60.9M followers

Selena Gomez 
@selenagomez
59.9M followers











