You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(13) |
Dec
(7) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
|
Feb
(3) |
Mar
(5) |
Apr
(3) |
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
(4) |
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <11...@ms...> - 2003-08-16 03:47:14
|
-------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- |
|
From: <dv...@gm...> - 2003-08-04 18:22:02
|
El Mon, 4 Aug 2003 16:55:44 -0500 "Sonia" <si...@on...> escribió: > vale! > pues entonces..... > como puedo recorrer una matriz si solo me interesa una de las columnas, > mejor dicho: sumar una de sus columnas y ver cual es el elemento maximo, > minimo y la media. pero de solo una de sus columnas. > Si te interesan en especial las columnas puedes hacerte una matriz como una lista de columnas. Por ejemplo: 1 2 3 4 5 6 7 8 9 10 11 12 será: >>> matriz = [[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]] de esta manera, la columa 3 será: >>> matriz[2] [3, 7, 11] la suma de la columna? >>> reduce(lambda x, y: x+y, matriz[1]) 21 cual es el máximo? >>> max(matriz[1]) 11 y el mínimo? >>> min(matriz[1]) 3 y la media? >>> def media(v): >>> total = reduce(lambda x, y: x+y, v) >>> return float(total)/len(v) >>> media(matriz[1]) 7 Y ya está, potentillo en Python, eh? ;-) Saludos, David Villa |
|
From: <dv...@gm...> - 2003-08-01 12:06:04
|
El Thu, 31 Jul 2003 16:14:56 -0500 "Sonia" <si...@on...> escribió: > hola! alguien tiene ejercicios en python sobre matrices, cadenas y listas?? > gracias!! > Hola: Que quieres decir con ejercicios? Si lo quieres son problemas puedes coger cualquier libro de programación de cualquier lenguaje y hacerlos en Python. Si lo que quieres son ejemplos busca en internet, es bastante fácil encontrarlos. Saludos |
|
From: <dia...@ho...> - 2003-08-01 11:40:35
|
----- Original Message ----- From: <his...@li...> To: <his...@li...> Sent: Friday, August 01, 2003 12:07 AM Subject: Hispapyzope-python digest, Vol 1 #45 - 1 msg > Send Hispapyzope-python mailing list submissions to > his...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/hispapyzope-python > or, via email, send a message with subject or body 'help' to > his...@li... > > You can reach the person managing the list at > his...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Hispapyzope-python digest..." > > > Today's Topics: > > 1. ayuda con python! (Sonia) > > --__--__-- > > Message: 1 > From: "Sonia" <si...@on...> > To: <his...@li...> > Date: Thu, 31 Jul 2003 16:14:56 -0500 > Subject: [HispaPython] ayuda con python! > > This is a multi-part message in MIME format. > > ------=_NextPart_000_003D_01C3577E.E21AAA40 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > hola! alguien tiene ejercicios en python sobre matrices, cadenas y = > listas?? > gracias!! > > ------=_NextPart_000_003D_01C3577E.E21AAA40 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META content=3D"text/html; charset=3Diso-8859-1" = > http-equiv=3DContent-Type> > <META content=3D"MSHTML 5.00.2314.1000" name=3DGENERATOR> > <STYLE></STYLE> > </HEAD> > <BODY bgColor=3D#ffffff> > <DIV><FONT color=3D#000080 face=3DArial size=3D2>hola! alguien tiene = > ejercicios en=20 > python sobre matrices, cadenas y listas??</FONT></DIV> > <DIV><FONT color=3D#000080 face=3DArial = > size=3D2>gracias!!</FONT></DIV></BODY></HTML> > > ------=_NextPart_000_003D_01C3577E.E21AAA40-- > > > > > --__--__-- > > _______________________________________________ > Hispapyzope-python mailing list > His...@li... > https://lists.sourceforge.net/lists/listinfo/hispapyzope-python > > > End of Hispapyzope-python Digest > |
|
From: Sonia <si...@on...> - 2003-07-31 14:15:02
|
hola! alguien tiene ejercicios en python sobre matrices, cadenas y = listas?? gracias!! |
|
From: Jose A. D. <dia...@ho...> - 2003-07-03 11:50:58
|
_________________________________________________________________ Charla con tus amigos en línea mediante MSN Messenger: http://messenger.yupimsn.com/ |
|
From: Jairo C. G. <ca...@ne...> - 2003-06-30 23:19:24
|
confirm 508027 |
|
From: <ali...@ya...> - 2003-06-28 17:40:10
|
--------------------------------- Do You Yahoo!? Todo lo que quieres saber de Estados Unidos, América Latina y el resto del Mundo. Visíta Yahoo! Noticias. |
|
From: Marcos P. <ra...@ar...> - 2003-06-23 11:28:33
|
http://py.vaults.ca/apyllo.py?find=postgresql http://www.sindominio.net/cgi-bin/wh2001/wiki.pl?PythonApliReal ¿Buscas algún módulo en concreto? Esta lista está en desuso, por favor, pásate a http://listas.aditel.org/listinfo/python-es El lun, 23-06-2003 a las 13:13, Moises escribió: > Donde puedo encontrar codigo para el acceso a Postgresql con Phyton?? > es urgente > Moises > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: INetU > Attention Web Developers & Consultants: Become An INetU Hosting Partner. > Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! > INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php > _______________________________________________ > Hispapyzope-python mailing list > His...@li... > https://lists.sourceforge.net/lists/listinfo/hispapyzope-python |
|
From: Moises <mo...@bl...> - 2003-06-23 11:12:43
|
Donde puedo encontrar codigo para el acceso a Postgresql con Phyton?? es urgente Moises |
|
From: Alex M. <al...@st...> - 2003-04-09 15:23:03
|
Hello folks,
the EuroPython Conference 2003 (EPC2003) will take place in
Charleroi, Belgium, on June 25-27, 2003. We are looking for
participation in the various conference tracks:
Python Frameworks
Python Language
Python in Business
Python in Science and Industry
Zope
in the form of talks of 30 or 45 minutes, and/or tutorials of 2
hours. Anything cool and interesting about Python is welcome:
if you fear it might not fit in the tracks, submit it anyway,
we'll do our best to find a way to let you present it!
The EuroPython Conference is held in English. Entry to the
Conference is free for speakers, except for a EUR 50,00 catering
charge. Travel and lodging expenses for speakers are up to the
speakers (no financial assistance is available from EPC2003).
Deadline for all EPC2003 submissions is Monday, April 21, 2003.
For all details, see http://www.europython.org/ -- in particular:
track descriptions http://www.europython.org/sessions/descriptions
official CFP http://www.europython.org/sessions/cft
to submit, visit http://www.europython.org/Talks/callFor
See you in Charleroi, I hope!
Alex
|
|
From: svetlana <sve...@fr...> - 2003-02-27 16:46:39
|
Svetlana`s photoalbum "My way to the fine art nude photography..." http://www.geocities.com/svetastrip |
|
From: <mai...@me...> - 2002-09-11 13:23:47
|
<=1B$B;v6H<TL>=1B(B>=1B$B-k%(%/%7%9=1B(B<=1B$BAw?.<T=1B(B>=1B$B-k%(%/%7%9= =1B(B<=1B$BAw?.<T!&;v6H<T=1B(BURL>=1B$B!!=1B(Bhttp://plaza15.mbn.or.jp/~1= 234/=1B$B$3$N=1B(B=D2=B0=D9=1B$B$O9-9p$G$9!#G[?.ITMW$NJ}$O=1B(B mailstop@= melcon-c.com =1B$BKx$4O"Mm2<$5$$!#G[?.$rDd;_CW$7$^$9=1B(B(=1B$BI,$:G[?.D= d;_$9$k%"%I%l%9$G$4JV?.2<$5$$!K=1B(B =1B$B=3Dw@-2q0w5^A}Cf!*:#$,%A%c%s%9!*=1B(B http://www.melcon-c.com =1B$B$*;n$7%]%$%s%H=1B(B50pt=1B$B$GH`=3Dw$r=1B(BGET! http://www.melcon-c.com =1B$B$^$:$OEPO?$7$F$M!*=1B(B http://www.melcon-c.com |
|
From: <mai...@25...> - 2002-08-19 05:14:36
|
=1B$B!J6H<TL>!K=1B(B=B5=CC=A8=BD25=1B$B"($3$N=1B(B=D2=B0=D9=1B$B$O9-9p$G$= 9!#G[?.ITMW$NJ}$O=1B(B mai...@25... =1B$BKx$4O"Mm2<$5$$!#G[?.$= rDd;_CW$7$^$9=1B(B(=1B$BI,$:G[?.Dd;_$9$k%"%I%l%9$G$4JV?.2<$5$$!K=1B(B (=1B$BAw?.<T=1B(BURL=1B$B!K=1B(Bhttp://www.vesta.dti.ne.jp/~yossy50/=1B$B= !!=1B(B =1B$B=3Dw@-2q0w5^A}Cf!*CK@-2q0w$,>/$J$$:#$,%A%c%s%9!*=1B(B http://www.2525e-net.com =1B$B%"%]N(H472!*$^$:$O$*;n$7%]%$%s%H$GM7$s$G$M!*=1B(B http://www.2525e-net.com |
|
From:
<me...@ri...> - 2002-08-17 08:22:05
|
<事業者>ジュエリーノン 2度と配信いたしませんので配信不要の方はこのままご返信くださいmeruma@rio.odn.ne.jp <送信者>mcc情報http://www.vesta.dti.ne.jp/~yossy50 <内容>無料プレゼント ●リニューアルオープン記念につきシルバーリングまたは18金ピアスを500名様にプレゼントいたします。応募方法はこちらからどうぞ http://www2.odn.ne.jp/~cjy62800/ |
|
From: Ernesto R. <ae...@re...> - 2002-05-17 21:23:16
|
Estimados compa=F1eros, Estamos buscando hasta tres empresas, preferentemente espa=F1olas por = razones de cercan=EDa, para participar en el desarrollo de un groupware = avanzado. La especificaci=F3n inicial se encuentra en: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/gruppy/gruppy/d= oc/Especificaci=F3n.0.2.doc?rev=3D1.1.1.1 en formato doc. Se trata de un software un tanto ambicioso con un per=EDodo de = desarrollo de aproximadamente 2 a=F1os con grandes expectativas de aceptaci=F3n. Nuestra idea es que las empresas participantes aporten un empleado a = media jornada durante el per=EDodo de desarrollo en =E1mbitos como = ingenier=EDa software (modelado, dise=F1o de la arquitectura, especificaci=F3n y otros), = programaci=F3n y desarrollo, dise=F1o de los interfaces de usuario (HTML/CSS2, = javascript, etc.), Gesti=F3n de proyecto y mantenimiento del sitio Web del proyecto. El resultado ser=E1 un software bajo licencia de c=F3digo abierto, tipo = GPL o similar. Las empresas partipantes del proyecto, generar=E1n sus ingresos a partir = de la instalaci=F3n, configuraci=F3n, formaci=F3n, personalizaci=F3n etc., es = decir, todos los servicios para implantar y mantener el software en los clientes. Si est=E1is interesados o conoc=E9is empresas que lo est=E9n, rogamos = que se pongan en contacto con nosotros. Atentamente, Erny SICEm, s.l. |
|
From: moha y. <m_y...@ya...> - 2002-05-15 13:42:43
|
PERSONAL/CONFIDENTIAL PROPOSAL My name is Mohammed Yadudu, a Lawyer, and very active in the legal practice in Nigeria. I was also a lawyer to the late President, General Sanni Abacha. Now General Abacha is dead, and Mohammed the first son is facing a lot of persecution due to his involvement in anti democracy activities during the rule of his late father. Also there are alleged fraudulent activities that Mohammed has been linked to with the father and, the government of today is after the family to recover everything. They have claimed all the familys wealth and I am making this contact on behalf of Mrs. Mariam Abacha, the wife, not minding the consequences, but hoping that you would understand our predicament hence the need for your urgent assistance and co-operation. My aim of contacting you is to crave your indulgence to assist us in securing some funds, abroad for safe keeping which incidentally is part of the family wealth. Fortunately with the assistance and co-operation of a local banker, we were able to safe guard some of the funds pending when the whole situation will be calm. With the present agreement reached by Mrs.Abacha to return most of their funds to the federal Government, we are now in a position to take out the remaining funds that had been left in Nigeria. The funds in question were machine packed in trunk boxes said to contain sensitive photographic materials. We now wish to relocate this funds in a foreigners name to avoid any trace. Now that we are in a democratic government, this is our opportunity to remove the money, and we are willing to offer you 15% of the funds after the transaction for your co-operation. Note that this money was defaced for security reasons and will be refaced by a chemist as soon all arrangements are concluded by both of us. The amount involved is $140Million(One hundred and forty million dollars) All I need from you is an assurance that you can handle the amount involved comfortably and that I can also trust you with this very arrangement. Be rest assured that there is no risk involved since I have taken care of everything. I want you to immediately inform me of your willingness in assisting and co-operating with us, so that I can send you full details of this transaction and let us make arrangement for a meeting and discuss at length on how to transfer/invest this funds. Also furnish me with your private Tel/Fax Numbers (Private) for a personal contact with you. Finally, I am trusting on your full understanding on this, hoping that there will be absolute confidentiality. Awaiting with interest your response and hoping to develop good business relationship with you. Yours sincerely, Mohammed Yadudu M_y...@ex... |
|
From: <jd...@nu...> - 2002-04-08 12:04:49
|
Creo que el módulo "smtplib" solamente es para enviar correos,
no para construirlos.
Si puedes, utiliza Python 2.2, tiene un nuevo módulo llamado
"email" que creo es el que resolverá tu problema.
Si no puedes utilizar Python 2.2 tendrás que recurrir a alguno
de los siguientes módulos: rfc822, mimetools, multifile.
jma...@an... wrote:
>Hola buenas
>
> Estoy intentando enviar un correo utilizando el python y no me es
>posible que en vez de ir en tipo texto vaya todo en un archivo adjunto.
>Por favor si alguien me puede echar un cable. Quiero enviar un archivo
>*.txt como fichero adjunto.
> De momento lo hago así pero no se como adjuntar archivos a los
>mensajes.
>
>#!/usr/bin/env python
>import smtplib
>
>pax=open('/disco2/errores/datos/personas.dat','r')
>
>server = smtplib.SMTP('192.168.14.2')
>server.set_debuglevel(1)
>persona=pax.readline()
>while persona!="":
> fic=open('/disco2/errores/datos/salida.txt','r')
> server.sendmail('ad...@pr...',persona,fic.read())
> persona=pax.readline()
> fic.close()
>pax.close()
>server.quit()
>
> Muchisimas gracias,
>
>
> Salu2,
>
> Jesús
>
>
>_______________________________________________
>Hispapyzope-python mailing list
>His...@li...
>https://lists.sourceforge.net/lists/listinfo/hispapyzope-python
>
--
J. David Ibáñez, Nuxeo.com
Python programmer (http://www.python.org)
|
|
From: Chema C. <che...@wa...> - 2002-04-08 12:03:53
|
Hola Jesús: Para enviar ficheros adjuntos debes codificar el mensaje en formato MIME (rfc822). Para ello debes utilizar el módulo 'email'. En la documentación de este módulo tienes ejemplos bastante claros que puedes utilizar para lo que necesitas. PD: No utilizes esta lista. Nos hemos ido a pyt...@ad... (http://listas.aditel.org/listinfo.py/python-es) Saludos, Chema Cortés --------- Original message -------- From: jma...@an... To: his...@li... <his...@li...> Subject: [HispaPython] Problema al enviar e-mails Date: 04-08-02 12:33 > Hola buenas Estoy intentando enviar un correo utilizando el python y no me es posible que en vez de ir en tipo texto vaya todo en un archivo adjunto. Por favor si alguien me puede echar un cable. Quiero enviar un archivo *.txt como fichero adjunto. De momento lo hago así pero no se como adjuntar archivos a los mensajes. |
|
From: <jma...@an...> - 2002-04-08 11:32:21
|
Hola buenas
Estoy intentando enviar un correo utilizando el python y no me es
posible que en vez de ir en tipo texto vaya todo en un archivo adjunto.=
Por favor si alguien me puede echar un cable. Quiero enviar un archivo=
*.txt como fichero adjunto.
De momento lo hago as=ED pero no se como adjuntar archivos a los
mensajes.
#!/usr/bin/env python
import smtplib
pax=3Dopen('/disco2/errores/datos/personas.dat','r')
server =3D smtplib.SMTP('192.168.14.2')
server.set_debuglevel(1)
persona=3Dpax.readline()
while persona!=3D"":
fic=3Dopen('/disco2/errores/datos/salida.txt','r')
server.sendmail('ad...@pr...',persona,fic.read())
persona=3Dpax.readline()
fic.close()
pax.close()
server.quit()
Muchisimas gracias,
Salu2,
Jes=FAs=
|
|
From: Juan D. P. <jd...@nu...> - 2002-03-15 14:58:32
|
Garikoitz Araolaza wrote:
> Hola:
>
> Alguien sabe dónde puedo encontrar información sobre qué hay que hacer
> para que las clases creadas en un producto Python aparezcan para
> heredarse como BaseClasses en un ZClass ?
>
> (Parece un trabalenguas...)
>
> Gari
>
>
Esta es una pregunta más bien para la lista de Zope.
El producto Localizer hace lo siguiente:
import ZClasses
def initialize(context):
ZClasses.createZClassForBase(LocalPropertyManager, globals(),
'LocalPropertyManager',
'LocalPropertyManager')
--
J. David Ibáñez, Nuxeo.com
Zope developer (http://www.zope.org)
|
|
From: Garikoitz A. <ga...@ei...> - 2002-03-15 14:34:55
|
Hola: Alguien sabe d=F3nde puedo encontrar informaci=F3n sobre qu=E9 hay que hacer= para=20 que las clases creadas en un producto Python aparezcan para heredarse como= =20 BaseClasses en un ZClass ? (Parece un trabalenguas...) Gari _________________________________________________________ Aurki Euskara hutsezko bilatzailea http://www.aurki.com Zure laguntza behar dugu. Egin zaitez editore! |
|
From: Garikoitz A. <ga...@ei...> - 2002-03-10 21:03:26
|
>No se si me he explicado muy bien. Si alguno conoce el programa Log >Analyzer, esa es la idea. >Alquién me puede decir por donde empezar, existe algún modulo de >Python pensado ya para esto?. > Existe un módulo que trae definidas multitud de funciones para analizar logs de servidor. Se llama weblog. busca "python weblog" en Google y ya lo encontrarás. Suerte!! Gari |
|
From: Jose O. <jo...@ho...> - 2002-03-10 14:07:05
|
Hola a todos y todas. Me estoy introduciendo en Python y necesito ayuda para mi primer = proyecto. No tengo experiencia en programci=F3n "real". Conozco = javascript, HTML y actionscript pero eso es todo. Para mi empresa quiero desarrollar un programa que lea los log de un = servidor y nos de estadisticas de acceso al sitio web, tales como = n=FAmero de visitas, tiempos, etc. Todo eso ya est=E1 (mas o menos) en = el log, solo necesito una manera de recorrer esa informaci=F3n y = agruparla para proceasarla despues.=20 No se si me he explicado muy bien. Si alguno conoce el programa Log = Analyzer, esa es la idea.=20 Alqui=E9n me puede decir por donde empezar, existe alg=FAn modulo de = Python pensado ya para esto?. Muchas gracias por adelantado.=20 |
|
From: <in...@wa...> - 2002-03-08 07:15:21
|
=D5=E2=CA=C7=D2=BB=B8=F6HTML=B8=F1=CA=BD=B5=C4=D3=CA=BC=FE |