Best Python code snippet using localstack_python
student_report.py
Source:student_report.py
1import xml.etree.ElementTree as ET2from datetime import datetime, date3import logging4import os5def add_tags(tag, word):6 return "<%s>%s</%s>" % (tag, word, tag)7def add_br_tag(tag):8 return "<%s>" % (tag)9 10def add_link(tag, h, pathoffile, filename):11 return "<%s %s %s >%s </%s>" % (tag, h, pathoffile, filename, tag)12class Html_Report_Generate():13 def __init__(self, filename):14 #to get details from xml file 15 self.tree = ET.parse(filename)16 self.root = self.tree.getroot()17 18 def html_page(self):19 20 self.summary = add_tags('h1 style="font-size:30px;"', 'Report of students of Class 12')21 self.summary += add_tags('h3', 'Total Number of students: ' + str(self.root.attrib['total_students']))22 self.summary += add_tags('h4', 'Time and date of test execution : ' + str(date.today().strftime("%B %d, %Y")) + " , "+str(datetime.now().strftime("%H:%M:%S")))23 self.summary = add_tags('div style="background-color:white; border:1px; width:500px; display: inline-block;"',self.summary)24 self.summary += add_br_tag('br')25 26 27 def html_table(self):28 sort_table = """function sort_table() {29 var input, filter, table, tr, td, j,i,ch, txtValue,ele;30 ele=document.getElementById("List_check")31 ch=ele.getElementsByTagName("input")32 for (j=0;j<ch.length;j++){33 if (ch[j].checked){34 filter =(ch[j].value.toUpperCase())}35 36 }37 table = document.getElementById("myTable");38 tr = table.getElementsByTagName("tr");39 40 // Loop through all table rows, and hide those who don't match the search query41 for (i = 0; i < tr.length; i++) {42 td = tr[i].getElementsByTagName("td")[6];43 44 if (td) {45 txtValue = td.textContent || td.innerText;46 if (txtValue.toUpperCase().indexOf(filter) > -1) {47 tr[i].style.display = "";48 } else {49 tr[i].style.display = "none";50 }51 }52 }53 }54 function read_all(){55 location.reload()56 var chk;57 chk = document.getElementById("all");58 chk.checked=True;59 }60 """61 62 self.pass_check = add_tags('input type="checkbox" id="pass" value="Pass" onclick="sort_table()"',63 "Pass" )64 self.fail_check = add_tags('input type="checkbox" id="fail" value="Fail" onclick="sort_table()"',65 "Fail" )66 67 self.all_check = add_tags('input type="checkbox" id="all" value="All" onclick="read_all()"', "All")68 self.checkBoxes = self.pass_check + self.fail_check + self.all_check69 self.checkBoxes = add_tags('div style="background-color:white; border:1px; width:300px; display: inline-block; font-weight:bold;" id="List_check"', self.checkBoxes)70 self.checkBoxes+=add_br_tag('br')71 self.main_content = self.summary +self.checkBoxes +add_br_tag('br')+add_br_tag('br')72 73 74 self.main_content += add_tags('script', sort_table)75 self.c = 076 # for creating table add_tags('th','File') +add_tags('td',str(self.ele.attrib['file']))77 self.table_head = add_tags('th', 'SL.NO') + add_tags('th', 'Student Name') + add_tags('th','Subject') + add_tags('th','Maximum Marks') + add_tags('th', 'Minimum Marks') +add_tags('th', 'Obtained Marks') +add_tags('th', 'Result')78 self.table_head = add_tags('tr style="font-weight:bold"', self.table_head)79 80 81 for self.ele in self.root: 82 self.c = self.c + 183 self.table_data = add_br_tag('br')84 for self.subele in self.ele:85 86 if (str(self.subele.attrib['Result']) == "PASS"):87 res_data = add_tags('td style="background-color:#393;font-weight:bold"',88 str(self.subele.attrib['Result']))89 elif (str(self.subele.attrib['Result']) == "FAIL"):90 res_data = add_tags('td style="background-color:Salmon ;font-weight:bold"', str(self.subele.attrib['Result']))91 92 self.table_data += add_tags('td', str(self.c)) +add_tags('td',self.ele.attrib['Name'])+add_tags('td', str(self.subele.text)) + add_tags('td', str(self.subele.attrib['Max_Marks']))+ add_tags('td',str(self.subele.attrib['Min_Marks']))+add_tags('td', str(self.subele.attrib['Obtained']))+res_data 93 94 self.table_data = add_tags('tr', self.table_data)95 96 self.table_head += self.table_data97 98 self.table_head = add_tags('table border=1 width=100% bgcolor=white id="myTable" ', self.table_head)99 100 self.main_content += self.table_head 101 self.main_content = add_tags('html width=100%',self.main_content) 102 103 104 def write_html(self, filename):105 with open(filename, "w+") as f:106 f.write(self.main_content)107 108if __name__ == '__main__':109 xml_file = 'Student_Subject.xml'110 html_file = Html_Report_Generate(xml_file)111 html_file.html_page()112 html_file.html_table()113 html_filename = 'Report.html'...
Answer14.py
Source:Answer14.py
1# 14. Write a Python function to create the HTML string with tags around the2# word(s).3# Sample function and result :add_tags('i', 'Python') -> '<i>Python</i>'4# add_tags('b', 'Python Tutorial') -> '<b>Python Tutorial </b>'5def add_tags(tag, html_string):6 wrapped_html = f"<{tag}>{html_string}</{tag}>"7 print(wrapped_html)8add_tags('i','python')9add_tags('b', 'Python Tutorial')10# def add_tags(tag, word):11# return "<%s>%s</%s>" % (tag, word, tag)12# print(add_tags('i', 'Python'))...
html_tag.py
Source:html_tag.py
1# Write a Python function to create the HTML string with tags around the word(s).2# Sample function and result : 3# add_tags('i', 'Python') -> '<i>Python</i>'4# add_tags('b', 'Python Tutorial') -> '<b>Python Tutorial </b>'5## Solution6def add_tags(arg1, arg2):7 print('<'+arg1+'>'+arg2+'</'+arg1+'>')8add_tags("i","Python")9add_tags('b', 'Python Tutorial')10## Solution211def add_tags(tag, word):12 return "<%s>%s</%s>" % (tag, word, tag)13 14print(add_tags('i', 'Python'))...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!