Torrent Downloads » Other » [UdemyCourseDownloader] Build a Backend REST API with Python & Django - Advanced
Other
[UdemyCourseDownloader] Build a Backend REST API with Python & Django - Advanced
Torrent info
Name:[UdemyCourseDownloader] Build a Backend REST API with Python & Django - Advanced
Infohash: CE4B69EAFE5AFB2AAA57D177F9A6BAEE76089AD7
Total Size: 4.78 GB
Magnet: Magnet Download
Seeds: 0
Leechers: 0
Stream: Watch Full Movies @ LimeMovies
Last Updated: 2025-12-27 09:50:29 (Update Now)
Torrent added: 2019-08-09 17:00:24
Alternatives:[UdemyCourseDownloader] Build a Backend REST API with Python & Django - Advanced Torrents
Torrent Files List
13. Deploying our API to a server on AWS (Size: 4.78 GB) (Files: 240)
13. Deploying our API to a server on AWS
4. Add deployment script and configs to our project.mp4
1. Introduction to deploying our app to AWS.mp4
1. Introduction to deploying our app to AWS.vtt
1.1 GitHub.html
1.2 AWS Free Tier.html
2. Add key pair to AWS.mp4
2. Add key pair to AWS.vtt
3. Create EC2 server instance.mp4
3. Create EC2 server instance.vtt
3.1 AMI Image Number.html
4. Add deployment script and configs to our project.vtt
4.1 deploy.zip.html
4.2 setup.sh.html
4.3 nginx_profiles_api.conf.html
4.4 update.sh.html
4.5 supervisor_profiles_api.conf.html
5. Deploy to server.mp4
5. Deploy to server.vtt
6. Update allowed hosts and deploy changes.mp4
6. Update allowed hosts and deploy changes.vtt
udemycoursedownloader.com.url
01. Course introduction
1. Course structure.mp4
1. Course structure.vtt
2. Technologies.mp4
2. Technologies.vtt
3. Vagrant vs. Docker.mp4
3. Vagrant vs. Docker.vtt
4. How to get the most out of this course.mp4
4. How to get the most out of this course.vtt
5. How to get help.mp4
5. How to get help.vtt
5.1 How to ask questions on Stack Overflow (and get answers).html
02. Setting up your development environment
1. Windows Installing Git, VirtualBox, Vagrant, Atom and ModHeader.mp4
1. Windows Installing Git, VirtualBox, Vagrant, Atom and ModHeader.vtt
1.1 Git-SCM.html
1.1 Vagrant.html
1.2 Atom.html
1.2 Vagrant.html
1.3 Atom.html
1.3 VirtualBox.html
1.4 Cheatsheet.html
1.4 ModHeader.html
1.5 Git-SCM.html
1.5 VirtualBox.html
1.6 Cheatsheet.html
1.6 ModHeader.html
2. macOS Installing Git, VirtualBox, Vagrant, Atom and ModHeader.mp4
2. macOS Installing Git, VirtualBox, Vagrant, Atom and ModHeader.vtt
2.1 Vagrant.html
2.1 VirtualBox.html
2.2 Cheatsheet.html
2.2 Vagrant.html
2.3 Git-SCM.html
2.3 ModHeader.html
2.4 Cheatsheet.html
2.4 VirtualBox.html
2.5 Git-SCM.html
2.5 ModHeader.html
2.6 Atom Editor.html
03. Setting up your project
1. Creating a workspace.mp4
1. Creating a workspace.vtt
2. Creating a Git project.mp4
2. Creating a Git project.vtt
2.1 .gitignore.html
2.1 Cheatsheet.html
2.2 GitHub Markdown Cheatsheet.html
2.2 LICENSE.html
2.3 .gitignore.html
2.3 LICENSE.html
2.4 Cheatsheet.html
2.4 GitHub Markdown Cheatsheet.html
3. Pushing to GitHub.mp4
3. Pushing to GitHub.vtt
04. Creating a development server
1. Creating a Vagrantfile.mp4
1. Creating a Vagrantfile.vtt
2. Configuring our Vagrant box.mp4
2. Configuring our Vagrant box.vtt
2.1 Vagrantfile.html
3. Running and connecting to our dev server.mp4
3. Running and connecting to our dev server.vtt
4. Running a Hello World script.mp4
4. Running a Hello World script.vtt
05. Creating a Django app
1. Create Python Virtual Environment.mp4
1. Create Python Virtual Environment.vtt
1.1 Virtual Environment (Docs).html
2. Install required Python packages.mp4
2. Install required Python packages.vtt
2.1 Python Package Index (PyPi).html
3. Create a new Django project & app.mp4
3. Create a new Django project & app.vtt
4. Enable our app in the Django settings file.mp4
4. Enable our app in the Django settings file.vtt
5. Test and commit our changes.mp4
5. Test and commit our changes.vtt
06. Setup the Database
1. What are Django Models.mp4
1. What are Django Models.vtt
1.1 Django Models (Official Docs).html
2. Create our user database model.mp4
2. Create our user database model.vtt
2.1 models.py.html
2.1 Substituting a custom User model (Official Docs).html
2.2 Django Model Fields (Official Docs).html
2.2 PEP 8 Guidelines.html
2.3 Django Model Fields (Official Docs).html
2.3 PEP 8 Guidelines.html
2.4 models.py.html
2.4 Substituting a custom User model (Official Docs).html
3. Add a user model manager.mp4
3. Add a user model manager.vtt
3.1 normalize_email (Official Docs).html
3.1 PEP 8 Guidelines.html
3.2 normalize_email (Official Docs).html
3.2 PEP 8 Guidelines.html
3.3 models.py.html
4. Set our custom user model.mp4
4. Set our custom user model.vtt
4.1 Official Django docs for custom user model setting.html
5. Create migrations and sync DB.mp4
5. Create migrations and sync DB.vtt
07. Setup Django Admin
1. Creating a superuser.mp4
1. Creating a superuser.vtt
1.1 Django Admin (Official Docs).html
2. Enable Django Admin.mp4
2. Enable Django Admin.vtt
2.1 Django Admin override model name.html
3. Test Django Admin.mp4
3. Test Django Admin.vtt
3.1 Official Django docs for overriding model name.html
08. Introduction to API Views
1. What is an APIView.mp4
1. What is an APIView.vtt
1.1 APIView (Official Docs).html
2. Create first APIView.mp4
2. Create first APIView.vtt
2.1 views.py.html
3. Configure view URL.mp4
3. Configure view URL.vtt
3.1 Path function official docs.html
3.2 URL Dispatcher (Official Docs).html
3.3 profiles_apiurls.py.html
3.4 profiles_projecturls.py.html
3.5 Include urls docs.html
4. Testing our API View.mp4
4. Testing our API View.vtt
5. Create a Serializer.mp4
5. Create a Serializer.vtt
5.1 serializers.py.html
5.2 Serializer Fields (Official Docs).html
5.3 Serializers (Official Docs).html
6. Add POST method to APIView.mp4
6. Add POST method to APIView.vtt
6.1 Status Codes (Official Docs).html
7. Test POST Function.mp4
7. Test POST Function.vtt
7.1 views.py.html
8. Add PUT, PATCH and DELETE methods.mp4
8. Add PUT, PATCH and DELETE methods.vtt
8.1 views.py.html
9. Test the PUT, PATCH and DELETE methods.mp4
9. Test the PUT, PATCH and DELETE methods.vtt
09. Introduction to Viewsets
1. What is a Viewset.mp4
1. What is a Viewset.vtt
2. Create a simple Viewset.mp4
2. Create a simple Viewset.vtt
2.1 views.py.html
3. Add URL Router.mp4
3. Add URL Router.vtt
3.1 urls.py.html
4. Testing our Viewset.mp4
4. Testing our Viewset.vtt
5. Add create, retrieve, update, partial_update and destroy functions.mp4
5. Add create, retrieve, update, partial_update and destroy functions.vtt
5.1 views.py.html
6. Test Viewset.mp4
6. Test Viewset.vtt
10. Create Profiles API
1. Plan our Profiles API.mp4
1. Plan our Profiles API.vtt
2. Create user profile serializer.mp4
2. Create user profile serializer.vtt
2.1 serializers.py.html
2.2 ModelSerializer (Official Docs).html
3. Create profiles ViewSet.mp4
3. Create profiles ViewSet.vtt
3.1 views.py.html
4. Register profile Viewset with the URL router.mp4
4. Register profile Viewset with the URL router.vtt
5. Test creating a profile.mp4
5. Test creating a profile.vtt
6. Create permission class.mp4
6. Create permission class.vtt
6.1 Permissions (Official Docs).html
6.2 permissions.py.html
7. Add authentication and permissions to Viewset.mp4
7. Add authentication and permissions to Viewset.vtt
7.1 views.py.html
8. Test new permissions.mp4
8. Test new permissions.vtt
9. Add search profiles feature.mp4
9. Add search profiles feature.vtt
9.1 views.py.html
10. Test searching profiles.mp4
10. Test searching profiles.vtt
11. Create login API
1. Create login API viewset.mp4
1.1 views.py.html
2. Test login API.mp4
2. Test login API.vtt
3. Set token header using ModHeader extension.mp4
3. Set token header using ModHeader extension.vtt
12. Create profile feed API
1. Plan profile feed API.mp4
1. Plan profile feed API.vtt
2. Add new model Item.mp4
2. Add new model Item.vtt
2.1 models.py.html
3. Create and run model migration.mp4
3. Create and run model migration.vtt
4. Add profile feed model to admin.mp4
4. Add profile feed model to admin.vtt
5. Create profile feed item serializer.mp4
5. Create profile feed item serializer.vtt
5.1 serializers.py.html
6. Create ViewSet for our profile feed item.mp4
6. Create ViewSet for our profile feed item.vtt
6.1 views.py.html
7. Test Feed API.mp4
7. Test Feed API.vtt
8. Add permissions for feed API.mp4
8. Add permissions for feed API.vtt
8.1 permissions.py.html
8.2 views.py.html
9. Test feed API permissions.mp4
9. Test feed API permissions.vtt
10. Restrict viewing status updates to logged in users only.mp4
10. Restrict viewing status updates to logged in users only.vtt
10.1 views.py.html
11. Test new private feed.mp4
11. Test new private feed.vtt
Udemy Course downloader.txt
14. Summary
1. Course outro.mp4
1. Course outro.vtt
1.1 Django (Official Docs).html
1.2 Django REST Framework (Official Docs).html
tracker
leech seedsTorrent description
Feel free to post any comments about this torrent, including links to Subtitle, samples, screenshots, or any other relevant information, Watch [UdemyCourseDownloader] Build a Backend REST API with Python & Django - Advanced Online Free Full Movies Like 123Movies, Putlockers, Fmovies, Netflix or Download Direct via Magnet Link in Torrent Details.
related torrents
Torrent name
health leech seeds Size









