Re: Remote Work Wanted - Junior Python Developer

2019-09-22 Thread Chris Angelico
On Mon, Sep 23, 2019 at 10:56 AM Shane Thomas wrote: > > Hi, > > I would like to start working remotely programming in Python. > > I have an IT Degree and English is my first Language. I currently live in New > Zealand, thus the remote work is the only option. > > I have 15+ years experience as a

Remote Work Wanted - Junior Python Developer

2019-09-22 Thread Shane Thomas
Hi, I would like to start working remotely programming in Python. I have an IT Degree and English is my first Language. I currently live in New Zealand, thus the remote work is the only option. I have 15+ years experience as a Delphi Developer, mainly working with business database application

Re: Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Markos
Em 22-09-2019 13:10, Piet van Oostrum escreveu: Markos writes: Hi, I have a table.csv file with the following structure: , Polyarene conc ,, mg L-1 ,,, Spectrum, Py, Ace, Anth, 1, "0,456", "0,120", "0,168" 2, "0,456", "0,040", "0,280" 3, "0,152", "0,200", "0,280" I open as dataframe

Re: Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Richard Damon
On 9/22/19 7:05 PM, Markos wrote: > > Em 22-09-2019 13:10, Piet van Oostrum escreveu: >> Markos writes: >> >>> Hi, >>> >>> I have a table.csv file with the following structure: >>> >>> , Polyarene conc ,, mg L-1 ,,, >>> Spectrum, Py, Ace, Anth, >>> 1, "0,456", "0,120", "0,168" >>> 2, "0,456",

Re: Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Markos
Em 22-09-2019 13:10, Piet van Oostrum escreveu: Markos writes: Hi, I have a table.csv file with the following structure: , Polyarene conc ,, mg L-1 ,,, Spectrum, Py, Ace, Anth, 1, "0,456", "0,120", "0,168" 2, "0,456", "0,040", "0,280" 3, "0,152", "0,200", "0,280" I open as dataframe wi

Re: Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Piet van Oostrum
Markos writes: > Hi, > > I have a table.csv file with the following structure: > > , Polyarene conc ,, mg L-1 ,,, > Spectrum, Py, Ace, Anth, > 1, "0,456", "0,120", "0,168" > 2, "0,456", "0,040", "0,280" > 3, "0,152", "0,200", "0,280" > > I open as dataframe with the command: > > data = pd.rea

Cheetah 3.2.4

2019-09-22 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.2.4, a bugfix release of branch 3.2 of CheetahTemplate3. What's new in CheetahTemplate3 == Minor features: - Import from ``collections`` for Python 2, from ``collections.abc`` for Python 3. Bug fixes: - Fixed infini

Obtain all the content from https://free-ss.site/ by pycurl/requests.

2019-09-22 Thread Hongyi Zhao
Hi, I try to obtain the content from https://free-ss.site/ by pycurl/requests. But it seems that the above tools cannot get all of the content as the stuff obtained by the firefox. Is is possible to get all of the content just as the results via firefox for this website by using pycurl/reque

SQLObject 3.7.3

2019-09-22 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.7.3, a bugfix release of branch 3.7 of SQLObject. What's new in SQLObject === Bug fixes - * Avoid excessive parentheses around ``ALL/ANY/SOME()``. Tests - * Add tests for cascade deletion. * Add tests for ``sqlbuilder.

Re: [Tutor] Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Eryk Sun
On 9/22/19, Albert-Jan Roskam wrote: > > Do you think it's a deliberate design choice that decimal and thousands > where used here as params, and not a 'locale' param? It seems nice to be > able to specify e.g. locale='dutch' and then all the right lc_numeric, > lc_monetary, lc_time where used. Or

Re: [Tutor] Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Cameron Simpson
On 22Sep2019 07:39, Albert-Jan Roskam wrote: On 22 Sep 2019 04:27, Cameron Simpson wrote: On 21Sep2019 20:42, Markos wrote: I have a table.csv file with the following structure: , Polyarene conc ,, mg L-1 ,,, Spectrum, Py, Ace, Anth, 1, "0,456", "0,120", "0,168" 2, "0,456", "0,040", "0,2

Re: [Tutor] Most efficient way to replace ", " with "." in a array and/or dataframe

2019-09-22 Thread Albert-Jan Roskam
On 22 Sep 2019 04:27, Cameron Simpson wrote: On 21Sep2019 20:42, Markos wrote: >I have a table.csv file with the following structure: > >, Polyarene conc ,, mg L-1 ,,, >Spectrum, Py, Ace, Anth, >1, "0,456", "0,120", "0,168" >2, "0,456", "0,040", "0,280" >3, "0,152", "0,200", "0,280" > >I