On Mon, Apr 27, 2015 at 12:32:16PM +0300, Gebrekirstos G/meskel wrote:
> Hi guys:
>
> I need help for
>
> consume .NET web service in python code from Ubuntu OS
Show us the code you have, and the error it is producing, and well try
to help.
--
Steve
__
On 27/04/15 10:32, Gebrekirstos G/meskel wrote:
Hi guys:
I need help for
consume .NET web service in python code from Ubuntu OS
OK, But to help you we need you to help us.
What does this web service look like?
What version of Python are you using?
What have tyou tried so far , if anything?
W
Hi guys:
I need help for
consume .NET web service in python code from Ubuntu OS
thanks alot
G/kirstos
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Carlos Daniel Ruvalcaba Valenzuela wrote:
> Yes is very possible to do this with python.
>
> Checkout the os.system and os.popen functions to run external commands
> (chmod, chown).
While those are ways of calling external commands, it is best to use
built-in language features like os.chmod() an
chinni wrote:
> Hi All,
>
>
> I Want to write a python script to change the permissions(chmod) and
> owner(chown) and group(chgrp) of a file on unix,
> script as to read from the /etc/passwd for displaying available users on
> the machine and from /etc/groups it as to display the available grou
Yes is very possible to do this with python.
Checkout the os.system and os.popen functions to run external commands
(chmod, chown).
Reading the list of users and groups should be easy, just open the
file and read line by line and parse, you can do it as simple as
splitting the line on colon chara
Hi All,
I Want to write a python script to change the permissions(chmod) and
owner(chown) and group(chgrp) of a file on unix,
script as to read from the /etc/passwd for displaying available users on the
machine and from /etc/groups it as to display the available groups and user
has to give the mo
On 14/04/06, John Brokaw <[EMAIL PROTECTED]> wrote:
> Adam, Yes i have and thanks for trying to help. I guess I need to be more
> specific with my question. I need to know why this is happening and will it
> happend if a put together a complete game. I can close the window with the
> display.quit c
> John Brokaw <[EMAIL PROTECTED]> wrote:
> Date: Thu, 13 Apr 2006 13:07:23 -0400
> From: "John Brokaw" <[EMAIL PROTECTED]>
> To: "David Holland" <[EMAIL PROTECTED]>
> Subject: Re: Show us some code
>
>
> Sure...
> >>> import pygame, sys,os
> >>> from pygame.locals import *
> >>> pygame.init()
> (6