Best Python code snippet using localstack_python
email.py
Source:email.py
...25 self.from_email = from_email26 self.to = [to]27 self.bcc = bcc or []28 self.html_content = render_to_string(html_content, c)29 self.text_content = self._get_text_content(text_content, html_content, c)30 def _get_text_content(self, text_content, html_content, c):31 if text_content:32 return render_to_string(self.text_content, c)33 else:34 return html.strip_tags(render_to_string(html_content, c))35 @property36 def msg(self):37 msg = EmailMultiAlternatives(self.subject, self.text_content, self.from_email,38 self.to, self.bcc)39 msg.attach_alternative(self.html_content, "text/html")40 return msg41### EMAILS42@shared_task43def send_account_charged_email(hotel, charge):44 hotel_admin = hotel.admin...
legacy.py
Source:legacy.py
...67 def __repr__(self):68 return '<%(class_name)s: %(time)s %(destination)s %(status)s>' %({69 'class_name': self.__class__.__name__, 'time': self.time,70 'destination': self.destination, 'status': self.status})71 def _get_text_content(self, element):72 return ''.join(element.itertext()).strip()73 @property74 def description(self):75 return self._get_text_content(self._cols[3])76 @property77 def destination(self):78 content = self._get_text_content(self._cols[2])79 return content.split('To ', 1)[-1]80 @property81 def line(self):82 return self._cols[0][0].get('title')83 @property84 def status(self):85 return self._get_text_content(self._cols[5])86 @property87 def time(self):88 content = self._get_text_content(self._cols[1])...
all_content_of_a_page.py
Source:all_content_of_a_page.py
...16 return title.string17 @property18 def content(self):19 return self.soup20 def _get_text_content(self):21 # kill all script and style elements22 for script in self.soup(["script", "style"]):23 script.extract() # rip it out24 # get the entire text25 text = self.soup.get_text(separator=' ')26 # break into lines and remove leading and trailing space on each27 lines = (line.strip() for line in text.splitlines())28 # break multi-headlines into a line each29 chunks = (phrase.strip() for line in lines for phrase in line.split(" "))30 # drop blank lines31 text = '\n'.join(chunk for chunk in chunks if chunk)32 return text33 @property34 def get_all_words(self):35 expression = r'[a-zA-Z_]*'36 _matches = [w for w in re.findall(expression, self._get_text_content()) if w != '' and len(w) > 1]37 return _matches38 def _counter_object_of_words(self):39 _words_Counted = Counter(self.get_all_words) # create a Counter Object40 return _words_Counted41 @property42 def most_common_words(self):43 _each_word_counted = self._counter_object_of_words().most_common()44 return _each_word_counted # return list of words as tuple [(word1, 5), (ward2,3)45 @property46 def total_number_of_words(self):47 _number_of_words = sum(self._counter_object_of_words().values())48 return _number_of_words49 @property50 def unique_elements(self):...
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!!