User Ali A - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T11:33:21Zhttp://stackoverflow.com/feeds/user/28380http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796588/python-thread-and-gobject/1799006#17990060Answer by Ali A for Python, thread and gobjectAli A2009-11-25T18:27:54Z2009-11-25T18:27:54Z<p>You have failed to initialise the threading-based code-paths in gtk.</p>
<blockquote>
<p>You must remember two things when
using threads with PyGTK:</p>
<ol>
<li>GTK Threads must be initialised with gtk.gdk.threads_init:</li>
</ol>
</blockquote>
<p>From <a href="http://unpythonic.blogspot.com/2007/08/using-threads-in-pygtk.html" rel="nofollow">http://unpythonic.blogspot.com/2007/08/using-threads-in-pygtk.html</a>, copyright entirely retained by author. This copyright notice must not be removed.</p>
<p>You can think glib/gobject instead of pygtk, it's the same thing.</p>
http://stackoverflow.com/questions/1760070/how-to-escape-characters-in-pango-markup/1798944#17989441Answer by Ali A for How to escape characters in Pango markup?Ali A2009-11-25T18:18:54Z2009-11-25T18:18:54Z<p><a href="http://www.pygtk.org/docs/pygobject/glib-functions.html#function-glib--markup-escape-text" rel="nofollow"><code>glib.markup_escape_text</code></a> may be a more canonical approach when using GTK.</p>
http://stackoverflow.com/questions/599745/most-daunting-error-message16Most daunting error message?Ali A2009-03-01T12:36:15Z2009-11-20T18:12:05Z
<p>I got this one yesterday, and immediately decided to use a different library:</p>
<pre>
TypeError: publish_programmatically() takes exactly 17 arguments (1 given)
</pre>
<p>(I won't name and shame the library but you Python programmers may recognise it)</p>
<p>So, what is your most daunting/uninformative error message?</p>
<p><em>Edit</em>: And before the duplicate people go crazy, I am not looking for "funny" or "weird" error messages.</p>
http://stackoverflow.com/questions/641985/rename-files-python-jython/642295#6422954Answer by Ali A for Rename files, Python/JythonAli A2009-03-13T11:42:25Z2009-11-08T15:49:16Z<p>If you have subdirectories:</p>
<pre><code>import os
for dirpath, dirs, files in os.walk(your_path):
for filename in files:
if '&' in filename:
os.rename(
os.path.join(dirpath, filename),
os.path.join(dirpath, filename.replace('&', '+'))
)
</code></pre>
http://stackoverflow.com/questions/1511916/py2exed-version-of-gtk-app-cant-read-png-files/1579606#15796061Answer by Ali A for py2exe'd version of GTK app can't read png filesAli A2009-10-16T18:24:36Z2009-11-01T21:02:24Z<p>Make sure you bundle the loaders when you install your application. Py2exe won't know about these, but they are a needed part of GTK, and live where the rest of the GTK "data" files live.</p>
<p>From <a href="http://unpythonic.blogspot.com/2007/07/pygtk-py2exe-and-inno-setup-for-single.html" rel="nofollow">http://unpythonic.blogspot.com/2007/07/pygtk-py2exe-and-inno-setup-for-single.html</a></p>
<blockquote>
<p>It is not sufficient to just make
py2exe pull in the GTK DLLs for
packaging (which it does pretty
successfully). GTK also requires a
number of data files which include
themes, translations etc. These will
need to be manually copied into the
dist directory so that the application
can find them when being run.</p>
<p>If you look inside your GTK runtime
directory (usually something like
c:\GTK) you will find the
directories: share, etc, lib. You will
need to copy all of these into the
dist directory after running py2exe.</p>
</blockquote>
<p>Copyright retained.</p>
http://stackoverflow.com/questions/538713/how-can-i-escape-arguments-to-a-shell-command-with-python2How can I escape arguments to a shell command with Python?Ali A2009-02-11T20:50:27Z2009-10-30T00:41:09Z
<p>Is there anything in the standard library, or can anyone provide a recipe to escape anything going as an argument to a shell command?</p>
<p>For example, to ensure that it can be passed to the echo command:</p>
<pre><code>>>> import os
>>> os.system('echo "2')
sh: Syntax error: Unterminated quoted string
</code></pre>
<p>I would like to escape the <code>"2</code> string somehow. And there are various other example characters that it hates: <code>"()><'</code> and there are probably even more...</p>
<p>I can manually escape the things, but I need a function to do it to arbitrary input.</p>
<p><strong>Edit:</strong> Just for the record, because there is some confusion: No I cannot use subprocess.Popen, I am invoking something in a third party application which uses subprocess.Popen(shell=True..). No I cannot change that application, and no I most certainly do not want to change that application. It uses the shell's features, and they are useful in this domain. Therefore, voting up an answer that says "Just use subprocess.Popen" is totally wrong, and ignores the question.</p>
http://stackoverflow.com/questions/1591477/cron-job-to-connect-to-sql-server-and-run-a-sproc-using-python/1591533#15915331Answer by Ali A for Cron job to connect to sql server and run a sproc using pythonAli A2009-10-19T22:39:19Z2009-10-19T22:39:19Z<p>I am assuming you mean <strong>Microsoft's</strong> SQL server...</p>
<pre><code>#! /usr/bin/python
import pymssql
con = pymssql.connect (host='xxxxx',user='xxxx',
password='xxxxx',database='xxxxx')
cur = con.cursor()
query = "DECLARE @id INT; EXECUTE sp_GetUserID; SELECT @id;"
cur.execute(query)
outputparameter = cur.fetchall()
con.commit()
con.close()
</code></pre>
<p>Taken from <a href="http://coding.derkeiler.com/Archive/Python/comp.lang.python/2008-10/msg02620.html" rel="nofollow">http://coding.derkeiler.com/Archive/Python/comp.lang.python/2008-10/msg02620.html</a> (copyright retained)</p>
<p>Put that in a script and run it from cron...</p>
<p><a href="http://stackoverflow.com/questions/191644/how-do-you-get-output-parameters-from-a-stored-procedure-in-python">Check this question too.</a></p>
http://stackoverflow.com/questions/468639/is-there-a-standalone-python-type-conversion-library0Is there a standalone Python type conversion library?Ali A2009-01-22T10:29:33Z2009-10-18T12:51:46Z
<p>Are there any standalone type conversion libraries?</p>
<p>I have a data storage system that only understands bytes/strings, but I can tag metadata such as the type to be converted to.</p>
<p>I could hack up some naive system of type converters, as every other application has done before me, or I could hopefully use a standalone library, except I can't find one. Odd for such a common activity.</p>
<p>Just to clarify, I will have something like:</p>
<p>('123', 'integer') and I want to get out 123</p>
http://stackoverflow.com/questions/468639/is-there-a-standalone-python-type-conversion-library/1584810#15848100Answer by Ali A for Is there a standalone Python type conversion library?Ali A2009-10-18T12:51:46Z2009-10-18T12:51:46Z<p>Flatland does this well. <a href="http://discorporate.us/projects/flatland/" rel="nofollow">http://discorporate.us/projects/flatland/</a></p>
http://stackoverflow.com/questions/602445/evil-code-from-the-python-standard-library4Evil code from the python standard libraryAli A2009-03-02T14:03:39Z2009-06-16T11:20:12Z
<p>So, we have had this: <a href="http://lucumr.pocoo.org/2009/3/1/the-1000-speedup-or-the-stdlib-sucks" rel="nofollow">http://lucumr.pocoo.org/2009/3/1/the-1000-speedup-or-the-stdlib-sucks</a>. It demonstrates a rather bad bug that is probably costing the universe a load of cycles even as we speak. It's fixed now, which is great.</p>
<p>So what parts of the standard library have you noticed to be evil?</p>
<p>I would expect all the responsible people to match up an answer with a bug report (if suitable) and a patch (if superman).</p>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/264819#26481924Answer by Ali A for What is the worst interviewee answer?Ali A2008-11-05T10:48:47Z2009-06-14T04:48:38Z<p>I was invited for the interview to ask technical questions for a general web development post in a non-IT company.</p>
<p>q: "Have you done much development?"</p>
<p>a: "Yes. I studied computer science at X university"</p>
<p>q: "Great, how about web development?"</p>
<p>a: "Yes, I studied that too."</p>
<p>q: "What is your favourite web server?"</p>
<pre><code>10
</code></pre>
<p>a: "Um.."</p>
<p>q: "Ok tell me about a web server you have used"</p>
<p>a: "Um.."</p>
<p>q: "Can you name me any web servers?"</p>
<p>a: "Um.."</p>
<p>q: "Ok have you heard of Apache?"</p>
<p>a: "Um.."</p>
<p>q: "Ok let's move on to databases.."</p>
<pre><code>20 GOTO 10
</code></pre>
<p>boss: "Ok enough of this technical crap, your salary will be Y and you will start on Z..."</p>
http://stackoverflow.com/questions/634107/writing-a-socket-based-server-in-python-recommended-strategies4Writing a socket-based server in Python, recommended strategies?Ali A2009-03-11T11:15:27Z2009-04-30T12:42:03Z
<p>I was recently reading <a href="http://www.kegel.com/c10k.html" rel="nofollow">this document</a> which lists a number of strategies that could be employed to implement a socket server. Namely, they are:</p>
<ol>
<li>Serve many clients with each thread, and use nonblocking I/O and level-triggered readiness notification</li>
<li>Serve many clients with each thread, and use nonblocking I/O and readiness change notification</li>
<li>Serve many clients with each server thread, and use asynchronous I/O</li>
<li>serve one client with each server thread, and use blocking I/O</li>
<li>Build the server code into the kernel </li>
</ol>
<p>Now, I would appreciate a hint on which should be used <strong>in CPython</strong>, which we know has some good points, and some bad points. I am mostly interested in performance under high concurrency, and yes a number of the current implementations are too slow.</p>
<p>So if I may start with the easy one, "5" is out, as I am not going to be hacking anything into the kernel.</p>
<p>"4" Also looks like it must be out because of the GIL. Of course, you could use multiprocessing in place of threads here, and that does give a significant boost. Blocking IO also has the advantage of being easier to understand.</p>
<p>And here my knowledge wanes a bit:</p>
<p>"1" is traditional select or poll which could be trivially combined with multiprocessing.</p>
<p>"2" is the readiness-change notification, used by the newer epoll and kqueue</p>
<p>"3" I am not sure there are any kernel implementations for this that have Python wrappers.</p>
<p>So, in Python we have a bag of great tools like Twisted. Perhaps they are a better approach, though I have benchmarked Twisted and found it too slow on a multiple processor machine. Perhaps having 4 twisteds with a load balancer might do it, I don't know. Any advice would be appreciated.</p>
http://stackoverflow.com/questions/322484/can-someone-recommend-a-bells-and-whistles-css-framework11Can someone recommend a bells and whistles CSS framework?Ali A2008-11-26T23:08:22Z2009-04-14T00:57:23Z
<p>I am looking for a bells and whistles CSS framework. I have found a number online that deal with "grids", and some that deal with "typography" and others that deal with "resetting".</p>
<p>What I have not found is something that will give my web applications a consistent reusable style or theme.</p>
<p>I guess it would have to have a number of predefined elements that do things, for example:</p>
<pre><code>div.boxed {...}
</code></pre>
<p>And then a number of themes or plugins that provide these in a consistent way. Javascript toolkits like ExtJS, YUI, and also GWT have their own skinability, and I guess this is the featureset that I want, but independent of any Javascript library.</p>
<p>(Open source would be best, but we don't mind paying)</p>
<p><strong>Edit:</strong> 5 good answers, but I have seen all those frameworks, and they are not enough of what I am looking for. Perhaps what I am looking for doesn't exist. Or I haven't explained properly. I will give them a good going over and see.</p>
http://stackoverflow.com/questions/724985/how-do-you-decide-which-ide-to-use/725056#7250560Answer by Ali A for How do you decide which IDE to use?Ali A2009-04-07T10:45:46Z2009-04-07T10:45:46Z<p>Key in an IDE is a good editor. Most IDEs have shockingly bad editors. An example of a well-editored IDE is <a href="http://pida.co.uk/" rel="nofollow">PIDA</a>, which uses Vim, Emacs or others.</p>
http://stackoverflow.com/questions/700905/how-to-design-multi-threaded-gui-network-application/701171#7011712Answer by Ali A for How to design multi-threaded GUI-network application?Ali A2009-03-31T14:14:38Z2009-03-31T14:14:38Z<p>One, probably the best, solution for this problem is to use <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a>. It supports all the GUI toolkits.</p>
http://stackoverflow.com/questions/691740/is-there-a-method-in-python-thats-like-os-path-split-for-other-delimiters/691748#69174815Answer by Ali A for Is there a method in python that's like os.path.split for other delimiters?Ali A2009-03-27T22:56:46Z2009-03-28T11:52:04Z<pre><code>>>> 'a_b_c_d'.rsplit('_', 1)
['a_b_c', 'd']
</code></pre>
<blockquote>
<p>Help on built-in function rsplit:</p>
<p>rsplit(...)
<code>S.rsplit([sep [,maxsplit]])</code> -> list of strings</p>
<p>Return a list of the words in the string S, using sep as the
delimiter string, starting at the end of the string and working
to the front. If maxsplit is given, at most maxsplit splits are
done. If sep is not specified or is None, any whitespace string
is a separator.</p>
</blockquote>
http://stackoverflow.com/questions/685224/separate-threads-in-pygtk-application/686045#6860453Answer by Ali A for separate threads in pygtk application Ali A2009-03-26T14:31:59Z2009-03-26T15:11:21Z<p>Firstly, don't subclass <code>threading.Thread</code>, use <code>Thread(target=callable).start()</code>.</p>
<p>Secondly, and probably the cause of your apparent block is that <code>gtk.main_iteration</code> takes a parameter <code>block</code>, which defaults to <code>True</code>, so your call to <code>gtk.main_iteration</code> will actually block when there are no events to iterate on. Which can be solved with:</p>
<pre><code>gtk.main_iteration(block=False)
</code></pre>
<p>However, there is no real explanation why you would use this hacked up loop rather than the actual gtk main loop. If you are already running this inside a main loop, then I would suggest that you are doing the wrong thing. I can expand on your options if you give us a bit more detail and/or the complete example.</p>
<p>Thirdly, and this only came up later: Always always <em>always</em> <strong><em>always</em></strong> make sure you have called <code>gtk.gdk.threads_init</code> in any pygtk application with threads. GTK+ has different code paths when running threaded, and it needs to know to use these.</p>
<p>I wrote <a href="http://unpythonic.blogspot.com/2007/08/using-threads-in-pygtk.html" rel="nofollow">a small article about pygtk and threads</a> that offers you a small abstraction so you never have to worry about these things. That post also includes a progress bar example.</p>
http://stackoverflow.com/questions/671572/cl-who-like-html-templating-for-other-languages/671836#6718363Answer by Ali A for CL-WHO-like HTML templating for other languages?Ali A2009-03-22T23:57:23Z2009-03-22T23:57:23Z<p>There is <a href="http://www.kieranholland.com/code/documentation/nevow-stan/" rel="nofollow">stan</a>: <em>An s-expression-like syntax for expressing xml in pure python</em>, from <a href="http://divmod.org/trac/wiki/DivmodNevow" rel="nofollow">Divmod's Nevow</a>. I think it's kind of what you want. An example from the tutorial linked:</p>
<pre><code>t = T.table[
T.tr[
T.td[ "Name:" ],
T.td[ original.name ]
],
T.tr[
T.td[ "Email:" ],
T.td[T.a(href='mailto:%s' % original.email)[ original.email ] ]
],
T.tr[
T.td[ "Password:" ],
T.td[ "******" ]
],
]
</code></pre>
http://stackoverflow.com/questions/669152/how-can-i-change-the-display-text-of-a-menuitem-in-gtk2/669426#6694263Answer by Ali A for How can I change the display text of a MenuItem in Gtk2?Ali A2009-03-21T15:03:39Z2009-03-21T15:03:39Z<p>It somewhat depends how you created the menu item, since a MenuItem is a container that can contain anything. If you created it like:</p>
<pre><code>menuitem = gtk.MenuItem('This is the label')
</code></pre>
<p>Then you can access the label widget in the menu item with:</p>
<pre><code>label = menuitem.child
</code></pre>
<p>And can then treat that as a normal label:</p>
<pre><code>label.set_text('This is the new label')
</code></pre>
<p>However, unless you made the menu item yourself, you can't guarantee that the child widget will be a label like this, so you should take some care.</p>
http://stackoverflow.com/questions/668226/can-someone-explain-gtk2-packing/669033#6690332Answer by Ali A for Can someone explain Gtk2 packing?Ali A2009-03-21T09:29:09Z2009-03-21T09:29:09Z<p>Box packing is <em>really</em> simple, so perhaps your failure to understand it is because you imagine it is more complicated than it is.</p>
<p>Layout is either Vertical (like a pile of bricks) or horizontal (like a queue of people). Each element in that layout can expand or it can not expand.</p>
<p>Horizontal (HBox)</p>
<pre><code>[widget][widget][widget][widget]
</code></pre>
<p>Vertical (VBox)</p>
<pre><code>[widget]
[widget]
[widget]
[widget]
</code></pre>
<p>So for example, a Horizontal layout (HBox) with two buttons, which the code would be:</p>
<pre><code>import gtk
box = gtk.HBox()
b1 = gtk.Button('button1')
b2 = gtk.Button('button2')
box.pack_start(b1)
box.pack_start(b2)
</code></pre>
<p>Now since the default for packing is to have <code>expand=True</code>, both those buttons added to the box will expand and they will each occupy half the area. No matter what the size of the container is. I think of this as "stretchy".</p>
<p>Expanding widgets:</p>
<pre><code>[[ widget ][ widget ]]
</code></pre>
<p>So, if you want one of the buttons to not expand, you will pack it like this:</p>
<pre><code>box.pack_start(b1, expand=False)
</code></pre>
<p>Non-expanding widget:</p>
<pre><code>[[widget][ widget ]]
</code></pre>
<p>Then the button will only occupy the space it needs to draw itself: text + borders + shadows + images (if any) etc. And the other button will expand to fill the remaining area. Normally, buttons don't need to be expanded, so a more real-life situation is a TextArea which you would want to expand to fill the window.</p>
<p>The other parameter that can be passed to <code>pack_start</code> is the fill parameter, and normally this can be ignored. It is enough here to say that if <code>expand=False</code> then the <code>fill</code> parameter is entirely ignored (because it doesn't make sense in that situation).</p>
<p>The other thing you mentioned is <code>set_size_request</code>. I would generally say that this is not a good idea. I say generally, because there are situations where you will need to use it. But for someone beginning out with packing a GTK+ user interface, I would strongly recommend not using it. In general, let the boxes and other containers handle your layout for you. The <code>set_size_request</code> does not do exactly what you would expect it to do. It does not change the size of a widget, but merely how much space it will request. It may use more, and may even stretch to fill larger spaces. It will rarely become smaller than the request, but again because it is just a "request" there is no guarantee theat the request will be fulfilled.</p>
http://stackoverflow.com/questions/663544/when-and-why-are-you-planning-to-upgrade-to-python-3-0/664127#6641270Answer by Ali A for When and why are you planning to upgrade to Python 3.0?Ali A2009-03-19T21:21:18Z2009-03-19T21:21:18Z<p>When <code><insert c library binding here></code> gets ported. In my case <a href="http://pygtk.org" rel="nofollow">PyGTK</a>.</p>
http://stackoverflow.com/questions/663231/can-automated-testing-completely-replace-the-need-for-manual-testing/663256#6632561Answer by Ali A for Can automated testing completely replace the need for manual testing?Ali A2009-03-19T17:46:26Z2009-03-19T17:46:26Z<p>Automation is extremely useful and you should have as much of it as you can.</p>
<p>However, it should not replace your human integration tests. A user interface is to be used by humans, and so there should be tests performed by humans.</p>
http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase/661711#6617118Answer by Ali A for What is your best pseudo-code phrase?Ali A2009-03-19T10:40:38Z2009-03-19T10:40:38Z<p>A bit more cryptic:</p>
<pre><code>mkfifo('dream')
</code></pre>
http://stackoverflow.com/questions/661603/how-do-i-know-if-a-generator-is-empty-from-the-start/661673#6616732Answer by Ali A for How do I know if a generator is empty from the start?Ali A2009-03-19T10:23:37Z2009-03-19T10:32:28Z<p>I hate to offer a second solution, especially one that I would not use myself, but, if you absolutely <em>had</em> to do this and to not consume the generator, as in other answers:</p>
<pre><code>def do_something_with_item(item):
print item
empty_marker = object()
try:
first_item = my_generator.next()
except StopIteration:
print 'The generator was empty'
first_item = empty_marker
if first_item is not empty_marker:
do_something_with_item(first_item)
for item in my_generator:
do_something_with_item(item)
</code></pre>
<p>Now I really don't like this solution, because I believe that this is not how generators are to be used.</p>
http://stackoverflow.com/questions/661603/how-do-i-know-if-a-generator-is-empty-from-the-start/661653#6616531Answer by Ali A for How do I know if a generator is empty from the start?Ali A2009-03-19T10:14:14Z2009-03-19T10:14:14Z<p>Sorry for the obvious approach, but the best way would be to do:</p>
<pre><code>for item in my_generator:
print item
</code></pre>
<p>Now you have detected that the generator is empty while you are using it. Of course, item will never be displayed if the generator is empty.</p>
<p>This may not exactly fit in with your code, but this is what the idiom of the generator is for: iterating, so perhaps you might change your approach slightly, or not use generators at all.</p>
http://stackoverflow.com/questions/659415/python-sequence-naming-convention/659439#65943917Answer by Ali A for Python sequence naming conventionAli A2009-03-18T18:00:41Z2009-03-18T18:49:30Z<p>In general, avoid this kind of behaviour. Notice from <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a></p>
<blockquote>
<p>A Foolish Consistency is the Hobgoblin
of Little Minds</p>
</blockquote>
<p>which is exactly what calling a variable <code>weightss</code> would be doing. So in general have your variables describing what they are, not according to some naming convention:</p>
<pre><code>weights = [44, 66, 88]
weight_groups = [[44, 66, 88], ...]
</code></pre>
<p>etc.</p>
<p>From the same section of the <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a>:</p>
<blockquote>
<p>But most importantly: know when to be
inconsistent -- sometimes the style
guide just doesn't apply. When in
doubt, use your best judgment. Look
at other examples and decide what
looks best. And don't hesitate to
ask!</p>
</blockquote>
http://stackoverflow.com/questions/656297/python-time-timedelta-equivalent/656334#6563342Answer by Ali A for python time + timedelta equivalentAli A2009-03-17T22:50:54Z2009-03-17T23:02:22Z<p>This is a bit nasty, but:</p>
<pre><code>from datetime import datetime, timedelta
now = datetime.now().time()
# Just use January the first, 2000
d1 = datetime(2000, 1, 1, now.hour, now.minute, now.second)
d2 = d1 + timedelta(hours=1, minutes=23)
print d2.time()
</code></pre>
http://stackoverflow.com/questions/656050/can-i-get-rows-from-sqlalchemy-that-are-plain-arrays-rather-than-dictionaries/656298#6562981Answer by Ali A for Can I get rows from SQLAlchemy that are plain arrays, rather than dictionaries?Ali A2009-03-17T22:33:20Z2009-03-17T22:39:14Z<p>Forgive the obvious answer, but why isn't row.x == row.y in your query? For example:</p>
<pre><code>mytable.select().where(mytable.c.x==mytable.c.y)
</code></pre>
<p>Should give you a huge performance boost. <a href="http://www.sqlalchemy.org/docs/05/sqlexpression.html#selecting" rel="nofollow">Read the rest of the documentation.</a></p>
http://stackoverflow.com/questions/655620/how-can-i-execute-a-php-script-from-java/655634#6556340Answer by Ali A for How can I execute a PHP script from Java?Ali A2009-03-17T19:11:10Z2009-03-17T19:11:10Z<blockquote>
<p>Any help would be appreciated;
I'm not sure if I execute the script at all.</p>
</blockquote>
<p>Check your web server logs to see if it is being executed, and if so what the errors are. Useless without these.</p>
http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl/651086#6510868Answer by Ali A for A simple Python IRC client library that supports SSL?Ali A2009-03-16T16:12:07Z2009-03-16T18:34:28Z<p><a href="http://twistedmatrix.com/trac/wiki/TwistedWords" rel="nofollow">Twisted</a> has an IRC client (in twisted.words), and it supports SSL.</p>
<p>There is an <a href="http://twistedmatrix.com/projects/words/documentation/examples/ircLogBot.py" rel="nofollow">example in the documentation</a>, just remember to do <code>reactor.connectSSL</code> instead of <code>reactor.connectTCP</code>.</p>
<p>If you don't want Twisted, there is also the <a href="http://python-irclib.sourceforge.net/" rel="nofollow">Python IRC library</a>, which I notice has SSL support in the latest release.</p>
http://stackoverflow.com/questions/1774161/is-there-a-way-to-uncheck-all-radio-buttons-in-a-group-pygtk/1774188#1774188Comment by Ali A on Is there a way to uncheck all radio buttons in a group? (PyGTK)Ali A2009-11-25T18:21:16Z2009-11-25T18:21:16ZTotally disagree. Imagine a situation where the radio group is insensitized by interaction with another widget. None of the items should appear selected. GTK itself won't force you to behave by some imaginary rules.http://stackoverflow.com/questions/1590712/python-how-can-i-make-this-variable-global-without-initializing-it-as-global/1591050#1591050Comment by Ali A on Python| How can I make this variable global without initializing it as 'global'Ali A2009-10-19T22:47:49Z2009-10-19T22:47:49Z+1 the first one. Second one should go into a shredding machine.http://stackoverflow.com/questions/1511916/py2exed-version-of-gtk-app-cant-read-png-files/1512020#1512020Comment by Ali A on py2exe'd version of GTK app can't read png filesAli A2009-10-16T20:33:39Z2009-10-16T20:33:39ZI am suspecting that this is entirely unrelated.http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/256836#256836Comment by Ali A on Python vs PHP, Python runs slower?Ali A2009-05-14T16:31:37Z2009-05-14T16:31:37ZAnd I have downvoted your sense of humour.http://stackoverflow.com/questions/780526/how-to-automatically-reload-a-python-file-when-it-is-changed/780530#780530Comment by Ali A on How to automatically reload a python file when it is changedAli A2009-04-23T10:19:44Z2009-04-23T10:19:44ZReload won't work. Consider this: import foo; blah = foo; foo = reload(foo); #what is blah?http://stackoverflow.com/questions/724715/can-software-be-developed-without-deadlines/724837#724837Comment by Ali A on Can software be developed without deadlines?Ali A2009-04-07T10:40:22Z2009-04-07T10:40:22ZThe correct three words are "When it's done"http://stackoverflow.com/questions/704577/shining-new-stackoverflowComment by Ali A on Shining new stackoverflowAli A2009-04-01T09:59:27Z2009-04-01T09:59:27Zkudos, site works well with no graphicshttp://stackoverflow.com/questions/704577/shining-new-stackoverflowComment by Ali A on Shining new stackoverflowAli A2009-04-01T09:58:41Z2009-04-01T09:58:41Zright click.. block images from i.stackoverflow.com..http://stackoverflow.com/questions/699390/whats-the-best-way-to-tell-if-a-python-program-has-anything-to-read-from-stdin/699459#699459Comment by Ali A on What's the best way to tell if a Python program has anything to read from stdin?Ali A2009-03-31T14:25:15Z2009-03-31T14:25:15ZAbsolutely +1, I often use --stdin to tell the app to do this, lots of unixy programs just use -http://stackoverflow.com/questions/699830/why-was-pep-3117-rejectedComment by Ali A on Why was PEP 3117 rejected?Ali A2009-03-31T14:22:03Z2009-03-31T14:22:03ZThis question is utterly fine in my opinion. Community wiki maybe.http://stackoverflow.com/questions/696874/populate-a-list-in-python/696885#696885Comment by Ali A on Populate a list in pythonAli A2009-03-30T11:49:32Z2009-03-30T11:49:32ZI'd say you can create a list with gaps, but you shouldn't for this case.http://stackoverflow.com/questions/694775/shortening-a-oft-used-code-segment-for-testing-a-return-value-in-pythonComment by Ali A on Shortening a oft-used code segment for testing a return value in PythonAli A2009-03-29T18:02:01Z2009-03-29T18:02:01ZWhy would you gratutitously confuse people reading your code? Sane answer is "don't do this" (imo).http://stackoverflow.com/questions/695040/help-with-python-loop-weirdnessComment by Ali A on Help with Python loop weirdness?Ali A2009-03-29T17:57:58Z2009-03-29T17:57:58ZIn general, I wouldn';t write an IRC bot from scratch, and I would try to stop others from doing it too. Write a plugin for supybot, or gozerbot.http://stackoverflow.com/questions/685224/separate-threads-in-pygtk-application/686045#686045Comment by Ali A on separate threads in pygtk application Ali A2009-03-26T15:06:44Z2009-03-26T15:06:44ZOk, but as long as you realise that the rest of your UI won't get updates during that period.
http://stackoverflow.com/questions/685224/separate-threads-in-pygtk-application/686045#686045Comment by Ali A on separate threads in pygtk application Ali A2009-03-26T15:06:02Z2009-03-26T15:06:02ZThere is just no need to subclass it. <a href="http://stackoverflow.com/questions/660961/overriding-python-threading-thread-run/660974#660974" rel="nofollow" title="overriding python threading thread run">stackoverflow.com/questions/660961/…</a>