Re: script folder is empty

2022-07-18 Thread Dan Stromberg
This is another reason to use: python -m pip ... ...instead of: pip ... (Or many systems want python3 -m pip) HTH On Sun, Jul 17, 2022 at 10:42 PM dn wrote: > On 18/07/2022 16.53, Scott Baer wrote: > > I just installed Python 3.10.5 on a Windows 10 home ( Ver 21H2 OS build > > 190443182

Re: script folder is empty

2022-07-18 Thread Eryk Sun
On 7/17/22, Scott Baer wrote: > > I've done some troubleshooting, and nothing is in the C:\Program > Files\Python310\Scripts folder. The installer may have silently failed to install pip. Run the following command to check whether the package was installed. "C:\Program Files\Python310\python

Simple message passing system and thread safe message queue

2022-07-18 Thread Morten W. Petersen
Hi. I wrote a couple of blog posts as I had to create a message passing system, and these posts are here: http://blogologue.com/search?category=1658082823X26 Any comments or suggestions? Regards, Morten -- I am https://leavingnorway.info Videos at https://www.youtube.com/user/TheBlogologue T

Re: Simple message passing system and thread safe message queue

2022-07-18 Thread Martin Di Paola
Hi, I couldn't read your posts, every time I try to open one I'm redirected to an index page. I took a look at the smps project and I as far I understand it is a SSL client that sends messages to a server that implements a store of messages. I would suggest to remove the sleep() calls and as a c

RE: Simple message passing system and thread safe message queue

2022-07-18 Thread Mike Dewhirst
MortenI didn't click on your link because it is a security bad practice to click on any unsolicited link.I'm not accusing you or anyone else of nefarious intent. It could be argued that being a member of this list means links posted here are indeed solicited links.You asked for comment. Mine is

Re: Simple message passing system and thread safe message queue

2022-07-18 Thread Morten W. Petersen
Hi Martin. Yes, I was thinking of removing the sleep calls in the client.py / making a more intensive test. No, I think I'll stick with threads, I don't see any practical benefit of such a challenge. Maybe you could say a bit about why you think that's a good idea? Regards, Morten -- I am ht