Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Problems with save array into Mysql
Post: RE: Problems with save array into Mysql

I found solution for everyone here it is: def array2str(arry, precision=None): s = np.array_str(arry, precision=precision) s= s.replace('\n', '') s= s.repl...
storzo General Coding Help 1 2,100 Sep-27-2019, 04:25 PM
    Thread: Problems with save array into Mysql
Post: Problems with save array into Mysql

Hi ! I don't know how to upload my array in numpy to msql: arr=np.zeros((24,7),dtype=object) b = bytes(arr) #print value of: b'\xe0p\x08\xdc\xfe\...' ... do_it = """UPDATE db_db.bytedata ...
storzo General Coding Help 1 2,100 Sep-26-2019, 07:19 PM
    Thread: How ad key unlocker program to code?
Post: RE: How ad key unlocker program to code?

(Aug-31-2019, 03:36 PM)wavic Wrote: Just put it under a license which is suitable for you. There is no protection which can't be broken.but is protection vs simple copy paste.. and i need use that:(
storzo General Coding Help 8 3,511 Aug-31-2019, 03:40 PM
    Thread: How ad key unlocker program to code?
Post: RE: How ad key unlocker program to code?

(Aug-29-2019, 03:20 PM)ThomasL Wrote: This https://en.wikipedia.org/wiki/Denuvo was introduced as the best protection ever and as being unhackable. It took longer but after a few months first games ...
storzo General Coding Help 8 3,511 Aug-31-2019, 02:59 PM
    Thread: How ad key unlocker program to code?
Post: RE: How ad key unlocker program to code?

So you got any suggestion how protect in good Way?
storzo General Coding Help 8 3,511 Aug-29-2019, 02:47 PM
    Thread: How ad key unlocker program to code?
Post: How ad key unlocker program to code?

Hi! I need to secure my program with key. I don't have idea how to do that with what modules or lib. But i know how could be work: 1st steep: user extract/install my program 2nd steep: after run pro...
storzo General Coding Help 8 3,511 Aug-28-2019, 09:22 PM
    Thread: Fast get pixel and oparate.
Post: RE: Fast get pixel and oparate.

Pyautogui autor have msg from other PPL who report him same problem. After 10.000 asq pyautogui about pixel match, get pixel etc.. Script stopped. He repair his own code and now work smooth. So Just u...
storzo General Coding Help 7 7,066 Aug-26-2019, 08:26 AM
    Thread: Fast get pixel and oparate.
Post: RE: Fast get pixel and oparate.

ok guys i think i solve problem update pyautogui:D
storzo General Coding Help 7 7,066 Aug-24-2019, 11:45 AM
    Thread: Fast get pixel and oparate.
Post: RE: Fast get pixel and oparate.

here is example difference between PIL and autogui: interaction for PIL is 6/7 peer seconds interaction for autogui is 150/peer seconds Issue: PIL little laggy pc autogui after 10.000 interaction got ...
storzo General Coding Help 7 7,066 Aug-24-2019, 09:46 AM
    Thread: Fast get pixel and oparate.
Post: RE: Fast get pixel and oparate.

yes ty, but i think is not best way going to developer with some small problem (i think). someone know any command for clearing cash or mem /temp for pyautogui?
storzo General Coding Help 7 7,066 Aug-24-2019, 08:08 AM
    Thread: Fast get pixel and oparate.
Post: Fast get pixel and oparate.

Hi! I make some program to recognize pixel i few position. I try pyguiauto & PIL. Programing with pyautogui was problematic when after 3/4min slowdown process and hole System **huh** (after this ...
storzo General Coding Help 7 7,066 Aug-23-2019, 09:10 PM
    Thread: Configure label from different class
Post: Configure label from different class

Hi I stack, i can't change image in config via main class: class SETUP: def __init__(self, root): self.root = root self.frame = Frame(self.root) #button for open new window help ...
storzo GUI 1 4,110 Aug-16-2019, 10:52 PM
    Thread: optimalization of code
Post: RE: optimalization of code

i try like this something short: def confirm(self): s[:] = [1 if v.get() else 0 for v in self.checkvars] self.chk1.config(state=DISABLED if s[5] == 1 else NORMAL ) self.ch...
storzo GUI 5 2,516 Aug-07-2019, 07:15 PM
    Thread: optimalization of code
Post: RE: optimalization of code

(Aug-07-2019, 05:42 AM)Yoriz Wrote: If you want access by row and column make a list of lists https://python-forum.io/Thread-Basic-Lists Wrote:Matrices You can represent matrices (in C: multidimensi...
storzo GUI 5 2,516 Aug-07-2019, 05:50 AM
    Thread: optimalization of code
Post: RE: optimalization of code

I think is bad idea crating in lists. Check box are not only one var in my program i got almost 40 var selected by category. List is not array, and acces must be organizate by row column
storzo GUI 5 2,516 Aug-07-2019, 05:35 AM
    Thread: optimalization of code
Post: optimalization of code

Hi guys can someone help me with optimalization of this code? i got 5 chechk box (named Px) and 5 other (named Rx) I wish: on begin all check box got status NORMAL, when we mark P1 we can't mark R1 (...
storzo GUI 5 2,516 Aug-06-2019, 10:07 PM
    Thread: I can't hide borders and _ [] X in window.
Post: RE: I can't hide borders and _ [] X in window.

(Aug-04-2019, 09:10 AM)Yoriz Wrote: If you don't want to go to the link read the words that I copied from the link. nope m8 answer: root.overrideredirect(1) he disable _[]X and borders:D ty for your...
storzo General Coding Help 4 2,429 Aug-04-2019, 09:55 AM
    Thread: I can't hide borders and _ [] X in window.
Post: RE: I can't hide borders and _ [] X in window.

(Aug-03-2019, 10:36 PM)Yoriz Wrote: Maybe this is what you are looking for: https://effbot.org/tkinterbook/wm.htm#Tk...ect-method Wrote:Toplevel Window Methods This group of methods are used to com...
storzo General Coding Help 4 2,429 Aug-04-2019, 08:54 AM
    Thread: I can't hide borders and _ [] X in window.
Post: I can't hide borders and _ [] X in window.

I try using: main.pack(side="top", fill="both", expand=True) in main window to hide borders and nav minimalize expand and close. It don't work any suggestion? **think** import tkinter as tk import py...
storzo General Coding Help 4 2,429 Aug-03-2019, 09:15 PM
    Thread: While loop
Post: RE: While loop

here you go. import webbrowser import time import random repeat = 4 while True: for i in range(repeat): sites = random.choice(['google.com', 'youtube.com']) visit = "http://{}"....
storzo General Coding Help 4 2,254 Aug-02-2019, 04:33 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020