Re: Conecting to MySQL

2022-08-09 Thread Dan Ciprus (dciprus) via Python-list
Yes, exactly that .. I replied from different account and my email was rejected. Just make sure that your mysql is actually running. Depending on your OS, run netstat -an | grep 3306 and this will tell you whether socket is actually in listening mode or not. If it's not, your mysql is either no

Re: Conecting to MySQL

2022-08-09 Thread Dan Ciprus (dciprus) via Python-list
I'm not sure about this but this mailing list does not allow attachments ... On Tue, Aug 09, 2022 at 12:45:33PM -0300, Guilherme Campos wrote: Hi Igor, Accessing mysql-workbench it appeared new error messages when I clicked Server Status. I created my database on MySQL Workbench . Is that you

Re: not able to use python

2022-08-17 Thread Dan Ciprus (dciprus) via Python-list
Those people keep me on my toes every time I look at such a message :-/. On Wed, Aug 17, 2022 at 12:35:28PM -0500, Igor Korot wrote: Hi, On Wed, Aug 17, 2022 at 12:20 PM i am unable to use python wrote: AND I"M UNABLE TO SEE ANYTHING IN YOUR MESSAGE... THANK YOU. Sent from [1]Ma

Re: Startup failure

2021-02-19 Thread Dan Ciprus (dciprus) via Python-list
It would be nice if you could provide a bit more details ... Exceptions/logs etc. From: Python-list on behalf of Smit Patel Sent: Friday, February 19, 2021 1:27 AM To: python-list@python.org Subject: Startup failure I recently downloaded python from

Re: How to loop over a text file (to remove tags and normalize) using Python

2021-03-09 Thread Dan Ciprus (dciprus) via Python-list
If you could utilized pastebin or similar site to show your code, it would help tremendously since it's an unindented mess now and can not be read easily. On Wed, Mar 10, 2021 at 03:07:14AM +0600, S Monzur wrote: Dear List, Newbie here. I am trying to loop over a text file to remove html tags,

Re: How to loop over a text file (to remove tags and normalize) using Python

2021-03-09 Thread Dan Ciprus (dciprus) via Python-list
No problem, list just converts everything into plain/txt which is GREAT ! :-) So without digging deeply into what you need to do: I am assuming that your input contains html tags. Why don't you utilize lib like: https://pypi.org/project/beautifulsoup4/ instead of doing harakiri with parsing da

Re: convert script awk in python

2021-03-25 Thread Dan Ciprus (dciprus) via Python-list
... funny thing is that OP never contributed to this discussion. Several people provided very valuable inputs but OP did not even bother to say "thank you". just saying ... On Wed, Mar 24, 2021 at 11:22:02AM -0400, Avi Gross via Python-list wrote: Cameron, I agree with you. I first encountere

Re: Website

2021-04-15 Thread Dan Ciprus (dciprus) via Python-list
https://en.wikipedia.org/wiki/Sergio_Llorente wow .. you made it that far ? Jokes aside .. why are you asking for a permission to get a domain ? I would love to read a deeper explanation what made you send an email to this mailing list. On Wed, Apr 14, 2021 at 03:41:37PM +0200, Rainyis wro

Re: Website

2021-04-15 Thread Dan Ciprus (dciprus) via Python-list
aka.ms/ghei36> ! From: o1bigtenor Sent: Thursday, April 15, 2021 9:49:45 AM To: Dan Ciprus (dciprus) Cc: Rainyis ; python-list@python.org Subject: Re: Website On Thu, Apr 15, 2021 at 7:40 AM Dan Ciprus (dciprus) via Python-list wrote: > > https:/

Re: Repair Install of 64 bit python

2021-04-16 Thread Dan Ciprus (dciprus) via Python-list
Isn't the recommended python3 way of pip-ing stuff: python3 -m pip install ... .. just curious. On Thu, Apr 15, 2021 at 08:36:56PM -0500, o1bigtenor wrote: On Thu, Apr 15, 2021 at 8:03 PM Dodson, Matthew wrote: Hi, Having an issue after installing 64 bit python. Can't pip install any packa

Re: Python

2022-03-03 Thread Dan Ciprus (dciprus) via Python-list
if OP formulates question the way he/she did, it's not worth to respond to it. There is plenty of similar questions in the archive. On Tue, Feb 22, 2022 at 07:07:54AM -0700, Mats Wichmann wrote: On 2/21/22 23:17, SASI KANTH REDDY GUJJULA wrote: Pip files are not installing after the python 3.1

Re: Exchange OWA using Python?

2022-03-31 Thread Dan Ciprus (dciprus) via Python-list
Our org does not have imap nor pop enabled so I guess it depends on your IT and what's enabled for your org. Just my $.02 .. On Thu, Mar 31, 2022 at 07:12:10PM +0200, Dieter Maurer wrote: Grant Edwards wrote at 2022-3-31 07:41 -0700: Is anybody aware of any Python code for the Exchange OWA pro

Re: Exchange OWA using Python?

2022-03-31 Thread Dan Ciprus (dciprus) via Python-list
Yes, this ... I've been using this successfully for years and it obviously has its sad parts but it works pretty well overall. From: Python-list on behalf of Christian Gollwitzer Sent: Thursday, March 31, 2022 3:22 PM To: python-list@python.org Subject:

Re: [Tutor] How to stop a specific thread in Python 2.7?

2024-10-11 Thread Dan Ciprus (dciprus) via Python-list
Thank you for the hint ! On Fri, Oct 04, 2024 at 09:17:19AM GMT, Cameron Simpson wrote: On 03Oct2024 22:12, Dan Ciprus (dciprus) wrote: I'd be interested too :-). Untested sketch: def make_thread(target, *a, E=None, **kw): ''' Make a new Event E and Thread T, pass `[E,*a]`

Re: [Tutor] How to stop a specific thread in Python 2.7?

2024-10-03 Thread Dan Ciprus (dciprus) via Python-list
I'd be interested too :-). On Thu, Sep 26, 2024 at 03:34:05AM GMT, marc nicole via Python-list wrote: Could you show a python code example of this? On Thu, 26 Sept 2024, 03:08 Cameron Simpson, wrote: On 25Sep2024 22:56, marc nicole wrote: >How to create a per-thread event in Python 2.7? E