Re: Error while using suds: suds.TypeNotFound: Type not found

2019-01-20 Thread dieter
prakashsharmac...@gmail.com writes: > ... > I want to consume the web services described in the following: > > https://login.keyinvoice.com/API3_ws.php?wsdl > > I am using python 3.5.x and suds version 0.6. What I tried 1 > > from suds.client import Client > url = 'https://login.keyinvoice.com/API3

Re: How to access a folder in a zip file?

2019-01-20 Thread dieter
mignoncharly via Python-list writes: > I'm a newbie in python and I was trying to access a folder inside a zip file > and I also have issues with relative and absolute path. Thks in advance. > > In projects there a lot of urls (i'll read them later one by one and store > them in a list/array so

Re: basic question on how "import" works

2019-01-20 Thread Cameron Simpson
On 19Jan2019 11:42, joseph pareti wrote: [*u23885@c009 3_NeuralNetworks]$ cat foo.py* from __future__ import print_function # Import MNIST data from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("/tmp/data/", one_hot=True) [u23885@c009 3_NeuralNetworks

Re: python package management confusion

2019-01-20 Thread dcs3spp via Python-list
On Sunday, 20 January 2019 21:27:53 UTC, Oscar Benjamin wrote: > On Sun, 20 Jan 2019 at 21:12, dcs3spp via Python-list > wrote: > > > > Pip 18.1 supports reading pep508 direct urls from install_requires. In > > future release there are plans to deprecate the --process-dependency-links > > pip i

Re: python package management confusion

2019-01-20 Thread Oscar Benjamin
On Sun, 20 Jan 2019 at 21:12, dcs3spp via Python-list wrote: > > Pip 18.1 supports reading pep508 direct urls from install_requires. In future > release there are plans to deprecate the --process-dependency-links pip > install option: > - https://github.com/pypa/pip/issues/4187 > - https://githu

Re: python package management confusion

2019-01-20 Thread dcs3spp via Python-list
On Sunday, 20 January 2019 20:38:30 UTC, Oscar Benjamin wrote: > On Sun, 20 Jan 2019 at 16:22, dcs3spp via Python-list > wrote: > > > > On Saturday, 19 January 2019 11:17:19 UTC, dcs3spp wrote: > > > > > > My question is, can setuptools be configured to pull in child from a > > > separate git r

Re: python package management confusion

2019-01-20 Thread Oscar Benjamin
On Sun, 20 Jan 2019 at 16:22, dcs3spp via Python-list wrote: > > On Saturday, 19 January 2019 11:17:19 UTC, dcs3spp wrote: > > > > My question is, can setuptools be configured to pull in child from a > > separate git repository when running python setup.py develop from parent > > folder? I have

Re: Error while using suds: suds.TypeNotFound: Type not found

2019-01-20 Thread MRAB
On 2019-01-20 15:41, prakashsharmac...@gmail.com wrote: I want to consume the web services described in the following: https://login.keyinvoice.com/API3_ws.php?wsdl I am using python 3.5.x and suds version 0.6. What I tried 1 from suds.client import Client url = 'https://login.keyinvoice.com

Re: How to access a folder in a zip file?

2019-01-20 Thread Michael F. Stemper
On 19/01/2019 07.36, mignoncharly wrote: > Hello! > > I'm a newbie in python and I was trying to access a folder inside a zip file > and I also have issues with relative and absolute path. Thks in advance. > > In projects there a lot of urls (i'll read them later one by one and store > them in

Re: python package management confusion

2019-01-20 Thread dcs3spp via Python-list
On Saturday, 19 January 2019 11:17:19 UTC, dcs3spp wrote: > On Saturday, 19 January 2019 07:33:50 UTC, dieter wrote: > > dcs3spp via Python-list writes: > > > On Friday, 18 January 2019 07:39:00 UTC, dieter wrote: > > > ... > > > My situation is similar to the following > > > > > > Assume t

Re: Error while using suds: suds.TypeNotFound: Type not found

2019-01-20 Thread prakashsharmacs24
On Sunday, January 20, 2019 at 9:12:10 PM UTC+5:30, prakashs...@gmail.com wrote: > I want to consume the web services described in the following: > > https://login.keyinvoice.com/API3_ws.php?wsdl > > I am using python 3.5.x and suds version 0.6. What I tried 1 > > from suds.client import Client

Error while using suds: suds.TypeNotFound: Type not found

2019-01-20 Thread prakashsharmacs24
I want to consume the web services described in the following: https://login.keyinvoice.com/API3_ws.php?wsdl I am using python 3.5.x and suds version 0.6. What I tried 1 from suds.client import Client url = 'https://login.keyinvoice.com/API3_ws.php?wsdl' client = Client(url) Error: suds.Ty