Re: [Python.NET] Python Asp.net for real?
You shouldn't. Unless I'm mistaken you end up using .NET functionality exclusively which is totally incompatible with Python's functionality - e.g. instances of class Array cannot be used as lists in Python without any dirty conversion going on. You lose all Python's benefits - I find it much easier, much faster and much cleaner to directly program in C#. -Andreas - Original Message - From: "Craig H. Anderson" <[EMAIL PROTECTED]> To: Sent: Thursday, February 03, 2005 2:40 AM Subject: [Python.NET] Python Asp.net for real? Are there some examples out there of asp.net WebForms done with Python for .net? I've spent several years working with Python and forgetting C++. My current job is migrating to an Asp.net shop. Today I'm trying to learn some Web Form programming and translate some working Python database code to vb.net. I stumbled across http://www.zope.org/Members/Brian/PythonNet/ and wonder if I should try this out. Thanks. _ Python.NET mailing list - [email protected] http://mail.python.org/mailman/listinfo/pythondotnet _ Python.NET mailing list - [email protected] http://mail.python.org/mailman/listinfo/pythondotnet
RE: [Python.NET] Python Asp.net for real?
> Are there some examples out there of asp.net > WebForms done with Python for .net? > > I've spent several years working with Python and > forgetting C++. My current job is migrating to > an Asp.net shop. Today I'm trying to learn some > Web Form programming and translate some working > Python database code to vb.net. I stumbled across > http://www.zope.org/Members/Brian/PythonNet/ > and wonder if I should try this out. Python for .NET doesn't actually compile to IL, so it won't let you use Python in asp.net pages. In theory, you could do that at some point with IronPython, but its status becomes more unclear by the day... ;( Brian Lloyd[EMAIL PROTECTED] V.P. Engineering 540.361.1716 Zope Corporation http://www.zope.com _ Python.NET mailing list - [email protected] http://mail.python.org/mailman/listinfo/pythondotnet
Re: [Python.NET] Python Asp.net for real?
Brian Lloyd a écrit : Are there some examples out there of asp.net WebForms done with Python for .net? I've spent several years working with Python and forgetting C++. My current job is migrating to an Asp.net shop. Today I'm trying to learn some Web Form programming and translate some working Python database code to vb.net. I stumbled across http://www.zope.org/Members/Brian/PythonNet/ and wonder if I should try this out. Python for .NET doesn't actually compile to IL, so it won't let you use Python in asp.net pages. I suggest you try http://boo.codehaus.org/. It is really close to python, and runs on top of the IL. _ Python.NET mailing list - [email protected] http://mail.python.org/mailman/listinfo/pythondotnet
