2
votes
Is there an IDE that provides code completion for Python
On Windows, PyScripter is a pretty good free and open-source IDE that provides code completion (as well as debugging and other feat …
11
votes
Build a Basic Python Iterator
Iterator objects in python conform to the iterator protocol, which basically means they provide two methods: __iter__() and next(). The __iter__ returns th …
4
votes
Weighted slope one algorithm? (porting from Python to R)
I used the same reference (Bryan O'Sullivan's python code) to write an R version of Slope One a while back. I'm pasting the code below in case it helps.
predict <- function(user …
4
votes
retrieve links from web page using python and beautiful soup
Here's a short snippet using the SoupStrainer class in BeautifulSoup:
import httplib2
from BeautifulSoup import BeautifulSoup, SoupStrainer
http = httplib2.Http()
status, response …
0
votes
How do you get Python documentation in Texinfo Info format?
Michael Ernst used to maintain Info formats of Python docs:
http://www.cs.washington.edu/homes/merns …
1
vote
Inheriting from instance in Python
You don't define a constructor (init) for Child, so the Parent constructor is called, expecting 4 arguments while only 2 are passed in (from new). Here's one way to accomplish what you want:
…
2
votes
Decompile .swf file to get images in python
The SWFTools distribution has a command line program, SWFExtract, that can do this. You could call that from python to do what you want:
h …
1
vote
How do you do something after you render the view? (Django)
Django's HttpResponse object accepts an iterator in its constructor:
http://docs.django …
0
votes
using registered com object dll from .NET
The line:
_reg_clsid_ = pythoncom.CreateGuid()
creates a new GUID everytime this file is called. You can create a GUID on the command line:
C:\> …
5
votes
LINQ in Python
Pynq implements expression trees:
http://wiki.github.com/heynemann/pynq
Microsoft created Linq (Lan …
1
vote
Python Libraries for FTP Upload/Download?
You don't mention which alternatives you've looked at already. Is ftputil one of them?
http://ftputil.sschwarz …
2
votes
Pythonic way to log specific things to a file?
Instead of many loggers, you could use one logger and many handlers. For example:
log = logging.getLogger(name)
while some_condition:
try:
handler = make_handler(filena …
5
votes
Special (magic) methods in Python
This page lists all the "underscore" methods:
http://www.siafoo.net/article/57
It's a handy reference.
…
8
votes
Matrix from Python to MATLAB
If you use numpy/scipy, you can use the scipy.io.savemat function:
import numpy, scipy.io
arr = numpy.arange(10)
arr = arr.reshape((3, 3)) # 2d array of 3x3
scipy.io.savemat('c:/ …
1
vote
Finding partial strings in a list of strings - python
You can use set intersection (& operator) once you parse the group list out. For example:
> memberOf = 'CN=group1,OU=Projects,OU=Office,OU=company,DC=domain,DC=com'
> gr …
