Posts by MJAGO • 149 points
10 posts
-
1
votes3
answers1839
viewsQ: Web scraping python running javascript on the CEF website
The CEF (Caixa Econômica Federal) changed the way it displays the results of the lotteries on its website, before I could get the results that all came in HTML via webscraping relatively easily…
-
0
votes1
answer1038
viewsQ: Problem with python/ Decode
I have 2 functions, the first prepares html and writes to a file . txt so that the second function opens this file and generates an email through outlook. In the body of the message, will be placed…
-
2
votes0
answers165
viewsQ: Display message(Qmessagebox) from a class other than the main one in Pyqt4
Friends, I ask for help from you, I imagine it is simple but I am having difficulty, because I am still learning object orientation with Pyqt4. I have a main class (Application) separate from the…
-
1
votes1
answer4772
viewsQ: Create a dictionary from a list
I have the following list: msg = ['CAD400','Uma Filial...','Solucao:','O campo...','','LIB310','A Filial...','Solucao:','Foi identificado...','Foi…
-
0
votes1
answer76
viewsQ: Help in SQL ORACLE query
Column DEPENDENCY: T - Titular; E - Esposa; F - Filhos; FA - Filho Adotivo As table above, how do I bring data only of CEP S that are divergent as the CEP of the Holder: Titular Admilson has 2…
-
0
votes0
answers45
viewsQ: Data entered into Sqlite3 is not shown in the Pyqt4 application
I made a small Pyqt4 desktop application where I insert data in db sqlite3, but when I go to consult this data that was inserted previously, they are not on the display screen of them, only when I…
-
2
votes2
answers1356
viewsQ: Identify repeating elements within a two-dimensional array
In an array a = [[1,"José"],[2,"Pedro"],[3,"Maria"],[4,"Lauro"],[2,"Pedro"], [5,"Léo"],[1,"José"],[6,"Caio"]] how to get a new array b that shows the positions of the indices with the repeating…
-
2
votes1
answer179
viewsQ: Subtract elements from a two-dimensional array
I have an array x = [[2,5,16,26],[5,28,35,46],[1,9,28,54,60,102],[...]...] Arrays within the array do not have fixed sizes, can contain from 1 to N elements. How do I have a new array y with the…
-
2
votes2
answers281
viewsQ: Two-dimensional array in Ruby
I have the two-dimensional array a = [[1,'a'],[1,'b'],[2,'c'],[2,'d'],[3,'e'],[3,'f'],[4,'g'],[4,'h']] and I want to separate the letters in another array b so that it looks like this: [["a","b"],…
-
2
votes0
answers174
viewsQ: Is there an MDI form for GTK 3 or 2 in Ruby?
There is a class that defines an MDI form in Ruby GTK 2 or 3, similar to that found in other languages like Delphi, C#, VB etc.? Note: MDI is that form for desktop applications that a window is…