This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set PYTHON_URL=https://www.python.org/ftp/python/3.9.7/python-3.9.7-amd64.exe | |
rem Step 1: Download Python installer | |
echo Downloading Python installer... | |
curl -L -o python_installer.exe %PYTHON_URL% | |
rem Step 2: Install Python | |
echo Installing Python... | |
python_installer.exe /quiet /passive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import imaplib, email | |
import time | |
import sys | |
#========================================= | |
user = 'xyzxxxaxbxzx123@gmail.com' | |
password = 'xxx@123456' | |
imap_url = 'imap.gmail.com' | |
#========================================== | |
#=============[Reading email here..]===============================>> | |
mail = imaplib.IMAP4_SSL(imap_url, 993) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import imaplib, email | |
import time | |
import sys | |
#========================================= | |
user = 'xyzxxxaxbxzx123@gmail.com' | |
password = 'xxx@123456' | |
imap_url = 'imap.gmail.com' | |
#========================================== | |
#=============[Reading email here..]===============================>> | |
mail = imaplib.IMAP4_SSL(imap_url, 993) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
from time import sleep | |
from selenium import webdriver | |
driver = webdriver.Firefox(executable_path="C:\Program Files (x86)\geckodriver.exe") | |
driver.get('https://www.google.com'); | |
sleep(5) | |
driver.get('https://dhritinet.com/'); | |
sleep(5) | |
driver.get('https://www.airtel.in/'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
def loginBOT(usr, pas): | |
br = webdriver.Firefox() | |
br.get("https://web.facebook.com/") | |
user = br.find_element_by_css_selector("#email") | |
user.clear() | |
user.send_keys(usr) | |
passwd = br.find_element_by_css_selector("#pass") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
print("Hello world") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//This is simple program in php programming language. | |
echo "Hello world"; // this is message display on the screen. | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class hello{ | |
public static (String[] args) | |
System.out.println("Hello world"); | |
} |