Re: [Python.NET] advanced book about Python

2016-10-14 Thread Daniel Fernandez
Hi Denis, I am interested. What do I need to do? I wasn't sure how much to contribute? Thanks. Danny From: denis.akhiya...@gmail.com Date: Thu, 13 Oct 2016 16:39:25 -0500 To: pythondotnet@python.org Subject: [Python.NET] advanced book about Python Hi Python and .NET developers, I would like to p

Re: [Python.NET] clr ImportError

2016-07-16 Thread Daniel Fernandez
ag is false. On Thursday, July 14, 2016, Daniel Fernandez wrote: Hi All, I was wondering if anyone has ran into this before. I have latest pythonnet installed and everything is working great. I have been using for the last couple of weeks with python 3.5.2 (32 bit) on Win 7 box. I decided to tr

[Python.NET] clr ImportError

2016-07-14 Thread Daniel Fernandez
Hi All, I was wondering if anyone has ran into this before. I have latest pythonnet installed and everything is working great. I have been using for the last couple of weeks with python 3.5.2 (32 bit) on Win 7 box. I decided to try out ptpython so I pip install it. Now I am getting a "ImportErro

Re: [Python.NET] Issue with beautifulsoup 4

2016-05-30 Thread Daniel Fernandez
beautifulsoup 4 There is pending pull request hopefully addressing this issue: https://github.com/pythonnet/pythonnet/pull/219 If not, then please open an issue on github or comment on that pull request. On Friday, May 27, 2016, Daniel Fernandez wrote: Hey Everyone, I'm running into an

Re: [Python.NET] Issue with beautifulsoup 4

2016-05-28 Thread Daniel Fernandez
Hi All, I narrow down the issue to a relative import of html5lib. I see there is already a pull request (https://github.com/pythonnet/pythonnet/pull/219) that addresses this relative import issue chaning the importhook.cs. Thanks. Danny From: fernandez_d...@hotmail.com To: pythondotnet@python.o

[Python.NET] Issue with beautifulsoup 4

2016-05-28 Thread Daniel Fernandez
Hey Everyone, I'm running into an issue importing beautifulsoup 4 only if I import clr before importing beautifulsoup. I'm using python 3.5 32-bit version on my Windows 7 and Windows 10 box. I'm using beautifulsoup package from Gohlke website (beautifulsoup4-4.4.1-py3-none-any.whl) I simply run

Re: [Python.NET] Support for Python 3.5

2015-09-17 Thread Daniel Fernandez
Daniel Fernandez mailto:fernandez_d...@hotmail.com> > wrote: Hi All, I was wondering when there will be a release for Python 3.5? I’m not sure if that is in the works. Thanks. Danny _ Python.NET mailing list - PythonDotNet@pyth

[Python.NET] Support for Python 3.5

2015-09-17 Thread Daniel Fernandez
Hi All, I was wondering when there will be a release for Python 3.5? I'm not sure if that is in the works. Thanks. Danny _ Python.NET mailing list - PythonDotNet@python.org https://mail.python.org/mailman/listinfo/pythondotnet

Re: [Python.NET] Setup sys.path in Embedded Application

2015-08-08 Thread Daniel Fernandez
2015 10:38:44 +0200 Subject: Re: [Python.NET] Setup sys.path in Embedded Application Le 03.08.15 23:33, Daniel Fernandez a écrit : Hi Everyone, I’m looking at embedding python in my .NET app. I was

[Python.NET] Setup sys.path in Embedded Application

2015-08-04 Thread Daniel Fernandez
Hi Everyone, I'm looking at embedding python in my .NET app. I was wondering what is the best practice for adding additional paths to the sys.path? I want the standard python sys path but additional paths for my own python scripts. Do I just Py.Import("sys") and then add it there or is there so