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.
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" <craig@coot.net> To: <pythondotnet@python.org> 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 - PythonDotNet@python.org http://mail.python.org/mailman/listinfo/pythondotnet
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 brian@zope.com V.P. Engineering 540.361.1716 Zope Corporation http://www.zope.com
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.
participants (4)
-
Andreas Schmid
-
Brian Lloyd
-
Craig H. Anderson
-
Stan Pinte