www.cerocom.com

2007-07-13 Thread Natalia
.. www.cerocom.com 
..
You will be able to ask yourself:
Is Internet a good investment for my company?
So that an investment would have to do I of this type?
Really is going to serve to me to have a Web site?
So that to be in Internet?

See some of the main advantages have a Web site:

· Increase the productivity and to generate more businesses with the
implementation of collaboration  rofe and integration maximizing the
value of Internet and networks IP.

· Offer solutions of Internet, integration and collaboration in
accordance with our clients, anyone is their size or trains, to
rofesional r to integrate their applications, to fortify their present
position in the market or to impel their growth, assuring
trustworthiness, discharge  rofesional qualification, and customized
service.

I invite it to cross the Web site and interiorice of the services
available.
www.cerocom.com
Contact:
Commercial direction:
Viamonte 783 Piso 3°
Capital Federal
(C1053ABO) Bs. As. Argentina

Tel/Fax: (54.11) 4322.1201

Celular: (54-9-11) (15) 5006.4384

Mail:  [EMAIL PROTECTED]

Web Site:  www.cerocom.com

-- 
http://mail.python.org/mailman/listinfo/python-list


www.cerocom.com

2007-07-16 Thread Natalia
.. www.cerocom.com 
..

You will be able to ask yourself:

Is Internet a good investment for my company?
So that an investment would have to do I of this type?
Really is going to serve to me to have a Web site?
So that to be in Internet?

See some of the main advantages have a Web site:

· Increase the productivity and to generate more businesses with the
implementation of collaboration  rofe and integration maximizing the
value of Internet and networks IP.

· Offer solutions of Internet, integration and collaboration in
accordance with our clients, anyone is their size or trains, to
rofesional r to integrate their applications, to fortify their present
position in the market or to impel their growth, assuring
trustworthiness, discharge  rofesional qualification, and customized
service.

I invite it to cross the Web site and interiorice of the services
available.

www.cerocom.com

Contact:

Commercial direction:
Viamonte 783 Piso 3°
Capital Federal
(C1053ABO) Bs. As. Argentina

Tel/Fax: (54.11) 4322.1201

Celular: (54-9-11) (15) 5006.4384

Mail:  [EMAIL PROTECTED]

Web Site:  www.cerocom.com

-- 
http://mail.python.org/mailman/listinfo/python-list


www.cerocom.com

2007-07-16 Thread Natalia
.. www.cerocom.com 
..

You will be able to ask yourself:

Is Internet a good investment for my company?
So that an investment would have to do I of this type?
Really is going to serve to me to have a Web site?
So that to be in Internet?

See some of the main advantages have a Web site:

· Increase the productivity and to generate more businesses with the
implementation of collaboration  rofe and integration maximizing the
value of Internet and networks IP.

· Offer solutions of Internet, integration and collaboration in
accordance with our clients, anyone is their size or trains, to
rofesional r to integrate their applications, to fortify their present
position in the market or to impel their growth, assuring
trustworthiness, discharge  rofesional qualification, and customized
service.

I invite it to cross the Web site and interiorice of the services
available.

www.cerocom.com

Contact:

Commercial direction:
Viamonte 783 Piso 3°
Capital Federal
(C1053ABO) Bs. As. Argentina

Tel/Fax: (54.11) 4322.1201

Celular: (54-9-11) (15) 5006.4384

Mail:  [EMAIL PROTECTED]

Web Site:  www.cerocom.com

-- 
http://mail.python.org/mailman/listinfo/python-list


www.cerocom.com

2007-07-30 Thread Natalia
.. www.cerocom.com 
..

You will be able to ask yourself:

Is Internet a good investment for my company?
So that an investment would have to do I of this type?
Really is going to serve to me to have a Web site?
So that to be in Internet?

See some of the main advantages have a Web site:

· Increase the productivity and to generate more businesses with the
implementation of collaboration  rofe and integration maximizing the
value of Internet and networks IP.

· Offer solutions of Internet, integration and collaboration in
accordance with our clients, anyone is their size or trains, to
rofesional r to integrate their applications, to fortify their present
position in the market or to impel their growth, assuring
trustworthiness, discharge  rofesional qualification, and customized
service.

I invite it to cross the Web site and interiorice of the services
available.

www.cerocom.com

Contact:

Commercial direction:
Viamonte 783 Piso 3°
Capital Federal
(C1053ABO) Bs. As. Argentina

Tel/Fax: (54.11) 4322.1201

Celular: (54-9-11) (15) 5006.4384

Mail:  [EMAIL PROTECTED]

Web Site:  www.cerocom.com

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: protobuf + pypy

2012-08-28 Thread Natalia Bidart
On Tue, Aug 21, 2012 at 6:55 PM, Pedro Larroy
 wrote:
> Hi
>
> Anyone knows if it's possible to use protobuffers with pypy?   Seems
> there isn't much info on the web about this.

So, in my experience, the easiest way to confirm if something works
with PyPy (when you can't find proper bibliography in the web) is to
try to install it in a pypy virtualenv [0]:

(my-pypy-env)nessita@dali:~/projects/pypy/my-pypy-env$ pip install protobuf
Downloading/unpacking protobuf
  Downloading protobuf-2.4.1.tar.gz (56Kb): 56Kb downloaded
  Storing download in cache at
/home/nessita/.pip_download_cache/http%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fprotobuf%2Fprotobuf-2.4.1.tar.gz
  Running setup.py egg_info for package protobuf

Requirement already satisfied (use --upgrade to upgrade): distribute
in ./site-packages/distribute-0.6.24-py2.7.egg (from protobuf)
Installing collected packages: protobuf
  Running setup.py install for protobuf
Skipping installation of
/home/nessita/projects/pypy/my-pypy-env/site-packages/google/__init__.py
(namespace package)

Installing 
/home/nessita/projects/pypy/my-pypy-env/site-packages/protobuf-2.4.1-py2.7-nspkg.pth
Successfully installed protobuf
Cleaning up...

(my-pypy-env)nessita@dali:~/projects/pypy/my-pypy-env$ pypy
Python 2.7.2 (341e1e3821ff, Jun 07 2012, 15:38:48)
[PyPy 1.9.0 with GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
And now for something completely different: ``Python 2.x is not dead''
>>>> from google.protobuf import descriptor

Seems to work :-) (though I have no app using it right now).

Cheers, Natalia.

[0] Instructions on how to create a PyPy virtualenv:
http://morepypy.blogspot.com.ar/2010/08/using-virtualenv-with-pypy.html
-- 
http://mail.python.org/mailman/listinfo/python-list


Instalação

2016-03-30 Thread natalia camargo
Não consigo instalar o python no meu Windows,gostaria de alguma ajuda ou 
esclarecimento 

Enviado do Email para Windows 10

-- 
https://mail.python.org/mailman/listinfo/python-list