Re: any one used moviepy please come in!!! I need help, thanks!

2017-02-23 Thread Billy Earney
imagemagick (ie, convert) has a policy.xml file that stops you from accessing any resource that starts with '@'. type 'identify -list policy' the first line should tell you where your policy.xml file is located. My policy.xml file is lcoated at /etc/ImageMagick-6/policy.xml open that file, and

Re: pyjs - a compiler from Python to JavaScript

2015-08-12 Thread Billy Earney
Uri, Brython on the other hand, tries to stay true to python (python compatible). As stated before it doesn't compile to stand alone Javascript, but the compile time is usually minimal. Access to Javascript libraries is supported. You really should give it a try.. http://brython.info Billy

Re: pyjs - a compiler from Python to JavaScript

2015-08-10 Thread Billy Earney
Uri, It has been a few years since I have messed with py2js. Have you checked out brython? http://brython.info It supports javascript libraries such as jQuery, raphael.js, etc. Billy On Fri, Aug 7, 2015 at 6:00 AM, Uri Even-Chen u...@speedy.net wrote: To Python developers, Are you

Re: Pure Python Data Mangling or Encrypting

2015-06-24 Thread Billy Earney
Freenet seems to come to mind.. :) On Wed, Jun 24, 2015 at 4:24 PM, Grant Edwards invalid@invalid.invalid wrote: On 2015-06-24, Randall Smith rand...@tnr.cc wrote: On 06/24/2015 01:29 PM, Grant Edwards wrote: On 2015-06-24, Randall Smith rand...@tnr.cc wrote: On 06/24/2015 06:36 AM,

a python pitfall

2015-05-14 Thread Billy Earney
Hello friends: I saw the following example at http://nafiulis.me/potential-pythonic-pitfalls.html#using-mutable-default-arguments and did not believe the output produced and had to try it for myself def foo(a,b,c=[]): c.append(a) c.append(b) print(c) foo(1,1) foo(1,1) foo(1,1)

Re: seek operation in python

2015-04-29 Thread Billy Earney
if your filename is input.cpp, you first line of code should be: file=open(input*.cpp*,r) On Wed, Apr 29, 2015 at 1:26 PM, siva sankari R buddingros...@gmail.com wrote: There is a file named input.cpp(c++ file) that contains some 80 lines of code. --

Re: Python implementations in JavaScript

2015-02-14 Thread Billy Earney
Jonathan, There is Brython. It has been actively developed for a few years now. It is missing some advance python features, but is becoming more python 3.x compliant every day. You should check it out, http://brython.info You ask, are any of the implementations ready to rely on? For

Re: Future of python on android

2014-12-25 Thread Billy Earney
try kivy, instead of sl4a http://kivy.org/ I believe in the past year or two, the python foundation gave a grant to kivy to add further functionality.. According to wikipedia http://en.wikipedia.org/wiki/Guido_van_Rossum Guido works for dropbox. Billy On Thu, Dec 25, 2014 at 9:31 AM,

PySchool.net, kickstarter campaign

2014-12-14 Thread Billy Earney
the technological burdens of hosting programming classes, and help compile resources to help produce lesson plans, etc. Here's the campaign link: https://www.kickstarter.com/projects/2030013583/pyschoolnet-advancing-python-in-the-classroom Feel free to check it out.. :) Billy Earney -- https

Re: Python console rejects an object reference, having made an object with that reference as its name in previous line

2014-12-14 Thread Billy Earney
It looks like the last line (producer_entries...) is not indented at the same extent as the previous line. Maybe this is causing the issue? On Sun, Dec 14, 2014 at 10:15 AM, Simon Evans musicalhack...@yahoo.co.uk wrote: Dear Python programmers, Having input the line of code in text: cd Soup

Re: PySchool.net, kickstarter campaign

2014-12-14 Thread Billy Earney
risk there as well. billy On Sun, Dec 14, 2014 at 5:26 PM, Chris Angelico ros...@gmail.com wrote: On Mon, Dec 15, 2014 at 2:07 AM, Billy Earney billy.ear...@gmail.com wrote: Students can create, edit, load, save, and execute Python scripts directly in the browser. Importantly

Re: PySchool.net, kickstarter campaign

2014-12-14 Thread Billy Earney
Thanks.. I appreciate your contribution! On Sun, Dec 14, 2014 at 5:48 PM, Chris Angelico ros...@gmail.com wrote: On Mon, Dec 15, 2014 at 10:41 AM, Billy Earney billy.ear...@gmail.com wrote: Yes, you are correct. The scripts get compiled to javascript and then executed in the browser

Re: Brython (Python in the browser)

2013-12-27 Thread billy . earney
Awesome.. Wonderful work! -- https://mail.python.org/mailman/listinfo/python-list

Re: Is Python in the browser a dead-end ?

2011-10-28 Thread Billy Earney
I believe that python maybe had missed an opportunity to get in early and be able to take over a large market share from javascript. But that doesn't mean python is dead in the browser, it just means it will have more competition if it wants to replace javascript for Rich Internet Applications.

Re: Java is killing me! (AKA: Java for Pythonheads?)

2011-08-12 Thread Billy Earney
Look into jython. You might be able to run your python code, directly in java. :) http://www.jython.org/ On Fri, Aug 12, 2011 at 12:02 PM, kj no.em...@please.post wrote: *Please* forgive me for asking a Java question in a Python forum. My only excuse for this no-no is that a Python forum

Re: in house pypi?

2011-03-24 Thread Billy Earney
Another possible solution, would be to use urlimport http://pypi.python.org/pypi/urlimport/ http://pypi.python.org/pypi/urlimport/if the packages are 100% python (no c, etc), you could create a single repository, serve that via a web server, and users could easy import modules without even

looking for new members to join grid of storage nodes using tahoe-lafs which is implemented in python.

2011-02-02 Thread Billy Earney
Would you like to be able to back up ~1 TB of data to secure, highly-reliable, off-site storage, for free? By highly-reliable I mean that your data should survive pretty much anything short of the collapse of civilization. By free I mean no monetary cost, although you have to provide some

Re: Developing a program to make a family tree.

2011-01-14 Thread Billy Earney
try http://gramps-project.org/, which is created in python.. :) On Fri, Jan 14, 2011 at 1:39 PM, Ata Jafari a.j.romani...@gmail.com wrote: Hi there. I'm trying to develop a program like family tree maker. I have all information, so there is no need to search on the net. This must be

RE: Visual Python programming and decompilers?

2010-03-12 Thread Billy Earney
Ludolph, This reminds me of the orange project which is developed in python. http://www.ailab.si/orange/ It is actually for data mining, but many of the concepts could be used for a more general programming structure. Billy -Original Message- From:

RE: checking 'type' programmatically

2009-11-20 Thread Billy Earney
Try looking at the function 'isinstance', so for example if isinstance(obj, str): print object is a string.. elif isinstance(obj, int): print object is an integer.. -Original Message- From: python-list-bounces+billy.earney=gmail@python.org

RE: Web development with Python 3.1

2009-10-27 Thread Billy Earney
I would agree with Alan. Most of the libraries you should use are compatible with the 2.x series.. I still use versions 2.5 and 2.6 for all development. From: python-list-bounces+billy.earney=gmail@python.org [mailto:python-list-bounces+billy.earney=gmail@python.org] On Behalf Of