Re: [Tutor] Remote module loading

2017-09-07 Thread devN
In fact, that's very close to what I needed. The repo or source would have version, target audience, and few other parameters. Thanks a zillion. I will take it up from here. I'll post you guys the complete version sometime in the future when it's ready. Cheers! Farhan On Fri, 8 Sep 2017, 06:26 Mat

Re: [Tutor] Remote module loading

2017-09-07 Thread Mats Wichmann
On 09/07/2017 12:49 AM, devN wrote: > Hi, > I am newbie in python. I wrote a module which is meant to be run across > couple of unix OS variants (redhat, debian, bsd and solaris). The module is > updated frequently and new features added. > ... > The above code was an alpha and there could be furt

Re: [Tutor] Remote module loading

2017-09-07 Thread devN
Well, it's another hassle to keep NFS shared and mounted in every other systems, not to include the firewall rules. Let me check out with the importlib On Fri, 8 Sep 2017, 00:14 Peter Otten <__pete...@web.de> wrote: > devN wrote: > > Is there any way to load the module from remote just as > > sim

Re: [Tutor] Help

2017-09-07 Thread boB Stepp
Greetings Edmundo! On Thu, Sep 7, 2017 at 1:35 PM, Peter Otten <__pete...@web.de> wrote: > edmundo pierre via Tutor wrote: > >> >> I am trying to write a code that asks an User to Enter a decimal number, >> the my program should separate the number in two parts like this: 1 >> cae:Enter a number:

Re: [Tutor] Help

2017-09-07 Thread Mats Wichmann
On 09/07/2017 10:20 AM, edmundo pierre via Tutor wrote: > > I am trying to write a code that asks an User to Enter a decimal number, the > my program should separate the number in two parts like this: > 1 cae:Enter a number: 12.9Decimal part: 12whole part : 9 > 2 case:Enter: 10Decimal par:Whole p

Re: [Tutor] New to Python

2017-09-07 Thread boB Stepp
Welcome to Tutor! On Thu, Sep 7, 2017 at 8:14 AM, Vikram Singh wrote: > I've been learning Python from Google For Education > . A little help will be > appreciated regarding the right way and right tutorials to learn Python > from. Thanks in advance. Th

Re: [Tutor] Help

2017-09-07 Thread Peter Otten
edmundo pierre via Tutor wrote: > > I am trying to write a code that asks an User to Enter a decimal number, > the my program should separate the number in two parts like this: 1 > cae:Enter a number: 12.9Decimal part: 12whole part : 9 2 case:Enter: > 10Decimal par:Whole part: 10 That is my code:

Re: [Tutor] Remote module loading

2017-09-07 Thread Peter Otten
devN wrote: > Is there any way to load the module from remote just as > simple as import statement (without using urllib or wget piped to python)? > This could also mean does PYTHONPATH support http/ftp? While there are hooks to do everything you can imagine https://docs.python.org/dev/library/im

[Tutor] Help

2017-09-07 Thread edmundo pierre via Tutor
I am trying to write a code that asks an User to Enter a decimal number, the my program should separate the number in two parts like this: 1 cae:Enter a number: 12.9Decimal part: 12whole part : 9 2 case:Enter: 10Decimal par:Whole part: 10 That is my code:  A = input("Enter a number") C = [ ]    

[Tutor] New to Python

2017-09-07 Thread Vikram Singh
I've been learning Python from Google For Education . A little help will be appreciated regarding the right way and right tutorials to learn Python from. Thanks in advance. ___ Tutor maillist - Tutor@python.org

[Tutor] Remote module loading

2017-09-07 Thread devN
Hi, I am newbie in python. I wrote a module which is meant to be run across couple of unix OS variants (redhat, debian, bsd and solaris). The module is updated frequently and new features added. import platform import os import subprocess def main (): RESPONSE = dict (); PYVER = float (pla