Re: URL - Python ?

2015-02-17 Thread Emil Oppeln-Bronikowski
HTTP (like requests) the URL-following is build in and free r = requests.get('http://github.com') r.url 'https://github.com/' r.status_code 200 r.history [Response [301]] If you want to track changes just check if response.history has some items in it. -- Emil Oppeln-Bronikowski

Re: What killed Smalltalk could kill Python

2015-01-22 Thread Emil Oppeln-Bronikowski
On Thu, Jan 22, 2015 at 07:26:31AM -0500, Gene Heskett wrote: Still (somehow) alive in neo-Amiga platforms like AmigaOS4.x, MorphOS and AROS. I know that's as good as dead but there are still people writing AREXX glue code. He asked about REXX, not AREXX. There is no comparison between the

Re: What killed Smalltalk could kill Python

2015-01-21 Thread Emil Oppeln-Bronikowski
On Thu, Jan 22, 2015 at 10:55:27AM +1100, Chris Angelico wrote: Where's REXX today? Still (somehow) alive in neo-Amiga platforms like AmigaOS4.x, MorphOS and AROS. I know that's as good as dead but there are still people writing AREXX glue code. -- vag·a·bond adjective \ˈva-gə-ˌbänd\ a : 

Re: application console with window

2015-01-08 Thread Emil Oppeln-Bronikowski
On Thu, Jan 08, 2015 at 05:18:07PM +0100, adam wrote: I just learn python. We all do. It's a constant process. If you write in Polish it will be easier for me to explain any problem, because my English is very thin. I don't really want to force others to read Polish, hit me private if you

Re: application console with window

2015-01-07 Thread Emil Oppeln-Bronikowski
On Wed, Jan 07, 2015 at 10:17:09PM +0100, adam wrote: Is in here maybe someone who speak Polish? Mówię, a raczej piszę. I'm looking for some libs, tutorials, or other informations. This is terminal application using (n)curses or smilar library that helps you draw interact with windows,

Re: How do I remove/unlink wildcarded files

2015-01-02 Thread Emil Oppeln-Bronikowski
/library/glob.html -- Emil Oppeln-Bronikowski *|* http://fuse.pl -- https://mail.python.org/mailman/listinfo/python-list

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread Emil Oppeln-Bronikowski
On Fri, Jan 02, 2015 at 11:11:05AM -0800, André Roberge wrote: Sorry if this was asked before: have you tried building a portable version using py2exe/Nuitka/etc? I always hit a wall when it comes to building against huge libraries like Python-Qt. -- People are like potatos. They die when you

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread Emil Oppeln-Bronikowski
On Fri, Jan 02, 2015 at 11:53:26AM -0800, André Roberge wrote: How could it then be used? Maybe I failed to explain myself fully. What I meant to say is building a distribution-ready program that utilizes your library; not your library being turn into a executable. Or maybe something is going