How to use get_attachment method in mailosaur-python

Best Python code snippet using mailosaur-python_python

aws_connectparticipant_info.py

Source:aws_connectparticipant_info.py Github

copy

Full Screen

...94from ansible_collections.community.missing_collection.plugins.module_utils.aws_response_parser import aws_response_list_parser95def _connect(client, module):96 try:97 if module.params['get_attachment']:98 return client.get_attachment(99 AttachmentId=module.params['attachment_id'],100 ConnectionToken=module.params['connection_token'],101 ), False102 elif module.params['get_transcript']:103 if client.can_paginate('get_transcript'):104 paginator = client.get_paginator('get_transcript')105 return paginator.paginate(106 ContactId=module.params['contact_id'],107 ConnectionToken=module.params['connection_token'],108 ), True109 else:110 return client.get_transcript(111 ContactId=module.params['contact_id'],112 ConnectionToken=module.params['connection_token'],...

Full Screen

Full Screen

Information.py

Source:Information.py Github

copy

Full Screen

1import requests2from bs4 import BeautifulSoup3import fake_useragent4import time5import os6import tkinter7from exceptions import EX8""" Создаём путь для папок """9all_root = os.getcwd()10all_root = list(all_root.split('\\')[:-1])11zero_string = ''12for root in all_root:13 zero_string += root + '\\'14try:15 os.mkdir(f"{zero_string}\\data (VKPars)")16 zero_string += 'data (VKPars)' + '\\'17except EX as exc:18 print(exc)19 zero_string += 'data (VKPars)' + '\\'20useragent = fake_useragent.UserAgent().random21headers = {22 'User-Agent': useragent,23 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8'24}25def create_direct():26 """ Создаём папки с данными """27 paths = [f"{zero_string}gallery", f"{zero_string}voices", f"{zero_string}other"]28 try:29 for path in paths:30 os.mkdir(path)31 except OSError:32 pass33def open_pages(direct, datas, label):34 """ Парсим данные """35 create_direct()36 count = 037 for data in datas:38 try:39 with open(f"{direct}/{data}") as file:40 src = file.read()41 soup = BeautifulSoup(src, 'lxml')42 get_info_time = soup.find_all('div', class_='item')43 for info in get_info_time:44 try:45 try:46 get_all_attachment = info.find_all('div', class_='attachment')47 for i in get_all_attachment:48 get_attachment = i.find('a', class_='attachment__link').get('href')49 try:50 get_who = info.find('div', class_='message__header').get('a').text51 get_time = info.find('div', class_='message__header').text52 all_info = get_who + get_time.replace(':', '-').replace(53 ' ', '-').replace(',', '-')54 except:55 all_info = info.find('div', class_='message__header').text.replace(':', '-').replace(56 ' ', '-').replace(',', '-')57 download_data(get_attachment=get_attachment, all_info=all_info, count=count, label=label)58 count += 159 except:60 get_attachment = info.find('a', class_='attachment__link').get('href')61 try:62 get_who = info.find('div', class_='message__header').get('a').text63 get_time = info.find('div', class_='message__header').text64 all_info = get_who + get_time.replace(':', '-').replace(65 ' ', '-').replace(',', '-')66 except:67 all_info = info.find('div', class_='message__header').text.replace(':', '-').replace(68 ' ', '-').replace(',', '-')69 download_data(get_attachment=get_attachment, all_info=all_info, count=count, label=label)70 count += 171 except:72 continue73 except EX as ex:74 label.insert(tkinter.END, f"[INFO] Process finished with: {ex}")75def download_data(get_attachment: str, all_info: str, count: int, label):76 """ Расфасовываем данные по папкам """77 r = requests.get(url=get_attachment, headers=headers)78 file_format = str(get_attachment.split('.')[-1])79 if file_format == 'jpg' or file_format == 'jpeg' or file_format == 'png' or file_format == 'gif':80 with open(f"{zero_string}gallery/id_{count}___{all_info}.{file_format}", 'wb') as file:81 file.write(r.content)82 elif file_format == 'ogg' or file_format == 'mp3':83 with open(f"{zero_string}voices/id_{count}___{all_info}.{file_format}", 'wb') as file:84 file.write(r.content)85 else:86 with open(f"{zero_string}other/id_{count}___{all_info}.{file_format}", 'wb') as file:87 file.write(r.content)88 time.sleep(0.5)89 t = time.localtime()90 now = time.strftime('%H:%M:%S', t)91 label.insert(tkinter.END, f'''[INFO: {now}] From "{all_info}" downloaded file with extension ".{file_format}"...

Full Screen

Full Screen

test.py

Source:test.py Github

copy

Full Screen

...6 for photo in message.get_photos():7 print(photo.id)8 print(photo.owner_id)9 print(photo.access_key)10 print(photo.get_attachment())11 bot.send.photo(user_id=message.user_id,12 attachment=photo.get_attachment())13 if message.have_videos:14 for video in message.get_videos():15 print(video.id)16 print(video.owner_id)17 print(video.access_key)18 print(video.get_attachment())19 bot.send.video(user_id=message.user_id,20 attachment=video.get_attachment())21 if message.have_files:22 for video in message.get_files():23 print(video.id)24 print(video.owner_id)25 print(video.access_key)26 print(video.get_attachment())27 bot.send.file(user_id=message.user_id,28 attachment=video.get_attachment())29TOKEN = "acc6b6f00d67fe61afc26d1527898ce49510532e229601ceeb2b781c26b44794fe756f9dd58634c48de21"30APP_ID = 19622160631bot = Bot()32bot.TOKEN = TOKEN33bot.APP_ID = APP_ID...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run mailosaur-python automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful