Re: [IronPython] Sockets and Standard Library Modules in IronPython

2007-06-05 Thread Eric Larson
On 6/5/07, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: > 2007/6/6, Eric Larson <[EMAIL PROTECTED]>: > > I would suppose getting these libs to work would also make httplib2 > > work as well. httplib2 is a *great* library that does an excellent job > > with caching,

Re: [IronPython] Sockets and Standard Library Modules in IronPython

2007-06-05 Thread Eric Larson
the fire to get these things working :) Thanks! Eric Larson On 6/5/07, Fuzzyman <[EMAIL PROTECTED]> wrote: > Hello all, > > A plea to 'the team'. urllib and urllib2 are Python standard libraries > modules that provide a high level interface to accessing internet >

Re: [IronPython] DOM binding for .NET?

2006-10-26 Thread Eric Larson
Thanks for all the great info!    Eric  On 10/25/06, M. David Peterson <[EMAIL PROTECTED]> wrote: This is a nice overview in regards to some of the key advantages in System.Xml for .NET 2.0.  It provides a deeper understanding the of the design goals, with code samples that showcase how to take adv

Re: [IronPython] Trying (unsuccessfully) to subclass Gtk.Widget class

2006-09-18 Thread Eric Larson
I think you might have to set your module your of your PythonEngine to "__main__". For example:PythonEngine myPyEngine = new PythonEngine(someEngineOptions);EngineModule mainModule = myPyEngine.CreateModule ("__main__", someVariables, true);myPyEngine.ExecuteFile(someScriptFile, mainModule);There a

Re: [IronPython] A SourceForge project?

2006-09-18 Thread Eric Larson
+1 for sourceforge. On 9/15/06, David Fraser <[EMAIL PROTECTED]> wrote: Sanghyeon Seo wrote:> I am thinking about creating a SourceForge project, to host files> under http://sparcs.kaist.ac.kr/~tinuviel/fepy/ directory. >> So that you can keep up-to-date just by doing "svn update". So that I> can r

[IronPython] __getattr__ overflow

2006-09-18 Thread Eric Larson
Hi, I was trying to wrap a rather verbose library to something more concise. Essentially, I have a module with a bunch of static functions and I wanted to create an object that automatically adds a prefix to the function calls. For example: my_wrapper.CallFunction(*args)Would be like:myapi.F_ApiPre

Re: [IronPython] socket for IronPython update

2006-09-13 Thread Eric Larson
Along these same lines, with the 1.0 out how ofte can folks expect to see updates/patches? This whole socket library aspect is very exciting, so something official getting released with fixes included would be a huge help. Thanks!EricOn 9/11/06, Dino Viehland <[EMAIL PROTECTED]> wrote: Originally

Re: [IronPython] Implementing WSGI server as ASP.NET handler

2006-03-30 Thread Eric Larson
That is rad. :)On 3/30/06, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: Hello, I got a proof-of-concept WSGI server as ASP.NET handlerworking, using IronPython.My development environment is Debian GNU/Linux with latest Mono andXSP, and IronPython 1.0 Beta 4 with patches.All the relevant codes are here

Re: [IronPython] .NET Attributes

2006-03-27 Thread Eric Larson
My only point is that new decorators shouldn't be included unless they are available in the language. I know Guido said something about them at PyCon but I can't remember what :)I have no problems with decorators by the way. Cherrypy (a web framework/library) uses a decorator-ish syntax, so if impl

Re: [IronPython] .NET Attributes

2006-03-27 Thread Eric Larson
On the topic of decorators and integrating with .NET, it seems that in order to keep IronPython as close to CPython, it would be a good idea to consider adding .NET specific pieces as a "library" instead of an addition to the language. That way people could write python code that works in IronPytho

[IronPython] Visual Studio Integration

2006-02-10 Thread Eric Larson
I was curious how/if I can use Visual Studio 2005 with IronPython. I realize that I probably *can* use it of course, but I was wondering about the obvious niceties such as intellisense and code highlighting. Great Stuff! Eric ___ users mailing list users@

Re: [IronPython] Question (Novice) on using Microsoft Excel viaIronPython

2006-02-08 Thread Eric Larson
Could you also connect to a COM object (or do something similar) and then use IronPython similar to _vbscript_? I am not sure, but this may have been what the original poster wanted. Of course I could be wrong and simply putting my hopes to use IronPython as a macro language on the table :) EricOn