This file contains hidden or 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 urllib.request import Request, urlopen | |
| from bs4 import BeautifulSoup | |
| import csv | |
| try: | |
| max = 20 | |
| technologies = ['python','java','aws','aws-lambda','pandas','numpy','selenium','qtp','testing',] | |
| for tech in technologies: | |
| print(tech) |
This file contains hidden or 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 smtplib | |
| import csv | |
| from string import Template | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| MY_ADDRESS = 'YOUR_EMAIL@gmail.com' #<----------------# Enter your gmail Email address here########## |
This file contains hidden or 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
| https://github.com/sureshparimi/RPA-UIPATH |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <module type="PYTHON_MODULE" version="4"> | |
| <component name="NewModuleRootManager"> | |
| <content url="file://$MODULE_DIR$" /> | |
| <orderEntry type="jdk" jdkName="Python 3.7 (Utilities)" jdkType="Python SDK" /> | |
| <orderEntry type="sourceFolder" forTests="false" /> | |
| </component> | |
| <component name="TestRunnerService"> | |
| <option name="projectConfiguration" value="Nosetests" /> | |
| <option name="PROJECT_TEST_RUNNER" value="Nosetests" /> |
This file contains hidden or 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
| ############################################################# | |
| # Test case Section | |
| ############################################################## | |
| *** Settings *** | |
| Resource ../Resources/SOKeywords.robot | |
| Library SeleniumLibrary | |
| *** Test Cases *** | |
| Retrieve Jobs in SO |
This file contains hidden or 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 re | |
| import requests | |
| import simplejson as json | |
| from robot.api import logger | |
| from robot.libraries.BuiltIn import BuiltIn | |
| USERNAME_ACCESS_KEY = re.compile('^(http|https):\/\/([^:]+):([^@]+)@') |
This file contains hidden or 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
| ############################################## | |
| This script helps in scraping data from google | |
| ############################################### | |
| from splinter import Browser | |
| import pandas as pd | |
| # open a browser | |
| browser = Browser('firefox') | |
| # Width, Height | |
| browser.driver.set_window_size(640, 480) |
This file contains hidden or 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 json | |
| import requests | |
| import urllib | |
| import openpyxl | |
| main_API = 'https://api.mailtest.in/v1/' |
This file contains hidden or 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 xml.etree.ElementTree as ET | |
| import itertools | |
| import os | |
| tree = ET.parse('C:\\Users\\Administrator\\Desktop\\API testing\\Gordon_Seed_03212018.xml') | |
| count = 0 | |
| for elem in tree.findall(".//additonalTradeItemID"): | |
| if (elem.get("type") == "DISTRIBUTOR"): |
This file contains hidden or 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
| ***setting*** | |
| Library SeleniumLibrary | |
| # Resource D:/Robot_Settings/resources.txt | |
| ***Test case*** | |
| 01 Open Google | |
| Open Google | |
| *** Variables *** |
NewerOlder