Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to make an 'uncrackable' executable?
Post: RE: How to make an 'uncrackable' executable?

(Jan-05-2020, 06:47 PM)metulburr Wrote: I would just build 2 windows exe's. Pyistaller would be best for that. One that is a free version and one pro version that requires payment to obtain. But the...
JackMack118 General Coding Help 9 6,882 Jan-05-2020, 07:58 PM
    Thread: How to make an 'uncrackable' executable?
Post: RE: How to make an 'uncrackable' executable?

(Jan-05-2020, 05:48 PM)ichabod801 Wrote: Why are you concerned about it getting cracked if you are giving it away for free? It's not like they're going to be taking any revenue from you. Just put a ...
JackMack118 General Coding Help 9 6,882 Jan-05-2020, 05:58 PM
    Thread: How to make an 'uncrackable' executable?
Post: How to make an 'uncrackable' executable?

Hello everyone, hope all is well. I have a question regarding exporting an executable of my Python program. I want to pack my script, which is complete with Tkinter GUI, into an .exe and share it for...
JackMack118 General Coding Help 9 6,882 Jan-05-2020, 05:36 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

I got it! Here is what's working for me: def kw_txt1(self): kwTXT1 = filedialog.askopenfilename(filetypes =[('Text File', '*.txt')]) config = ConfigParser() config.rea...
JackMack118 GUI 10 5,123 Dec-29-2019, 08:12 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

I think ny problem is something different now, to be honest. I've been doing some debugging not using a filepath and I still get the same problem: On my config file: [Keyword Files] kwA = 100_ques...
JackMack118 GUI 10 5,123 Dec-29-2019, 03:34 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

Ok, after looking through your help there, I thought I could figure it out but I'm a little confused. Can I just use a part for .txt files? That's all I need, and how could I implement it? Sorry fo...
JackMack118 GUI 10 5,123 Dec-29-2019, 12:07 AM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

Wow thanks @Larz60+ I have a lot to look through here, will get back ... thanks!
JackMack118 GUI 10 5,123 Dec-28-2019, 10:51 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

I'm trying to debug this in steps, but I just can't get it: def kw_txt1(self): kwTXT1 = filedialog.askopenfilename(filetypes =[('Text File', '*.txt')]) config = ConfigParser()...
JackMack118 GUI 10 5,123 Dec-28-2019, 09:05 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

Grrrrr, working with filepaths is HARD! OK, I'm closer, but no cigar: def kw_txt1(self): kwTXT1 = filedialog.askopenfilename(filetypes =[('Text File', '*.txt')]) config = Con...
JackMack118 GUI 10 5,123 Dec-28-2019, 07:28 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: RE: Unable to save filepath to config.ini file usi...

(Dec-28-2019, 01:30 PM)Larz60+ Wrote: look into pathlib (It's the new (python 3.6) Object-oriented way to deal with filesystem paths): https://docs.python.org/3/library/pathlib.html Can you give me ...
JackMack118 GUI 10 5,123 Dec-28-2019, 05:26 PM
    Thread: Unable to save filepath to config.ini file using filedialog.askopenfilename
Post: Unable to save filepath to config.ini file using f...

Hello everyone, hope you are all well these holidays. I'm having problems updating and writing to a config.ini file using filedialog.askopenfilename in Tkinter. Example of my config file: [Keyword F...
JackMack118 GUI 10 5,123 Dec-28-2019, 07:17 AM
    Thread: Remove all \n from end of list items
Post: RE: Remove all \n from end of list items

Hello yes because I set it as a proxy for requests. I've been doing all the strip methods, string strip methods and keep getting all the errors I mentioned in the OP. I think it's because it's not tu...
JackMack118 General Coding Help 4 36,343 Dec-27-2019, 07:19 AM
    Thread: Remove all \n from end of list items
Post: Remove all \n from end of list items

Hello all, I've been Googling and reading here, reading StackOverflow but can't solve what I feel is a very simple problem. I cannot strip off the trailing '\n' from all my list items in list. I've ...
JackMack118 General Coding Help 4 36,343 Dec-27-2019, 06:14 AM
    Thread: Need help please properly putting tabs within a PanedWindow
Post: RE: Need help please properly putting tabs within ...

Sorry to keep replying to my own threads. I keep working on this and when I think I have found the proper code for the placement I want, I'm getting errors. This should be the code to theoretically g...
JackMack118 GUI 2 3,400 Dec-04-2019, 12:17 AM
    Thread: Possible to use asyncio as a faster while loop?
Post: RE: Possible to use asyncio as a faster while loop...

OK, I'm guessing to make this faster with some kind of asynchronous function in Asyncio to make more 'workers' isn't going to work here, though I'm wondering how I can get this to work faster? I'm s...
JackMack118 General Coding Help 1 2,002 Dec-03-2019, 09:55 PM
    Thread: Need help please properly putting tabs within a PanedWindow
Post: Need help please properly putting tabs within a Pa...

Hello all. I'm trying to get a PanedWindow to have tabs in it. I'm so close but I think my confusion with __init__ is getting me. I have two examples that have me near, yet so far away. This exampl...
JackMack118 GUI 2 3,400 Dec-03-2019, 08:40 PM
    Thread: Possible to use asyncio as a faster while loop?
Post: Possible to use asyncio as a faster while loop?

I've made this loop to pull random 1000 lines (made in other part of code) into a Textbox. It works flawlessly, though it takes maybe 10 seconds to do it. Possible to make an Asyncio solution to spee...
JackMack118 General Coding Help 1 2,002 Dec-03-2019, 12:09 AM
    Thread: Help getting a new varible in a loop (or something)
Post: RE: Help getting a new varible in a loop (or somet...

I'm not sure why this was moved to 'GUI' section, my problem was about coding but no worries ... I figured it out (I guess, could be better way?) Because I couldn't get new random variables into vari...
JackMack118 GUI 1 1,851 Nov-26-2019, 08:55 PM
    Thread: Help getting a new varible in a loop (or something)
Post: Help getting a new varible in a loop (or something...

Hello, I have a coding question please. This here code makes a simple (and ugly) tkinter bot GUI, but design isn't my question. I'm trying to figure out how to regenerate a new set varibles and print...
JackMack118 GUI 1 1,851 Nov-26-2019, 03:09 PM
    Thread: IDE suggestion
Post: RE: IDE suggestion

Thank you very much for your helpful answers, I was looking at the poll that was taken and seems VC Code is what I'll check out.
JackMack118 News and Discussions 5 3,147 Nov-21-2019, 11:35 PM

User Panel Messages

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