On Tue, 19 Mar 2013 15:07:54 +0100, Neil Cerutti wrote:
On 2013-03-18, Ana Dion?sio wrote:
But I still get the error and I use Excel 2010.
I'm trying to export data in a list to Excel
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files,
On Mon, 18 Mar 2013 16:50:21 +0100, Steven D'Aprano
wrote:
On Mon, 18 Mar 2013 08:28:46 -0700, Ana Dionísio wrote:
Is there some way to go around this limit? I need to import data from
python to excel and I need 1440 columns for that.
That's an Excel question, it has nothing to do with Py
On Thu, 07 Mar 2013 13:25:58 +0100, Νίκος Γκρ33κ
wrote:
Τη Πέμπτη, 7 Μαρτίου 2013 1:51:42 μ.μ. UTC+2, ο χρήστης Michael Ross
έγραψε:
On Thu, 07 Mar 2013 12:27:03 +0100, Νίκος Γκρ33κ
wrote:
> Τη Πέμπτη, 7 Μαρτίου 2013 11:06:27 π.μ. UTC+2, ο χρήστης Νίκος Γκρ33κ
> έγραψε:
>&g
On Thu, 07 Mar 2013 12:27:03 +0100, Νίκος Γκρ33κ
wrote:
Τη Πέμπτη, 7 Μαρτίου 2013 11:06:27 π.μ. UTC+2, ο χρήστης Νίκος Γκρ33κ
έγραψε:
Any ideas about the error please?
I can assure you all the statemnt are correct ebcause they work in
python v2.6.6
can someone help this issue so my w
On Thu, 07 Mar 2013 02:28:10 +0100, Chris Kaynor
wrote:
I actually just tried that, and the results weren't very good.
Using the doc's search feature, the "Reporting Bugs" (and the "About
these documents") page >was significantly down the page (about 2/3 of
the way) - not the most obviou
On Thu, 07 Mar 2013 00:18:44 +0100, Νίκος Γκρ33κ
wrote:
Τη Τετάρτη, 6 Μαρτίου 2013 2:06:33 π.μ. UTC+2, ο χρήστης Michael Ross
έγραψε:
check_output is available as of Python 2.7
I guess you are still on version 2.6 ?
I can access each of these from my jailed shell user account without
On Wed, 06 Mar 2013 12:52:00 +0100, Mark Lawrence
wrote:
On 06/03/2013 07:45, Νίκος Γκρ33κ wrote:
I'am using this snipper to read a current directory and insert all
filenames into a databse and then display them.
But what happens when files are get removed form the directory?
The inserted
On Wed, 06 Mar 2013 00:39:31 +0100, Νίκος Γκρ33κ
wrote:
htmldata = subprocess.check_output( '/home/nikos/public_html/cgi-bin/' +
htmlpage )
htmldata = subprocess.check_output( ['/usr/bin/python',
'/home/nikos/public_html/cgi-bin/' + htmlpage] )
Both of the above statemnts fail i'am afr
On Tue, 05 Mar 2013 23:47:18 +0100, Νίκος Γκρ33κ
wrote:
Thank you very much! This is what i was looking for and here is my code
after receiving your help.
So, with the command you provided to me i can actually run the .py
script ans save its output and then append from there!! Great!
Her
On Tue, 05 Mar 2013 21:04:59 +0100, Νίκος Γκρ33κ
wrote:
#open html template
if htmlpage.endswith('.html'):
f = open( "/home/nikos/public_html/" + htmlpage )
htmldata = f.read()
counter = ''' mailto:supp...@superhost.gr";> src="/data/images/ma
On Sun, 24 Feb 2013 20:40:05 +0100, wrote:
> if (some statement): # short form
>
> rather than
>
> if (some statement == true): # long form
What all those ugly brackets are for?
Mark,
Back in the day when C was king, or take many newer long established
languages (C#,
On Fri, 22 Feb 2013 01:12:40 +0100, Ferrous Cranus
wrote:
Please i have been trying hours for this:
Don't do that: Spending hours on being stuck. Take a break. Call it a
night.
Brain needs time to unstick itself.
Besides:
from datetime import date
entry='31 03 2013'
day, month,
On Fri, 22 Feb 2013 00:08:01 +0100, Ferrous Cranus
wrote:
Τη Παρασκευή, 22 Φεβρουαρίου 2013 12:03:59 π.μ. UTC+2, ο χρήστης Michael
Ross έγραψε:
On Thu, 21 Feb 2013 22:22:15 +0100, Ferrous Cranus
wrote:
> Τη Πέμπτη, 21 Φεβρουαρίου 2013 10:14:13 μ.μ. UTC+2, ο χρήστης MRAB
>
On Thu, 21 Feb 2013 22:22:15 +0100, Ferrous Cranus
wrote:
Τη Πέμπτη, 21 Φεβρουαρίου 2013 10:14:13 μ.μ. UTC+2, ο χρήστης MRAB
έγραψε:
On 2013-02-21 19:38, Ferrous Cranus wrote:
> import datetime from datetime
Should be:
from datetime import datetime
>
> try:
> datetime.strpt
On Sun, 30 Dec 2012 19:57:31 +0100, Nicholas Cole wrote:Dear List,I'm hoping to use the tarfile module in the standard library to move some files between computers. I can't see documented anywhere what this library does with userids and groupids. I can't guarantee that the computers involved wil
On Fri, 28 Sep 2012 13:37:36 +0200, Gilles wrote:
Hello
I'm trying to run my very first FastCGI script on an Apache shared
host that relies on mod_fcgid:
==
#!/usr/bin/python
from fcgi import WSGIServer
import cgitb
# enable debugging
cgitb.enable()
def myapp(environ, start_respo
Am 04.07.2012, 21:37 Uhr, schrieb Paul Rubin :
I just came across this (https://gist.github.com/1208215):
import sys
import ctypes
pyint_p = ctypes.POINTER(ctypes.c_byte*sys.getsizeof(5))
five = ctypes.cast(id(5), pyint_p)
print(2 + 2 == 5) # False
five.contents[five.con
17 matches
Mail list logo