Posts by Marianon • 1 point
3 posts
-
0
votes0
answers22
viewsQ: Query Sqlite3 tables using python3 and insert the results in a Treeview in Tkinter
The purpose of the code is to do Sqlite3 searches between two dates and insert these Tkinter Treeview searches. I have the second table in sqlite3: CREATE TABLE "MOTO_PALIO" ( "cod" INTEGER, "data"…
-
0
votes3
answers64
viewsA: How to receive a list of each date between two dates in python
The way I managed to solve the problem was like this, maybe it’s not the best solution, but it worked for my purpose. def date_generator(self, data, data_final): data_dd = data[:2] data_dd =…
-
-3
votes3
answers64
viewsQ: How to receive a list of each date between two dates in python
At the point I’m at now, I need to get a function that returns me a list of all the dates between two dates. I don’t know exactly how to do this operation, if I can use some specific library as…