Re: Export Event log via python in .txt

2017-03-06 Thread eryk sun
On Mon, Mar 6, 2017 at 3:36 PM, wrote: > I'm a student learning about python I would like to know how to export > Security log Application and generate folder path via python please help If you're asking about the Windows event logs, then it'll be easiest from a scripting POV to use wevtutil.exe

Re: Export

2016-03-13 Thread Jesper K Brogaard
Den 13-03-2016 kl. 00:07 skrev Herbert Müller: Hello, how can I export my .py files to .exe files? Thanks for your support Your Robert Look at pyinstaller or py2exe. I have no experience with either of them. -- Venlig hilsen / Best regards Jesper K. Brogaard (remove upper case letters in my

Re: Export data from python to a txt file

2013-03-29 Thread Peter Otten
Ana Dionísio wrote: > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to > a txt file and I can't use csv. What do you mean by "can't use csv"? - You cannot get it to work with the csv module - You are not allowed to use csv by your instructor - Something else. > And I w

Re: Export data from python to a txt file

2013-03-29 Thread Vincent Vande Vyvre
Le 29/03/13 18:33, Ana Dionísio a écrit : > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a > txt file and I can't use csv. > > And I want the next format: > > a 1 3 5 6 10 > b a t q r s > > I already have this code: > > "f = open("test.txt", 'w') > f.wri

Re: Export data from python to a txt file

2013-03-29 Thread rusi
On Mar 29, 10:33 pm, Ana Dionísio wrote: > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a > txt file and I can't use csv. > > And I want the next format: > > a 1 3 5 6 10 > b a t q r s > > I already have this code: > > "f = open("test.txt", 'w') >  f.wri

Re: Export data from python to a txt file

2013-03-29 Thread Mark Lawrence
On 29/03/2013 17:33, Ana Dionísio wrote: Hello!!! I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a txt file and I can't use csv. And I want the next format: a 1 3 5 6 10 b a t q r s I already have this code: "f = open("test.txt", 'w') f.write("a") You'll have

Re: Export data from python to a txt file

2013-03-29 Thread Jason Swails
On Fri, Mar 29, 2013 at 1:33 PM, Ana Dionísio wrote: > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to > a txt file and I can't use csv. > It would help if you showed exactly what you had in your program or in the Python interpreter. For instance a = [1,

Re: Export variables

2009-04-21 Thread Diez B. Roggisch
mso...@linuxmail.org wrote: > Hello, > > I want to make a certain subset of public attributes available through > an interface. > > The client should not need to know the names of the attributes. > > Here is some code with the important parts missing. Anyone care to > fill in the missing parts

Re: export sites/pages to PDF

2008-08-17 Thread Tim Roberts
jvdb <[EMAIL PROTECTED]> wrote: > >My employer is asking for a solution that outputs the content of urls >to pdf. It must be the content as seen within the browser. >Can someone help me on this? It must be able to export several kind of >pages with all kind of content (javascript, etc.) There are

Re: export sites/pages to PDF

2008-08-12 Thread norseman
Nick Craig-Wood wrote: jvdb <[EMAIL PROTECTED]> wrote: My employer is asking for a solution that outputs the content of urls to pdf. It must be the content as seen within the browser. Can someone help me on this? It must be able to export several kind of pages with all kind of content (javas

Re: export sites/pages to PDF

2008-08-12 Thread Nick Craig-Wood
jvdb <[EMAIL PROTECTED]> wrote: > My employer is asking for a solution that outputs the content of urls > to pdf. It must be the content as seen within the browser. > Can someone help me on this? It must be able to export several kind of > pages with all kind of content (javascript, etc.) Soun

Re: export sites/pages to PDF

2008-08-12 Thread jvdb
Hi Stef! Thanks for your answer, but i forgot to mention that i have to run this on unix/linux. On Aug 12, 9:06 pm, Stef Mientki <[EMAIL PROTECTED]> wrote: > jvdb wrote: > > Hi all, > > > My employer is asking for a solution that outputs the content of urls > > to pdf. It must be the content as

Re: export sites/pages to PDF

2008-08-12 Thread Stef Mientki
jvdb wrote: Hi all, My employer is asking for a solution that outputs the content of urls to pdf. It must be the content as seen within the browser. Can someone help me on this? It must be able to export several kind of pages with all kind of content (javascript, etc.) -- http://mail.python.org/

Re: export an array of floats to python

2007-02-22 Thread Peter Wuertz
Thank you! Thats the complete solution *g* -- http://mail.python.org/mailman/listinfo/python-list

Re: export an array of floats to python

2007-02-22 Thread sturlamolden
On Feb 22, 7:36 pm, "sturlamolden" <[EMAIL PROTECTED]> wrote: > npy_int dim = {480, 640}; /* whatever the size of your data, in C- > order */ oops... npy_int dim[] = {480, 640}; -- http://mail.python.org/mailman/listinfo/python-list

Re: export an array of floats to python

2007-02-22 Thread sturlamolden
On Feb 22, 5:40 pm, Peter Wuertz <[EMAIL PROTECTED]> wrote: > I'm writing a C module for python, that accesses a special usb camera. > This module is supposed to provide python with data (alot of data). Then > SciPy is used to fit the data. > > My question is, how to make python read from a C arra

Re: export an array of floats to python

2007-02-22 Thread Peter Wuertz
Travis Oliphant wrote: > Peter Wuertz wrote: >> Hi, >> >> I'm writing a C module for python, that accesses a special usb camera. >> This module is supposed to provide python with data (alot of data). >> Then SciPy is used to fit the data. >> > > Which version of scipy are you using? I'm using u

Re: export an array of floats to python

2007-02-22 Thread Larry Bates
Peter Wuertz wrote: > Hi, > > I'm writing a C module for python, that accesses a special usb camera. > This module is supposed to provide python with data (alot of data). Then > SciPy is used to fit the data. > > My question is, how to make python read from a C array? By reading the > documentati

Re: export an array of floats to python

2007-02-22 Thread Travis Oliphant
Peter Wuertz wrote: > Hi, > > I'm writing a C module for python, that accesses a special usb camera. > This module is supposed to provide python with data (alot of data). Then > SciPy is used to fit the data. > Which version of scipy are you using? > My question is, how to make python read fr