Re: [Tutor] Issue while using the python library

2016-09-02 Thread Alan Gauld via Tutor
On 02/09/16 15:07, Girish Grover wrote: > I am trying to use a python package from github and struggling to make it > work. Looking for experts to help me out. Technically its off topic for this list which is for core language and standard library issues. But if you were to tell us what package

Re: [Tutor] python projects

2016-09-02 Thread Vipul Gaur
Monika If you have the technical skills they want then give them the experience they want Technically it's just selling why so conscientious? Cheers On Thursday, September 1, 2016, monik...@netzero.net wrote: > Hi: > I have been taking python classes for overa year now

Re: [Tutor] About C++ library with multiprocessing

2016-09-02 Thread Peter Otten
Yohei Uemura wrote: > Hi all, > > I'm Yohei. > I have a problem with making a script which use both multiprocessing and > C++ library. > My C++ library is made by using boost python. > The library worked well if it was imported normally. > That is, > "import simple as F > A = range(0,100) > for

[Tutor] About C++ library with multiprocessing

2016-09-02 Thread Yohei Uemura
Hi all, I'm Yohei. I have a problem with making a script which use both multiprocessing and C++ library. My C++ library is made by using boost python. The library worked well if it was imported normally. That is, "import simple as F A = range(0,100) for x in A: print F.addition(x) " However,