From vallechakunal2 at gmail.com Sat Jun 3 07:42:16 2017 From: vallechakunal2 at gmail.com (kunal vallecha) Date: Sat, 3 Jun 2017 17:12:16 +0530 Subject: [Ironpython-users] Do Ironpython supports paramiko library? Message-ID: I am making a general python executing engine through iron python and I want to know if IronPython supports paramiko library of python for ssh connections. Thankyou! -- Kunal Vallecha Third Year Undergraduate Student Computer Science and Engineering IIT Kharagpur Sent with Mailtrack -------------- next part -------------- An HTML attachment was scrubbed... URL: From slide.o.mix at gmail.com Sat Jun 3 19:18:31 2017 From: slide.o.mix at gmail.com (Slide) Date: Sat, 03 Jun 2017 23:18:31 +0000 Subject: [Ironpython-users] Do Ironpython supports paramiko library? In-Reply-To: References: Message-ID: According to the paramiko page, it uses a native C module for crypto, so it won't work with IronPython right out of the box. It would have to be modified to use either the .NET crypto classes, or use pure Python crypto. On Sat, Jun 3, 2017, 08:06 kunal vallecha wrote: > I am making a general python executing engine through iron python and I > want to know if IronPython supports paramiko library of python for ssh > connections. > > Thankyou! > > -- > Kunal Vallecha > Third Year Undergraduate Student > Computer Science and Engineering > IIT Kharagpur > > > > Sent with Mailtrack > > _______________________________________________ > Ironpython-users mailing list > Ironpython-users at python.org > https://mail.python.org/mailman/listinfo/ironpython-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris40knaack at gmail.com Thu Jun 22 13:56:25 2017 From: chris40knaack at gmail.com (Chris Knaack) Date: Thu, 22 Jun 2017 13:56:25 -0400 Subject: [Ironpython-users] Using compiled(pyc) modules Message-ID: I have a Windows application that uses IronPython. The scripts are distributed with plugin/user projects that can be opened in the application. Projects have data, configuration, and these scripts to separate the business logic of the project from the core application. It works really nice except when users share these packages, the compiled scripts(dlls) always get marked as blocked when passed your an email server. My question is, does the extension have to be dll such that clr.AddReference('scriptname') works? Thanks for any ideas. -------------- next part -------------- An HTML attachment was scrubbed... URL: From slide.o.mix at gmail.com Thu Jun 22 14:48:02 2017 From: slide.o.mix at gmail.com (Slide) Date: Thu, 22 Jun 2017 18:48:02 +0000 Subject: [Ironpython-users] Using compiled(pyc) modules In-Reply-To: References: Message-ID: Just as an FYI, please switch over to using users at ironpython.groups.io. To answer your question, AddReference uses LoadAssemblyByName and LoadAssemblyWithPartialName, so the same rules apply as what the normal .NET framework requires. If you want to use some other extension, you would need to use clr.AddReferenceToFile instead. On Thu, Jun 22, 2017 at 10:56 AM Chris Knaack wrote: > I have a Windows application that uses IronPython. The scripts are > distributed with plugin/user projects that can be opened in the > application. > > Projects have data, configuration, and these scripts to separate the > business logic of the project from the core application. > > It works really nice except when users share these packages, the compiled > scripts(dlls) always get marked as blocked when passed your an email server. > > My question is, does the extension have to be dll such that > clr.AddReference('scriptname') works? > > Thanks for any ideas. > _______________________________________________ > Ironpython-users mailing list > Ironpython-users at python.org > https://mail.python.org/mailman/listinfo/ironpython-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: