unittest.TestCase.assertRaisesRegex throws DeprecationWarning

2018-07-31 Thread Uri Even-Chen
ps://travis-ci.org/urievenchen/speedy-net/jobs/410482655 (by the way, with Python 3.4.6 the tests pass). Do you know what is the problem and why I receive these deprecation warnings? Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.sp

Re: pip install -r requirements.txt fails with Python 3.6 on Windows

2017-01-05 Thread Uri Even-Chen
now. What are the reasons to upgrade Python to 3.6? Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <h

Re: Python for WEB-page !?

2017-01-05 Thread Uri Even-Chen
I recommend starting with Python 3, I also use it (3.5.2) for my Django projects - Speedy Net and Speedy Match. Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen>

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread Uri Even-Chen
. What are the reasons to upgrade Python to 3.6? Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <http://www.li

pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread Uri Even-Chen
llow\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Uri\AppData\Local\Temp\pip-1464cmd1-record\install-record.txt --single-version-ex

Re: ImportError: The ``fake-factory`` package is now called ``Faker``.

2016-12-22 Thread Uri Even-Chen
Thank you, I found out that pip freeze returned more packages than what we had in our requirements.txt file, so I upgraded them and added them to the file. I also upgraded to Faker==0.7.7 Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http

ImportError: The ``fake-factory`` package is now called ``Faker``.

2016-12-20 Thread Uri Even-Chen
alled ``Faker``. Please update your requirements. What is the problem? We didn't update our requirements recently. Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenche

Re: Free Python e-books from O'Reilly

2016-10-10 Thread Uri Even-Chen
I think it's good that so many free books are about Python, more than any other specific programming language. But I haven't read any of them yet. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www

Pyjs

2016-08-16 Thread Uri Even-Chen
clicking on them it will set the input to a specific number, such as 2, 3, 4 or 900. And then the program will calculate the square root of this number. I also want to create another program which calculates e^x (default: x=1). The web app should be mobile-friendly. Thanks, Uri. *Uri E

Re: I am new to python. I have a few questions coming from an armature!

2016-08-15 Thread Uri Even-Chen
*Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <http://www.linkedin.com/in/urievenchen> <http://twitter.com/urievenchen&g

Re: I'm looking for a part-time job in Python / Django

2016-08-15 Thread Uri Even-Chen
Thank you Chris! Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <http://www.linkedin.com/in/urievenchen> &

I'm looking for a part-time job in Python / Django

2016-08-14 Thread Uri Even-Chen
To python-list@python.org, I'm looking for a part-time job in Python / Django, do you know anything? I live in Herzliya, Israel. I can't relocate but I can work from home. You can see my CV on LinkedIn. Please let me know if you have any job for me. Thanks, Uri. *Uri Even-Chen* [im

Re: Installing Python 3 on Windows

2016-08-02 Thread Uri Even-Chen
Thank you, repair worked! I already have py.ini and don't want to add shebangs, I have at least 50 Python files and I don't want to edit all of them. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri

Re: Installing Python 3 on Windows

2016-08-02 Thread Uri Even-Chen
with the launcher? I read this http://stackoverflow.com/questions/5087831/how-should-i-set-default-python-version *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.googl

Re: Installing Python 3 on Windows

2016-08-02 Thread Uri Even-Chen
I don't understand. How do I use the Python Launcher? I didn't find such an option when installing Python 3. http://screencast.com/t/mBXfyMw4jpa http://screencast.com/t/FidjuB68aJ5G *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Web

Installing Python 3 on Windows

2016-08-02 Thread Uri Even-Chen
installed - python-2.7.12.msi and python-3.5.2.exe >python --version Python 2.7.12 >assoc .py .py=Python.File >ftype Python.File Python.File="C:\Python27\python.exe" "%1" %* By the way, it there a way to print the Python version from Python? Thanks, Uri. *Uri Even-Chen

Re: Operator precedence problem

2016-06-05 Thread Uri Even-Chen
My suggestion: Never write expressions, such as 2 ** 3 ** 2 or even 2 * 4 + 5, without parentheses. Always add parentheses - 2 ** (3 ** 2) (or (2 ** 3) **2) or (2 * 4) + 5 (or 2 * (4 + 5)). *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http

Re: python domain in China. This showed up on Python list

2016-03-10 Thread Uri Even-Chen
I don't register domain names in countries - any domain name which ends with 2 letters. If you want you can register my name in .cn or any other country, I don't care. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.

Re: Encrypted web mail

2015-08-15 Thread Uri Even-Chen
Hi Dennis, On Sat, Aug 15, 2015 at 7:35 PM, Dennis Lee Bieber wrote: > On Sat, 15 Aug 2015 12:47:17 +0300, Uri Even-Chen > declaimed the following: > > >To Python, Django and Speedy Mail Software developers, > > > >Is it possible to make Speedy Mail encrypted?

Re: Encrypted web mail

2015-08-15 Thread Uri Even-Chen
Hi Michael, Thanks for the feedback. Actually the passwords on my webmail in 2000 to 2005 were not encrypted, but I agree with you that passwords should be always encrypted. Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http

Re: Encrypted web mail

2015-08-15 Thread Uri Even-Chen
source code. Anyway thanks for the feedback! Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <http://www.linkedin.com/i

Encrypted web mail

2015-08-15 Thread Uri Even-Chen
nal, like his thoughts. I don't want the police to read my mail and it's similar to reading my thoughts. Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> &

Re: pyjs - a compiler from Python to JavaScript

2015-08-12 Thread Uri Even-Chen
Thank you Billy, we will consider using Brython. Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.facebook.com/urievenchen> <http://plus.google.com/+urievenchen> <http://www.

Re: pyjs - a compiler from Python to JavaScript

2015-08-11 Thread Uri Even-Chen
edy Mail Software we are developing (which will be free software & open source). I'm looking forward to launching Speedy Mail as an alternative to Gmail. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <htt

Re: pyjs - a compiler from Python to JavaScript

2015-08-11 Thread Uri Even-Chen
Thanks Fabio, it's very interesting. Are you related to Pyjeon Software? Do we have to pay to use RapydScript? Is it ready for production? *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.face

Re: pyjs - a compiler from Python to JavaScript

2015-08-11 Thread Uri Even-Chen
for the client side programming. And I don't mind if they use a compiler or an interpreter or any other method to run Python in the client side, as long as it works. But without using jQuery and other plugins it would be very hard to use these projects in production. Uri. *Uri Even-Chen* [i

pyjs - a compiler from Python to JavaScript

2015-08-10 Thread Uri Even-Chen
is it possible to use Django (in the client side) and JavaScript frameworks such as jQuery, jQuery UI and jQuery plugins together with pyjs? Thanks, Uri. *Uri Even-Chen* [image: photo] Phone: +972-54-3995700 Email: u...@speedy.net Website: http://www.speedysoftware.com/uri/en/ <http://www.fac