Skip to main content

Posts

Django User Authentication to manage registration,login and logout operation | #django

 Django provide user authentication system to manage secure Login, Registration and Logout. Code of views.py from django.shortcuts import render,redirect from django.http import HttpResponse from . models import Register from django.contrib.auth.models import User from django.contrib.auth import authenticate from django.contrib.auth import logout,login def reg ( request ):     if request.method== 'POST' :                 user = User.objects.create_user(request.POST[ 'txtuser' ], request.POST[ 'txtemail' ],request.POST[ 'txtpass' ])         user.first_name=request.POST[ 'txtfirst' ]         user.last_name=request.POST[ 'txtlast' ]         user.save()         return render(request, "helloapp/reg.html" , { "key" : "data inserted successfully" })     else :         return render(reques...

Selenium with Python | How to write code of selenium web driver using Python Porgramming Language

Selenium with Python | How to write code of selenium web driver using Python Porgramming Language  What is selenium? It is automation based software system that is used to implement functional testing and regression testing operation for web application. selenium provide various component to pefrom testing operation using varius programming language. now the selenium 4 is the latest version of selenium. Selenium Component 1) Selenium IDE 1) Web Driver 3) Selenium GRID 4) Selenium Framework (Data driven, keyword driven, hybrid driven) python filename.py How to create selenium environment under windows for python programming language 1) install python (enable pip and configure python path) 2) open cmd and write  pip install selenium 3) create folder under any drive and open this folder using VS Code 4) create python file and write this script from selenium import webdriver driver = webdriver.Chrome() driver.get("https://www.google.com/") driver.quit() 5) open VS Code terminal a...

Best Data Analytics Training in Indore

 🚀 Level up your career with our Data Analytics Training! 📊 Are you ready to dive into the world of data analytics? Join our comprehensive training program designed to equip you with the skills and knowledge needed to excel in this rapidly growing field. 🔍 What You'll Learn: Fundamentals of data analysis Data visualization techniques Statistical analysis methods Hands-on experience with popular analytics tools like Python, R, and SQL Real-world case studies and projects 📅 Schedule: 08-04-2024 📍 Location: Palasia | Vijay nagar | Bhawarkua     Mode:  ONLINE/OFFLINE 💡 Why Choose Us: Experienced instructors with industry expertise Practical, hands-on learning approach Small class sizes for personalized attention Flexible learning options to suit your schedule Don't miss this opportunity to boost your career prospects and become a proficient data analyst! Reserve your spot now. For more information and registration, visit Our Office #DataAnalytics #Training #CareerD...

What is Kubernetes | Devops

  Kubernetes in depth:- Kubernetes is the most popular orchestrator for deploying and scaling containerized systems. You can use Kubernetes to reliably build and distribute your applications in the cloud. In this beginner’s guide, you’ll learn what Kubernetes can do and how to get started running your own containerized solutions. What Is Kubernetes? Kubernetes Features How Kubernetes Works Installation and Setup Kubernetes Basic Terms and Concepts Using Kubectl to Interact With Kubernetes What is Kubernetes? Kubernetes is an open-source system that automates container deployment tasks. It was originally developed at Google but is now maintained as part of the Cloud Native Computing Foundation (CNCF). Kubernetes has risen to prominence because it solves many of the challenges around using containers in production. It makes it easy to launch limitless container replicas, distribute them across multiple physical hosts, and set up networking so users can reach your service. Most develo...

AJAX in Spring MVC

AJAX in Spring MVC:- ..............................................................................................  <%@ page language="java" contentType="text/html; charset=ISO-8859-1"     pageEncoding="ISO-8859-1"%> <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Insert title here</title> <script> function searchdata(param) { var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange=function() { if(param!='') { document.getElementById("res").innerHTML = xmlhttp.responseText; } else { document.getElementById("res").innerHTML = ''; } } xmlhttp.open("post","ajaxcode.do?q="+param,true); xmlhttp.send(); } </script> </head> <body> <input type="text" placeholder="enter character" onkeyup="searchdata(this.value)" /> <div id=...

100% Money back Program in Java Training, Mern Stack Training, Software Testing Training, Data Analytics Training

100% Money back Program in Java Training, Mern Stack Training, Software Testing Training, Data Analytics Training We provide a 100% money-back guarantee program on Java Training, Python Training, Software Testing Training, Data Science & Data Analytics Training , MERN Stack Training. The course duration is 9 months, and the course validity is 12 months. After 12 months, if you are not placed after then we will refund 100% of the money to you. We are offering these technology: 1) Java Full Stack Developer (REACT JS, JAVA, SPRING Boot, Microservices, MongoDB, MYSQL, AWS, JENKINS, DEPLOYMENT, API TESTING) 2) MERN Stack Developer (MONGO DB, Express JS, Node JS, REACT JS, DEVOPS) 3) Python Full Stack Developer (Python, Data science, Django, Django Rest, Flask, REACT JS, Mongodb, MYSQL) 4) Software Testing Manual + Automation Testing + Python/Java + Jenknis + Cucumber + API Testing + DB Testing + Performance Testing  5) Data Science Engineer Profile (Python, Data Science, ML, AI, DSA...

Cloud Formation in AWS 2024 | AWS Training in Indore #ShivaConceptSolution

 Create Image Template to create s3 Bucket with Role and AWS Policy ................................................................................................................................ AWS CloudFormation is a service that allows you to model and provision your AWS resources using code. This service helps you manage your infrastructure as code, making it easier to deploy and update resources consistently and efficiently. 1. Getting Started with AWS CloudFormation Sign in to AWS Management Console: Go to the AWS Management Console and sign in with your credentials. Navigate to CloudFormation: In the AWS Management Console, search for "CloudFormation" and select it. Create a Stack: Click on "Create Stack" and provide a name for your stack. Choose a template source (Create Template in JSON or YAML, Upload a Template file, or Use AWS Quick Start templates). Configure the template parameters, if any. Click "Next" and review the template. Click "...