Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Writing a program under GNU/Linux for MS Windows.

Reply
Thread Tools

Writing a program under GNU/Linux for MS Windows.

 
 
Levi Campbell
Guest
Posts: n/a
 
      07-18-2008
Hi, I'm trying to write a program for a friend of mine who uses
windows but I use GNU/Linux. I know you can use mingw and link to the
python dll, but is there a way to create a win32 service under Linux?
 
Reply With Quote
 
 
 
 
Neuberger, Sheldon N.
Guest
Posts: n/a
 
      07-18-2008
If you're just writing Python code then it will run unmodified on his
Windows machine.

Are you planning on using other languages too?

-----Original Message-----
From: python-list-bounces+sneuberger=
[mailtoython-list-bounces+sneuberger=] On Behalf
Of Levi Campbell
Sent: Friday, July 18, 2008 4:27 PM
To: python-
Subject: Writing a program under GNU/Linux for MS Windows.

Hi, I'm trying to write a program for a friend of mine who uses
windows but I use GNU/Linux. I know you can use mingw and link to the
python dll, but is there a way to create a win32 service under Linux?
--
http://mail.python.org/mailman/listinfo/python-list
 
Reply With Quote
 
 
 
 
Mike Driscoll
Guest
Posts: n/a
 
      07-18-2008
On Jul 18, 3:26*pm, Levi Campbell <levicc00...@gmail.com> wrote:
> Hi, I'm trying to write a program for a friend of mine who uses
> windows but I use GNU/Linux. I know you can use mingw and link to the
> python dll, but is there a way to create a win32 service under Linux?


Technically, you can probably write the code for the service in Linux,
but I doubt you could test it. Here are some links on the subject,
though:

http://essiene.blogspot.com/2005/04/...-services.html
http://agiletesting.blogspot.com/200...s-windows.html

Mike
 
Reply With Quote
 
Nicol van der Merwe
Guest
Posts: n/a
 
      07-20-2008
On 7/18/08, Levi Campbell <> wrote:
> Hi, I'm trying to write a program for a friend of mine who uses
> windows but I use GNU/Linux. I know you can use mingw and link to the
> python dll, but is there a way to create a win32 service under Linux?
> --
> http://mail.python.org/mailman/listinfo/python-list
>

Hi Levi

(First off, I apologise if I sound a bit incoherent, but I've got flu
and I'm on medication )

After having just completed a project where had to write a windows
service I can offer you some insight. Writing of a service on windows,
as opposed to a daemon on linux/unix in python - you will need to use
the pywin32 module (http://sourceforge.net/projects/pywin32/)

The libraries in the pywin32 package you will need to use are most
likely going to be the followowing:
1) win32service
2) win32serviceutil
3) win32api
4) win32con and
5) servicemanager

The fact that the pywin32 package is just an interface to the win32api
means (as far as I understand) that [sadly] you will need to develop
this in windows.

Some stuff you might want to check out:
1) http://agiletesting.blogspot.com/200...s-windows.html
(I don't recommend this one - a bit dated)
2) http://groups.google.com/group/comp....75b8265f1b220f
(this is the template for the win32 service i finally used.)

Also as an interesting alternative, something I recently came across -
you can create a windows service, using the web2py web framework
(http://mdp.cti.depaul.edu/AlterEgo/default/show/77). This could save
you some time, as all the libraries/modules are already set up for you
in the source download
(http://mdp.cti.depaul.edu/examples/default/download)

Hope this helps.

Regards

Nicolaas

--
Peesowt
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Writing UTF-8 file under Windows t_lawetta@yahoo.com Perl Misc 1 01-05-2007 03:10 PM
writing to another server under the same domain ASP .Net 3 06-29-2005 08:12 AM
writing to another server under the same domain ASP .Net Security 3 06-29-2005 08:12 AM
Any problems with writing the information into a file - Multi-users perform writing the same file at the same time ???? HNguyen ASP .Net 4 12-21-2004 01:53 PM
Writing arguments under format specifiers Peter Ammon C Programming 4 07-06-2004 03:41 PM



Advertisments