All Questions
118 questions
0
votes
1
answer
35
views
Set Expiration Date in python for specific keys
***The Problem is that the Key "4255" always refreshes when i type it in the console and it never expires, and how can i set the expiration date for many keys and not only one.
I want the ...
0
votes
3
answers
76
views
Is there a recommended algorithm for compressing multiple specific substrings in a string that resemble DNA?
I am currently in search of a solution that would help me minimize the storage space occupied by specific sets of strings. These individual strings are essentially parts of larger strings.
For example,...
0
votes
1
answer
203
views
Google Play Console Store Analysis report via Python
I'm trying to fetch the store performance analysis report via google API through python and throwing me an error.
I follow the process that is present in the link.
I'm trying to see this error where ...
0
votes
1
answer
51
views
How to report and fix errors while iterating?
I would like to iterate through elements in raw_data below, and
store the value of f(x)
when f(x) gives an error, show the error msg and store this message
fix the error that arised due to type, ie &...
0
votes
3
answers
182
views
storing a few variables from the same input-how?
I am a beginner to python and I encountered a problem.
This is what I wanted to do:
If I I have 1 line that contains an input statement. while repeating the same line a few times by a loop, I want to ...
-2
votes
1
answer
59
views
User input SQL Lite and Python and store
I need help I want the tax column to be calculated from the income column
Also I need the information to be stored in the database from the user input.
import sqlite3
conn = sqlite3.connect('tax1.db')...
1
vote
0
answers
25
views
Store file in binary transfer mode with ftplib in python does not finish [duplicate]
I was having issues downloading a file with ftplib in python. Using the simple way with the following code was not working. The code did not stop.
with open('README', 'wb') as fp:
ftp.retrbinary('...
0
votes
1
answer
134
views
Python store variable with two columns into table created with SQLite
I created a variable that stores patient ID and a count of the number of missed appointments per patient. I created a table with SQLite and I am trying to store my variable into my created table but I ...
0
votes
1
answer
274
views
simpy events synchronization using Container or store
I have a code that implement scheduling using simply. The simulation run processors in parallel in intervals. Moreover, for each interval, there is a synchronization barrier that waits till all ...
1
vote
1
answer
3k
views
Store edited DataTable in Dash
I am trying to store an edited Python Dash DataTable into a dcc.store container with a button component and use the saved data at a later point. However, once I change the original DataTable, the ...
-2
votes
1
answer
1k
views
Save a video with different file name each time we give a Trigger in opencv
This is the process I am trying to achieve :
Live Stream is captured from webcam and the Image frames are stored in a particular folder.
Now, If I give a trigger the frames in that folder at that ...
0
votes
0
answers
43
views
How to store to an array after adding multiple column in a specific location in the array using for loop
I am trying to add multiple columns in an array by giving specific location. So I thought to use for loop. And make a list of indexes. But it is only adding the last index to the array. It is not ...
1
vote
0
answers
100
views
Save JSON string in dynamic global dictionary , python
I am new to python. I have multiple JSON messages coming to the python application trough MQTT broker with the same keys but different values. what I am trying to do is to store the JSON string on a ...
-2
votes
1
answer
74
views
How can I send an image from a QLabel, store it in a variable and then save it in a Postgresql column? [duplicate]
Good morning, I am developing a customer registration program using Python, using PyQT, I have been able to develop the possibility of selecting the images in a QLabel for the user to see, but I have ...
-1
votes
1
answer
306
views
Write by C# and Read by python on one file in the same time [duplicate]
I have two program one in c# that write to store file and python program that read from the same file
this program must run together, how can I do it? And what the type of file I used to store?