EuroPython videos all on archive.org

2020-11-28 Thread M.-A. Lemburg
Over the last few weeks, Anthon van der Neut, our media work group chair for EP2015 and EP2016, put in a lot of effort into getting all our conference videos on archive.org, the Internet Archive. Archive.org is not meant as an alternative for YouTube to watch the videos, but it allows you to retri

Re: EuroPython videos all on archive.org

2020-11-28 Thread Alex Kaye
Without volunteers, the world would end, abruptly ! Thanks, Alex On Sat, Nov 28, 2020 at 5:48 AM M.-A. Lemburg wrote: > Over the last few weeks, Anthon van der Neut, our media work group chair > for EP2015 and EP2016, put in a lot of effort into getting all our > conference videos on archive.o

series.py, cannot import series from pandas

2020-11-28 Thread A. M. Thomas [PETech MIET MBA]
Kindly guide on how to solve this problem from Python3.9 with pycharm. See the below import numpy as np import pandas as pd from pandas import series object = series([5,10,15,20]) print (object) C:\Users\THOMAS\AppData\Local\Programs\Python\Python39\python.exe C:/Users/THOMAS/PycharmProjects/Ex

Re: series.py, cannot import series from pandas

2020-11-28 Thread MRAB
On 2020-11-28 15:59, A. M. Thomas [PETech MIET MBA] wrote: Kindly guide on how to solve this problem from Python3.9 with pycharm. See the below import numpy as np import pandas as pd from pandas import series object = series([5,10,15,20]) print (object) C:\Users\THOMAS\AppData\Local\Programs\

Re: series.py, cannot import series from pandas

2020-11-28 Thread A. M. Thomas [PETech MIET MBA]
Spot on!! Thank you very much, am back on track with your aid On Sat, Nov 28, 2020 at 9:23 PM MRAB wrote: > On 2020-11-28 15:59, A. M. Thomas [PETech MIET MBA] wrote: > > Kindly guide on how to solve this problem from Python3.9 with pycharm. > See > > the below > > > > > > import numpy as np > >

ssl connection has been closed unexpectedly

2020-11-28 Thread Shaozhong SHI
Hi, I keep getting the following error when I use engine = create_engine(logging in details to postgres) df.to_sql('table_name', and etc.) OperationalError: (psycopg2.OperationalError) SSL connection has been closed unexpectedly (Background on this error at: http://sqlalche.me/e/13/e3q8) Operat

numpy problem (follow up)

2020-11-28 Thread Larry Burford
I have completed reloading Still getting the error msg for numpy Gentlemen/Ladies, new to visual studio new-ish to python (I hope this is more to do with python ...) ~5 yr old HP with 16 GB,  1 TB,  W10 pro,  python 3.9.0,  VSCode 1.51.1,  3 monitor desktop when trying to run th

How to record full error message for debugging with nbconvert?

2020-11-28 Thread Shaozhong SHI
Hi, When I use nbconvert to run Jupyter notebook, it is so difficult to see the full error message for debugging? How to save full error messages? Regards, David -- https://mail.python.org/mailman/listinfo/python-list

Re: numpy problem (follow up)

2020-11-28 Thread Malcolm
HI Just had the same problem. The solution that worked for me was ( pip uninstall numpy then pip install numpy==1.19.3 The latest update to windows has an error in the BLAS libray causing the error. its a known problem. hope this helps Malcolm On 29/11/2020 10:28 am, Larry Burford wro

How to run Jupyter notebook in command line and get full error message?

2020-11-28 Thread Shaozhong SHI
How to run Jupyter notebook in command line and get full error messages? My VPN keeps dropping and can not run Jupyter Notebook as it is. I started to use nbconvert in command line. But, when it stops due to error, I can not see where the error occurs. In order to make life easier for debugging

A problem with opening a file

2020-11-28 Thread Gabor Urban
Hi, I am facing an issue I was not able to solve yet. I have a class saving messages to a file. The relevant code is: import OS import sys class MxClass: def __init__(self, fName, fMode,): self.fileName = fName self.fileMode = fMode def writeMetho