Re: Pandas printing in jupyter

2018-01-13 Thread boffi
bo...@questa.la.so writes: > def prmat(mat): > return (r'\begin{bmatrix}' + > r'\\'.join('&'.join('%f'%x for x in row) for row in mat) + > r'\end{bmatrix}' add a closing parenthesis here ^ -- https://mail.python.org/mailman/listinfo/python-list

Re: Pandas printing in jupyter

2018-01-13 Thread boffi
Rustom Mody writes: > Specifically and for starters, I want a numpy array — lets say 2D to > start with — to be displayed(displayable) as elegantly as sympy does > to (its) matrices import numpy as np from IPython.display im

anyway you can connect your reddit to your crypto account to send people coins?

2018-01-13 Thread yimba
wondering if its possible to have a bot that is able to send coins to a person if you choose to -- https://mail.python.org/mailman/listinfo/python-list

Re: requests / SSL blocks forever?

2018-01-13 Thread Jon Ribbens
On 2018-01-13, Nagy László Zsolt wrote: > I have a multi threaded Windows service written in Python. It is running > on 3.6.2.  Sometimes I cannot stop the service, because on of the > threads won't exit. I have narrowed down the problem to request and > _lib.SSL_read. (a) are you setting daemon=

pip --user by default

2018-01-13 Thread Thomas Jollans
Hi, I recently discovered the wonders of pip.conf: if I create a file ~/.config/pip/pip.conf* with: [install] user = true then pip will install to the --user site-packages by default, rather than trying to install packages into system directories. The trouble is that this fails when you also us

Re: requests / SSL blocks forever?

2018-01-13 Thread Thomas Jollans
On 13/01/18 11:34, Nagy László Zsolt wrote: > Hi! > > I have a multi threaded Windows service written in Python. It is running > on 3.6.2.  Sometimes I cannot stop the service, because on of the > threads won't exit. I have narrowed down the problem to request and > _lib.SSL_read. I have used a mo

requests / SSL blocks forever?

2018-01-13 Thread Nagy László Zsolt
Hi! I have a multi threaded Windows service written in Python. It is running on 3.6.2.  Sometimes I cannot stop the service, because on of the threads won't exit. I have narrowed down the problem to request and _lib.SSL_read. I have used a modified version of this gem: http://code.activestate.com/