Re: pyttsx3 installation error

2020-01-25 Thread Cameron Simpson
On 26Jan2020 00:21, Mehr Abrar Lak wrote: When I try to import pyytsx3 on python 3.7.3 having latest pip version then I get error like exit code 1. I couldn't make it to install it I try using pip install pyttsx3 but it doesn't work for me then I tried it's .whl wheel file to install but instead

Re: Threading

2020-01-25 Thread Cameron Simpson
On 24Jan2020 21:08, Dennis Lee Bieber wrote: My suggestion for your capacity thing: use a Semaphore, which is a special thread safe counter which cannot go below zero. from threading import Semaphore def start_test(sem, args...): sem.acquire() ... do stuff with args ...

pyttsx3 installation error

2020-01-25 Thread Mehr Abrar Lak
When I try to import pyytsx3 on python 3.7.3 having latest pip version then I get error like exit code 1. I couldn't make it to install it I try using pip install pyttsx3 but it doesn't work for me then I tried it's .whl wheel file to install but instead fixing the issue am still facing the same on

Re: tkinter treeview widget - bind doubleclick to items only ? Anyone ?

2020-01-25 Thread R.Wieser
"R.Wieser" wrote in message news:r040ls$fje$1...@gioia.aioe.org... > Hello all, > > I've create a treeview, and would (ofcourse) want to register some > mouse-clicking on it, and for that I've found the ".bind()" method. > > https://stackoverflow.com/questions/3794268/command-for-clicking-on-the

[RELEASE] Python 3.9.0a3 available for testing

2020-01-25 Thread Ɓukasz Langa
Go get it here: https://www.python.org/downloads/release/python-390a3/ This is an early developer preview of Python 3.9 Python 3.9 is still in development. This releasee, 3.9.0a3 is the third of six planned alpha releases. Alpha releases a

Re: How to read/write a field in MariaDB already managed/encrypted by PHP script.

2020-01-25 Thread I
on 2020-01-25 at 12:08 user ^Bart wrote: Hy guys, I'm doing a software with a login/register area by Python 3 and PHP 7.3, i followed this guide https://www.9lessons.info/2016/04/php-login-system-with-pdo-connection.html and it store the password in encrypted mode but now I need to understan

How to read/write a field in MariaDB already managed/encrypted by PHP script.

2020-01-25 Thread ^Bart
Hy guys, I'm doing a software with a login/register area by Python 3 and PHP 7.3, i followed this guide https://www.9lessons.info/2016/04/php-login-system-with-pdo-connection.html and it store the password in encrypted mode but now I need to understand how to set the same cypher in Python! :\