Re: [ANN] Austin -- CPython frame stack sampler v3.0.0 is now available

2021-07-02 Thread Martin Di Paola
Very nice. I used rbspy for Ruby programs https://rbspy.github.io/ and it can give you some insights about the running code that other profiling techniques may not give you. I'll use it in my next performance-bottleneck challenge. On Fri, Jul 02, 2021 at 04:04:24PM -0700, Gabriele Tornetta wro

[ANN] Austin -- CPython frame stack sampler v3.0.0 is now available

2021-07-02 Thread Gabriele Tornetta
I am delighted to announce the release 3.0.0 of Austin. If you haven't heard of Austin before, it is an open-source frame stack sampler for CPython, distributed under the GPLv3 license. It can be used to obtain statistical profiling data out of a running Python application without a single line

Re: pyttsx3 installation error

2021-07-02 Thread Roland Mueller via Python-list
What's about installing? https://pypi.org/project/pyttsx3/ pe 2. heinäk. 2021 klo 23.41 Nikita Lohale (nikitalohal...@gmail.com) kirjoitti: > Traceback (most recent call last): > File "f:\Nikita\Python programming\Iron Man Jarvis AL\jarvis.py", line > 1, in > import pyttsx3 > ModuleNotFoun

Re: pyttsx3 installation error

2021-07-02 Thread Abhiram R
Congratulations on trying out something new in Python. The first step to debugging errors is try and Google them. Unless it's a brand new package, chances are, you'll find a solution there almost immediately. In case you've already installed this missing package, and it's not getting imported, I'd

pyttsx3 installation error

2021-07-02 Thread Nikita Lohale
Traceback (most recent call last): File "f:\Nikita\Python programming\Iron Man Jarvis AL\jarvis.py", line 1, in import pyttsx3 ModuleNotFoundError: No module named 'pyttsx3' -- https://mail.python.org/mailman/listinfo/python-list

Re: Unfindable module: code

2021-07-02 Thread Chris Angelico
On Fri, Jul 2, 2021 at 11:01 PM Peter Otten <__pete...@web.de> wrote: > > On 02/07/2021 11:44, Chris Angelico wrote: > > I've just spent half an hour trying to figure out how to mess with the > > Python REPL (specifically, how to implement a line-by-line interactive > > interpreter within a larger

Re: Unfindable module: code

2021-07-02 Thread Peter Otten
On 02/07/2021 11:44, Chris Angelico wrote: I've just spent half an hour trying to figure out how to mess with the Python REPL (specifically, how to implement a line-by-line interactive interpreter within a larger app). It's rather hard to find it, but the key module is "code". https://docs.pytho

Xarray smoothing data

2021-07-02 Thread Jorge Conforte
Hi, I'm using xarray to read and plot my netcdf data. Please someone could help me, dow can I smooth my data before to plot i. Thanks, Conrado -- https://mail.python.org/mailman/listinfo/python-list

Unfindable module: code

2021-07-02 Thread Chris Angelico
I've just spent half an hour trying to figure out how to mess with the Python REPL (specifically, how to implement a line-by-line interactive interpreter within a larger app). It's rather hard to find it, but the key module is "code". https://docs.python.org/3/library/code.html (How did I end up