PySimpleGui how to select the popup_get_text() automatically? - pyautogui

I'm using PySimpleGui for some time and i'm making a Gui with a Database to register products with a wireless barcode scanner, but since i will always be distante from the computer, i wanted to the popup automatically select it's input field, so i can scan another code without needing to click on it, if someone can help me with this and give some hint's to write a better code i will be very grateful.
Tried Searching PySimpleGui documentation,
Tried using pyautogui and other keyboard/mouse modules to press tab or click on it.
i'm expecting to the input field be selected, so i can continue with the scans without needing to click on it every time.
#Libs necessárias
import PySimpleGUI as sg
import Backend
Setores = Backend.Setores()
Produtos = Backend.Produtos()
sg.change_look_and_feel("DarkGrey10")
layout = [
[sg.Text(
"Setor Selecionado: ",
justification='center',
key='-Selecionado-',
size=(42,1),
font=['Arial', '14', 'bold'],
relief='groove'
)],
[sg.Table(
headings=["Setores"],
values=Setores.Lista_De_Setores(),
justification='left',
def_col_width=30,
auto_size_columns=False,
key='-Tabela-',
hide_vertical_scroll=True,
right_click_menu=['Teste', ['Setores', ["Adicionar Setor", "Deletar Setor"], "Adicionar Produto"]])],
[sg.Text("Procurar Setor:"), sg.Input(size=(25,5), key='-Procurar-')],
]
window = sg.Window("Auto Prices", layout, font=["Arial", "18", "bold"], element_justification='center', finalize=True, return_keyboard_events=True, use_custom_titlebar=True)
window['-Tabela-'].bind('<Double-Button-1>', 'Selecionou')
if __name__ == "__main__":
while True:
eventos, valores = window.read()
if eventos == sg.WIN_CLOSED:
break
#===== Testes =====#
if eventos == "Adicionar Produto":
Produtos.Adicionar_Produto()
#========== Adicionar/Deletar Setor ==========#
if eventos == "Adicionar Setor": #Cria um novo Setor
Setores.Adicionar_Setor()
window['-Tabela-'].update(values=Setores.Lista_De_Setores()) # Atualiza a lista de Setores
if eventos == "Deletar Setor":
try: Setores.Deletar_Setor(valores['-Tabela-'][0]) # Deleta o setor que foi selecionado
except: sg.popup_quick_message("Nenhum setor selecionado", background_color='red', font=['arial', '10', 'bold']) #Surge uma janela
window['-Tabela-'].update(values=Setores.Lista_De_Setores()) # Atualiza a lista de Setores
#========== Procurar Setor ==========#
if valores['-Procurar-'] != "":
window['-Tabela-'].update(values=Setores.Procurar_Setor(valores['-Procurar-']))
else:
window['-Tabela-'].update(values=Setores.Lista_De_Setores())
#========== Atualização da interface ==========#
try: #Recebe o nome do setor selecionado
selecionado = Setores.Lista_De_Setores()[valores['-Tabela-'][0]][0]
window['-Selecionado-'].update(f'Setor Selecionado: {selecionado}')
except: pass
Second Script:
import sqlite3
import PySimpleGUI as sg
import pyautogui as pag
from time import sleep
from string import punctuation
from unidecode import unidecode
#Criando Conexão com o DataBase
conexao = sqlite3.connect("Setores.db")
cursor = conexao.cursor()
#========== Funções Produtos =========#
class Produtos:
def Adicionar_Produto(self):
sg.change_look_and_feel("DarkGrey9")
while True:
codigo = sg.popup_get_text(message="Digite o código do produto: ", title="Adicionar Produto", no_titlebar=True, grab_anywhere=True, font=['Arial', '16', 'bold'])
if codigo == None or codigo == '':
break
else:
print(codigo)
#========== Funções Setores =========#
class Setores:
def Adicionar_Setor(self):
sg.change_look_and_feel("DarkGrey9")
data = []
Nome_Setor: str = sg.popup_get_text("Digite o nome do Setor: ", no_titlebar=True, grab_anywhere=True, font=['Arial', '16', 'bold'])
#===== Verifica se o nome do setor tem mais de 3 Letras =====#
if Nome_Setor is not None and len(Nome_Setor) > 3:
Nome_Setor = Nome_Setor.strip(punctuation) # Remove todos os caracteres especiais do nome
Nome_Setor = Nome_Setor.split() # Remove todos os espaços
for _ in Nome_Setor: # Para palavra no nome coloque a primeira letra como maiuscula e o resto minuscula
data.append(_.capitalize())
Nome_Setor = ' '.join(data) # Separa as palavras com um espaço
try: # Se o nome do setor continua sendo maior que 3 caracteres, cria o setor com o nome inserido
if len(Nome_Setor) > 3:
cursor.execute(f"CREATE TABLE '{Nome_Setor}' (Codigo text)")
else:
sg.PopupQuickMessage(f"O Nome {Nome_Setor} é Inválido")
except sqlite3.Error as erro: #Caso ocorra algum erro crie um arquivo ErrorLog com a descrição do erro
if str(erro) == f"table '{Nome_Setor}' already exists":
sg.popup_quick_message("Setor Já Existe", background_color='red', font=['Arial', '18','bold'])
else:
with open("ErrorLog.txt", "a") as arquivo:
arquivo.write(str(erro)+'\n')
def Deletar_Setor(self, Setor):
Setor = self.Lista_De_Setores()[Setor]
print(Setor[0])
try:cursor.execute(f"DROP TABLE '{Setor[0]}'")
except sqlite3.Error as Erro: print(Erro)
def Lista_De_Setores(self):
tables = cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'").fetchall()
Setores = []
for _ in tables:
Setores.append([_[0]])
return Setores
def Procurar_Setor(self, Procurando: str):
tables = cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'").fetchall()
data = []
for _ in tables:
if Procurando in unidecode(str(_[0]).lower()):
data.append([_[0]])
return data

Related

How to write single CSV file using pyspark in Databricks

Good morning all!!
Yesterday I was looking for a function that was able to write a single file CSV with pyspark in Azure Databricks but I did not find anything. So I've built my own function and I wanted to share my solution with the community and if it's possible create like a thread with different solutions for the same problem.
Sorry, because I commented the code in Spanish but basically the function does:
Save the dataframe you've created into a new directory (which is allocated inside the path you've defined and begin with 'temp_') and save the partition there using "coalesce(1)"
Rename the CSV file as you want and moves it to the desired path
Delete de temporary file
That's all! You have your unique CSV file
def escribe_fichero_unico(dataframe, path, file_name, file_format = 'csv'):
"""
Definición: (1) Genera carpeta temporal para guardar particiones que Spark genera por defecto
a la hora de guardar archivos, (2) Une todas las particiones en un único archivo, (3) Mueve este
archivo al directorio anterior y (4) Borra la carpeta temporal
Parámetros:
dataframe: dataframe que quieras guardar como fichero único
file_name: en formato string escribe nombre del archivo
file_format: en formato string escribe 'csv' o 'parquet'
path: en formato string escribe el path donde quieres guardar el csv
"""
import os
# 1) Guardamos el dataframe creando una carpeta temporal que guarda todas las particiones
path_temp = path + 'temp_' + file_name + '_trash'
if file_format == 'csv':
dataframe.coalesce(1).write.format('csv').mode('overwrite') \
.options(header="true", schema="true", delimiter=";") \
.save(path_temp)
else if file_format == 'parquet':
dataframe.coalesce(1).write.format("parquet").mode("overwrite") \
.save(path_temp)
# 2)Une todas las particiones en un único archivo
file_part = [file.path for file in dbutils.fs.ls(path_temp) if os.path.basename(file.path).startswith('part')][0]
# 3) Mueve este archivo al directorio anterior
dbutils.fs.mv(file_part, path + file_name + '.' + file_format)
# 4) Borra la carpeta temporal
dbutils.fs.rm(path_temp, True)
I hope this work for you as well :)

Laravel 8 App problem when i try to take data with join

Goodmorning everyone,
As in the title I find myself developing a web application with Laravel where I need to take the data with a join between two tables.
Tables are raccomandata and sap_abilitati where in the raccomandata table the idCliente field is foreign key and refers to the id field of the sap_abilitati table.
When I run the query that I need, without the join, the data is correctly taken from the DB.
But when I do the join, which I think I do correctly, I don't get any results.
Let me explain, to verify that the data taken are grouped correctly (as you can see I used a groupBy), I execute the dd($racc); in the code.
Well, in the case of a query without a join the dd($racc); is executed, while in the case of a query with a join it is not executed.
Do you have any suggestions or advice? I can't understand what this behavior gives
Code without join:
// GESTIONE DELLE SPEDIZIONI
public function gestisciSpedizione(Request $request){
try{
set_time_limit(-1);
//devo recuperare le raccomandate dal DB con isGenerated = 0 e per data e lotto
//prendo la data odierna, devo spedire quelle con data precedente.
$date = date('Y-m-d');
if($request->input('sap') != 'all'){
//dd('Unico Sap');
// qui recupero le raccomandate dello specifico SAP selezionate in fase di prenotazione
//recupero le raccomandate
$racc = Raccomandata::select('*')
->where([
['isGenerated', '=', '0'], //non generate
['created_at', '>', $date.' 00:00:00'], //la data di creazione deve essere precedente la data odierna
['idCliente', '=', $request->input('sap')], //selezioniamo le raccomandate solo per il cliente
])
->get();
//raggruppiamo per idCommessa e cronologico
$racc = $racc->groupBy(['idCommessa', 'cronologico'])->toArray();
dd($racc);
//passo alla creazione dei file
//richiamo la procedura per generare i file .xml
return \App::call('App\Http\Controllers\ExportFileController#exportXML', ['racc'=>$racc, 'all' => '0']);
}
else{
// TODO
}
//loggiamo l'evento e redirectiamo con il messaggio di success dell'operazione
Log::channel('custom_log')->info('L\'utente '.Auth::user().' ha prenotato con successo la spedizione numero: '.$request->input('codice_prenotazione').' FILE :');
return redirect()->back()->with('success', 'Prenotazione della spedizione effettuata con successo');
}catch(\Exception $e){
Log::channel('custom_log')->info('L\'utente '.Auth::user().' non è riuscito a prenotare la spedizione COD:'.$request->input('codice_prenotazione').' ERRORE:'.$e);
return redirect()->back()->with('error', 'Non è stato possibile prenotare la spedizione numero: '.$request->input('codice_prenotazione'));
}
}
code With Join:
// GESTIONE DELLE SPEDIZIONI
public function gestisciSpedizione(Request $request){
try{
set_time_limit(-1);
//devo recuperare le raccomandate dal DB con isGenerated = 0 e per data e lotto
//prendo la data odierna, devo spedire quelle con data precedente.
$date = date('Y-m-d');
if($request->input('sap') != 'all'){
//dd('Unico Sap');
// qui recupero le raccomandate dello specifico SAP selezionate in fase di prenotazione
//recupero le raccomandate
$racc = Raccomandata::select('*', 'sap_abilitati.SAP')
->join('sap_abilitati', 'sap_abilitati.id', '=', 'raccomandata.idCliente')
->where([
['isGenerated', '=', '0'], //non generate
['created_at', '>', $date.' 00:00:00'], //la data di creazione deve essere precedente la data odierna
['idCliente', '=', $request->input('sap')], //selezioniamo le raccomandate solo per il cliente
])
->get();
//raggruppiamo per idCommessa e cronologico
$racc = $racc->groupBy(['sap_abilitati.SAP', 'idCommessa', 'cronologico'])->toArray();
dd($racc);
//passo alla creazione dei file
//richiamo la procedura per generare i file .xml
return \App::call('App\Http\Controllers\ExportFileController#exportXML', ['racc'=>$racc, 'all' => '0']);
}
else{
// TODO
}
//loggiamo l'evento e redirectiamo con il messaggio di success dell'operazione
Log::channel('custom_log')->info('L\'utente '.Auth::user().' ha prenotato con successo la spedizione numero: '.$request->input('codice_prenotazione').' FILE :');
return redirect()->back()->with('success', 'Prenotazione della spedizione effettuata con successo');
}catch(\Exception $e){
Log::channel('custom_log')->info('L\'utente '.Auth::user().' non è riuscito a prenotare la spedizione COD:'.$request->input('codice_prenotazione').' ERRORE:'.$e);
return redirect()->back()->with('error', 'Non è stato possibile prenotare la spedizione numero: '.$request->input('codice_prenotazione'));
}
}

Trying to scrape text from pages where data are loaded from external URL

I am using this code to collect the links to all past minutes issued by the central bank of Brazil
import requests
import textwrap
from bs4 import BeautifulSoup
url = "https://www.bcb.gov.br/api/servico/sitebcb/atascopom-conteudo/ultimas?quantidade=1000&filtro="
data = requests.get(url).json()
links = []
for i in range(178):
temp_link = "https://www.bcb.gov.br/"+data['conteudo'][i]['LinkPagina']
links.append(temp_link)
print(links)
The code does generate all the links as needed. Unfortunately, when I loop over the links and try to copy the main text in the body of the respective pages, I get empty results. Based on a previous related question, I believe the issue is that the data in the respective pages are loaded from external URLs. Unfortunately I do not know how to overcome this problem in the context of my loop.
Any help is appreciated.
import requests
from bs4 import BeautifulSoup
def main(url):
with requests.Session() as req:
params = {
"quantidade": 1000,
"filtro": ""
}
r = req.get(url, params=params)
items = [x['LinkPagina'].rsplit('/', 1)[-1]
for x in r.json()['conteudo']]
for x in items:
npr = {
"filtro": "IdentificadorUrl eq '{}'".format(x)
}
r = req.get(
'https://www.bcb.gov.br/api/servico/sitebcb/atascopom/principal', params=npr)
soup = BeautifulSoup(
r.json()['conteudo'][0]['OutrasInformacoes'], 'lxml')
print(soup.select_one('.lista1').text)
exit() # <-- Remove it.
main('https://www.bcb.gov.br/api/servico/sitebcb/atascopom-conteudo/ultimas')
Output:
1.
A
inflação medida pela variação do Índice Nacional de Preços ao Consumidor Amplo
(IPCA) atingiu 0,78% em maio, 0,17 ponto percentual (p.p.) acima da registrada
no mês anterior. Dessa forma, a inflação acumulada em doze meses registrou 9,32%
em maio (8,47% em maio de 2015), com os preços livres aumentando 8,82% (6,82%
em maio de 2015), e os administrados, 10,90% (14,09% em maio de 2015).
Especificamente sobre preços livres, os de itens comercializáveis aumentaram 9,55%
em doze meses até maio (5,71% em maio de 2015), e os de não comercializáveis,
8,19% (7,79% em maio de 2015). Note-se, ainda, que os preços no segmento de
alimentação e bebidas variaram 12,72% em doze meses até maio (8,80% em maio de
2015), e os dos serviços, 7,51% (8,23% em maio de 2015). Em síntese, as
informações disponíveis refletem, em parte, a dinâmica de maior persistência
dos preços no segmento de serviços – mas que já mostram alguma desaceleração –,os processos de realinhamento de preços relativos e choques temporários de
oferta no segmento de alimentação e bebidas.

Unpack an object from a list

i'm triying to parse a bunch of .docx files, using the docx module in python, with this code.
folder = selec_folder()
new_location = os.chdir(folder)
#p =os.getcwd()
#p = os.path.dirname(os.path.abspath(_file_))
#Una lista que guarda los nombres de los archivos con extension .docx
docs = [a for a in os.listdir(new_location) if a.endswith('.docx') and str(a[0]) !='~' ]
#patron regex para buscar lo indicado por el usurio, indicando que se igneren las mayusculas o minusculas
busqueda = re.compile(f'{objetivo}',re.I)
n2 = Document()
#loops para seleccionar cada archivo y luego cada parrafo, para verificar que se encuentre el contenido buscado
for para in docs:
print(f'Nombre del documento------------------>{para}')
doc = Document(para)
print(len(doc.paragraphs))
for i in range(len(doc.paragraphs)):
#print(len(doc.paragraphs[i].runs))
if busqueda.findall(doc.paragraphs[i].text):
p = doc.paragraphs[i].runs
print('this is the len of run -----: ',p)
for i in range(len(p)):
print(p.runs[i])
if p.runs[i].bold == True:
n2.add_run(p.runs[i].text).bold= True
elif doc.paragraphs.runs[i].italic == True:
n2.add_run(p.runs[i].text).italic= True
elif doc.paragraphs.runs[i].underline == True:
n2.add_run(p.runs[i].text).underline = True
## elif doc.paragraphs.runs[i].Font.math == True:
## n2.add_run(doc.paragraphs..runs[i].text).Font.math = True
##
else:
n2.add_run(" ")
#for run in doc.paragraphs[i]:
#salva el documento de word
nuevo_doc.save('Nuevo_documento.docx')
broot = tk.Tk()
broot.destroy()
mensaje = messagebox.showinfo('Proceso concluido','El documento ha sido generado satisfactoriamente')
os.system('start Nuevo_documento.docx')
basically, the programs asks the user to input a subject to look in the files, then ask the user to select a folder (or path) to work with, then it opens every .docx file in the folder, and looks every paragraph, until if finds what is looking for, if found, it copies the whole paragraph with the format (bold, italic, underline, etc), but after adding the if block that checks the runs im getting this error:
Traceback (most recent call last):
File "C:\Users\virlu\Desktop\vdfd\buscaTema1.0.py.py", line 98, in <module>
print(p.runs[i])
i understand that im stracting the objects from a comprehension list, but i can't seem to find a solucition for this, if anyone can held, thanks in advance.
AttributeError: 'list' object has no attribute 'runs'

responseAsSlurper error groovy

im having problems trying to encapsulate this sentence in to a groovy function.
-----------------------------------mi call-------------------------------
sizeOfferPrices =
responseAsSlurper.Body.FlightPriceRS.PricedFlightOffers.PricedFlightOffer.OfferPrice.size();
offerAmount = getTotalPrice(sizeOfferPrices)
-----------------------------my function--------------------------------
def getTotalPrice (sizeOfferPrices){
def strTravelersAssociated
def floatImporteViaje = 0
String [] arrTravelersAssociated
def offerAmountTemp
//recorremos los precios que se nos ha devuelto en la oferta
for(i=0; i<=sizeOfferPrices-1; i++){
//obtenemos el precio
offerAmountTemp = responseAsSlurper.Body.FlightPriceRS.PricedFlightOffers.PricedFlightOffer.OfferPrice[i].RequestedDate.PriceDetail.TotalAmount.SimpleCurrencyPrice
offerAmountTemp = offerAmountTemp.toFloat();
//obtenemos los datos de los viajeros asociados , casteamos a string y splitamos para obtener array
strTravelersAssociated = responseAsSlurper.Body.FlightPriceRS.PricedFlightOffers.PricedFlightOffer.OfferPrice[i].RequestedDate.Associations.AssociatedTraveler.TravelerReferences
strTravelersAssociated = strTravelersAssociated.toString();
arrTravelersAssociated = strTravelersAssociated.tokenize(" ");
//obtenemos el numero de viajeros por oferta
intTravelersByOffer = arrTravelersAssociated.size().toInteger();
//realizamos la multiplicaciónd viajeros por su oferta asociada
floatImporteViajeTemp = (offerAmountTemp * intTravelersByOffer).round(2);
floatImporteViaje = floatImporteViaje + floatImporteViajeTemp;
}
//obtenemos el precio total
amount = floatImporteViaje.round(2);
return amount
}
_________________________ERROR_________________________________________
groovy.lang.MissingPropertyException: no such Property
resposeAsSpluger
any suggestions? thanks a lot.
The error is unrelated to the function you've posted, because it's occurring before the function is called. Here's the code where you attempt to call the function
sizeOfferPrices = responseAsSlurper.Body.FlightPriceRS.PricedFlightOffers.PricedFlightOffer.OfferPrice.size();
offerAmount = getTotalPrice(sizeOfferPrices)
The error occurs on the first line (before getTotalPrice is called) because you try to access a property responseAsSlurper which does not exist.