Id | Title | Body | Score | HSTCount | HiScoreTerms | OwnerUserId | ParentId |
---|---|---|---|---|---|---|---|
773 | How do I use Python's itertools.groupby()? | I haven't been able to find an understandable explanation of how to actually use Python's
I've reviewed the documentation, and the examples, but I've had trouble trying to apply them beyond a simple list of numbers. So, how do I use of |
256 | 0 | NaN | 207 | 0 |
783 | NaN | Can you show us your code? The example on the Python docs is quite straightforward:
So in your case, data is a list of nodes, keyfunc is where the logic of your criteria function goes and then You must be careful to sort the data by the criteria before you call |
52 | 3 | store group iterator , store group iterator list , store group iterator list uniquekeys , | 189 | 773 |
7286 | NaN | As Sebastjan said, you first have to sort your data. This is important. The part I didn't get is that in the example construction
Here's an example of that, using clearer variable names:
This will give you the output:
In this example, The Here, In the above Here's a slightly different example with the same data, using a list comprehension:
This will give you the output:
|
394 | 7 | speed boat vehicle school , speed boat vehicle school bus , store group iterator , store group iterator list , store group iterator list uniquekeys , thing group print , vehicle school bus , | 207 | 773 |
2311 | File size differences after copying a file to a server vÃa FTP | I have created a PHP-script to update a webserver that is live inside a local directory. I'm migrating the script into Python. It works fine for the most part, but after a PUT command the size of the file appears to change. Thus, the size of the file is different from that of the file on the server. Once I download again the file from the FTP server, the only difference is the CR/LF mark. This annoys me because the same script is comparing the size of the files to update. Also, in case it means anything, the script works perfectly in PHP vÃa ftp_put.
Any suggestions? |
26 | 4 | works fine part , works fine part put , works fine part put command , works perfectly php , | 394 | 0 |
2316 | NaN | Do you need to open the locfile in binary using
|
14 | 0 | NaN | 259 | 2311 |
2317 | NaN | Well if you go under the properties of your file in Windows or a *nix environment, you will notice two sizes. One is the sector size, and one is the actual size. The sector size is the number of sectors in bytes that are used up on your hard disk. That is because two files cannot be in the same sector with most modern file systems, so if your file fills up half of the sector the whole sector is marked as filled. So you might be comparing the sector file size to the actual file size on the FTP server or vice versa. |
2 | 6 | whole sector marked , whole sector marked filled , whole sector marked filled might , windows nix environment , windows nix environment notice , windows nix environment notice two , | 17 | 2311 |
2510 | NaN | Small files take up a whole node on the filesystem whatever size that is. My host tends to report all small files as 4kb in ftp but in a shell gives an accurate size so it might be a 'feature' common to ftp clients. |
0 | 0 | NaN | 269 | 2311 |
10123 | How do I treat an integer as an array of bytes in Python? | I'm trying to decode the result of the Python os.wait() function. This returns, according to the Python docs:
How do I decode the exit status indication (which is an integer) to obtain the high and low byte? To be specific, how do I implement the decode function used in the following code snippet:
|
8 | 9 | os wait exitstatus , os wait exitstatus signum , pid status os , pid status os wait , pid status os wait exitstatus , status os wait , status os wait exitstatus , status os wait exitstatus signum , wait exitstatus signum , | 742 | 0 |
10129 | NaN | This will do what you want:
|
10 | 0 | NaN | 116 | 10123 |
10132 | NaN | You can unpack the status using bit-shifting and masking operators.
I'm not a Python programmer, so I hope got the syntax correct. |
1 | 0 | NaN | 872 | 10123 |
10148 | NaN | The folks before me've nailed it, but if you really want it on one line, you can do this:
EDIT: Had it backwards. |
0 | 1 | xff status xff , | 429 | 10123 |
10213 | NaN | To answer your general question, you can use bit manipulation techniques:
However, there are also built-in functions for interpreting exit status values:
See also:
|
10 | 10 | xff status xff , os wait exitstatus , os wait exitstatus signum , pid status os , pid status os wait , pid status os wait exitstatus , status os wait , status os wait exitstatus , status os wait exitstatus signum , wait exitstatus signum , | 99 | 10123 |
535 | Continuous Integration System for a Python Codebase | I'm starting work on a hobby project with a python codebase and would like to set up some form of continuous integration (i.e. running a battery of test-cases each time a check-in is made and sending nag e-mails to responsible persons when the tests fail) similar to CruiseControl or TeamCity. I realize I could do this with hooks in most VCSes, but that requires that the tests run on the same machine as the version control server, which isn't as elegant as I would like. Does anyone have any suggestions for a small, user-friendly, open-source continuous integration system suitable for a Python codebase? |
40 | 0 | NaN | 154 | 0 |
538 | NaN | One possibility is Hudson. It's written in Java, but there's integration with Python projects: I've never tried it myself, however. (Update, Sept. 2011: After a trademark dispute Hudson has been renamed to Jenkins.) |
23 | 0 | NaN | 156 | 535 |
541 | NaN | We run Buildbot - Trac at work, I haven't used it too much since my code base isn't part of the release cycle yet. But we run the tests on different environments (OSX/Linux/Win) and it sends emails --and it's written in python. |
20 | 1 | yet run tests , | 157 | 535 |
660 | NaN | Second the Buildbot - Trac integration. You can find more information about the integration on the Buildbot website. At my previous job, we wrote and used the plugin they mention (tracbb). What the plugin does is rewriting all of the Buildbot urls so you can use Buildbot from within Trac. (http://example.com/tracbb). The really nice thing about Buildbot is that the configuration is written in Python. You can integrate your own Python code directly to the configuration. It's also very easy to write your own BuildSteps to execute specific tasks. We used BuildSteps to get the source from SVN, pull the dependencies, publish test results to WebDAV, etcetera. I wrote an X10 interface so we could send signals with build results. When the build failed, we switched on a red lava lamp. When the build succeeded, a green lava lamp switched on. Good times :-) |
14 | 6 | written python integrate , written python integrate python , written python integrate python code , wrote used plugin , wrote used plugin mention , wrote used plugin mention tracbb , | 197 | 535 |
1829 | How do I make a menu that does not require the user to press [enter] to make a selection? | I've got a menu in Python. That part was easy. I'm using The problem is that
It would be great to have something like
|
12 | 10 | print menu say foo , print menu say foo say , say bar answer , say foo say bar answer , foo say bar , menu say foo , menu say foo say , menu say foo say bar , say foo say , say foo say bar , | 30 | 0 |
1840 | NaN | On Linux:
import sys import select import termios import tty def getkey(): old_settings = termios.tcgetattr(sys.stdin) tty.setraw(sys.stdin.fileno()) select.select([sys.stdin], [], [], 0) answer = sys.stdin.read(1) termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_settings) return answer print """Menu 1) Say Foo 2) Say Bar""" answer=getkey() if "1" in answer: print "foo" elif "2" in answer: print "bar" |
8 | 10 | print menu say foo , print menu say foo say , say bar answer , say foo say bar answer , foo say bar , menu say foo , menu say foo say , menu say foo say bar , say foo say , say foo say bar , | 116 | 1829 |
1852 | NaN | On Windows:
|
6 | 0 | NaN | 116 | 1829 |
1870 | NaN | Wow, that took forever. Ok, here's what I've ended up with
It fails hard using IDLE, the python...thing...that comes with python. But once I tried it in DOS (er, CMD.exe), as a real program, then it ran fine. No one try it in IDLE, unless you have Task Manager handy. I've already forgotten how I lived with menus that arn't super-instant responsive. |
2 | 8 | print menu say foo , print menu say foo say , foo say bar , menu say foo , menu say foo say , menu say foo say bar , say foo say , say foo say bar , | 30 | 1829 |
1885 | NaN | The reason msvcrt fails in IDLE is because IDLE is not accessing the library that runs msvcrt. Whereas when you run the program natively in cmd.exe it works nicely. For the same reason that your program blows up on Mac and Linux terminals. But I guess if you're going to be using this specifically for windows, more power to ya. |
0 | 0 | NaN | 50 | 1829 |
5419 | Python, Unicode, and the Windows console | When I try to print a Unicode string in a Windows console, I get a Edit: I'm using Python 2.5. Note: @LasseV.Karlsen answer with the checkmark is sort of outdated (from 2008). Please use the solutions/answers/suggestions below with care!! @JFSebastian answer is more relevant as of today (6 Jan 2016). |
72 | 0 | NaN | 207 | 0 |
5430 | NaN | Note: This answer is sort of outdated (from 2008). Please use the solution below with care!! Here is a page that details the problem and a solution (search the page for the text Wrapping sys.stdout into an instance): Here's a code excerpt from that page:
There's some more information on that page, well worth a read. |
24 | 8 | sys stdout write , sys stdout write line , sys stdout write line print , type line len , type line len line , type line len line sys , write line print , write line print line , | 267 | 5419 |
8020 | NaN | The cause of your problem is NOT the Win console not willing to accept Unicode (as it does this since I guess Win2k by default). It is the default system encoding. Try this code and see what it gives you:
if it says ascii, there's your cause ;-) You have to create a file called sitecustomize.py and put it under python path (I put it under /usr/lib/python2.5/site-packages, but that is differen on Win - it is c:\python\lib\site-packages or something), with the following contents:
and perhaps you might want to specify the encoding in your files as well:
Edit: more info can be found in excellent the Dive into Python book |
-1 | 0 | NaN | 985 | 5419 |
12592 | Can you check that an exception is thrown with doctest in Python? | Is it possible to write a doctest unit test that will check that an exception is raised? |
28 | 4 | would write doctest , write doctest unit , write doctest unit test , write doctest unit test check , | 742 | 0 |
12609 | NaN | Yes. You can do it. The doctest module documentation and Wikipedia has an example of it.
|
45 | 3 | yes doctest module , yes doctest module documentation , yes doctest module documentation wikipedia , | 1448 | 12592 |
11060 | How should I unit test a code-generator? | This is a difficult and open-ended question I know, but I thought I'd throw it to the floor and see if anyone had any interesting suggestions. I have developed a code-generator that takes our python interface to our C++ code (generated via SWIG) and generates code needed to expose this as WebServices. When I developed this code I did it using TDD, but I've found my tests to be brittle as hell. Because each test essentially wanted to verify that for a given bit of input code (which happens to be a C++ header) I'd get a given bit of outputted code I wrote a small engine that reads test definitions from XML input files and generates test cases from these expectations. The problem is I dread going in to modify the code at all. That and the fact that the unit tests themselves are a: complex, and b: brittle. So I'm trying to think of alternative approaches to this problem, and it strikes me I'm perhaps tackling it the wrong way. Maybe I need to focus more on the outcome, IE: does the code I generate actually run and do what I want it to, rather than, does the code look the way I want it to. Has anyone got any experiences of something similar to this they would care to share? |
18 | 7 | similar would care share , small engine reads , small engine reads test , small engine reads test definitions , something similar would , something similar would care , something similar would care share , | 912 | 0 |
11074 | NaN | I started writing up a summary of my experience with my own code generator, then went back and re-read your question and found you had already touched upon the same issues yourself, focus on the execution results instead of the code layout/look. Problem is, this is hard to test, the generated code might not be suited to actually run in the environment of the unit test system, and how do you encode the expected results? I've found that you need to break down the code generator into smaller pieces and unit test those. Unit testing a full code generator is more like integration testing than unit testing if you ask me. |
8 | 3 | smaller pieces unit , smaller pieces unit test , smaller pieces unit test unit , | 267 | 11060 |
11128 | NaN | Yes, results are the ONLY thing that matters. The real chore is writing a framework that allows your generated code to run independently... spend your time there. |
0 | 0 | NaN | 414 | 11060 |
11235 | NaN | If you are running on *nux you might consider dumping the unittest framework in favor of a bash script or makefile. on windows you might consider building a shell app/function that runs the generator and then uses the code (as another process) and unittest that. A third option would be to generate the code and then build an app from it that includes nothing but a unittest. Again you would need a shell script or whatnot to run this for each input. As to how to encode the expected behavior, it occurs to me that it could be done in much the same way as you would for the C++ code just using the generated interface rather than the C++ one. |
0 | 0 | NaN | 1343 | 11060 |
11443 | NaN | Recall that "unit testing" is only one kind of testing. You should be able to unit test the internal pieces of your code generator. What you're really looking at here is system level testing (a.k.a. regression testing). It's not just semantics... there are different mindsets, approaches, expectations, etc. It's certainly more work, but you probably need to bite the bullet and set up an end-to-end regression test suite: fixed C++ files -> SWIG interfaces -> python modules -> known output. You really want to check the known input (fixed C++ code) against expected output (what comes out of the final Python program). Checking the code generator results directly would be like diffing object files... |
4 | 0 | NaN | 825 | 11060 |
1854 | How to check what OS am I running on in Python? | What do I need to look at to see if I'm on Windows, Unix, etc? |
270 | 0 | NaN | 116 | 0 |
1857 | NaN |
See: platform â Access to underlying platformâs identifying data |
341 | 9 | os name posix , os name posix import , os name posix import platform , posix import platform , posix import platform platform , posix import platform platform system , import platform platform , import platform platform system , platform platform system , | 2089740 | 1854 |
1871 | NaN | Dang -- lbrandy beat me to the punch, but that doesn't mean I can't provide you with the system results for Vista!
|
112 | 4 | os os name , import platform platform , import platform platform system , platform platform system , | 216 | 1854 |
1879 | NaN | For the record here's the results on Mac:
|
91 | 10 | os name posix , os name posix import , os name posix import platform , os os name , posix import platform , posix import platform platform , posix import platform platform system , import platform platform , import platform platform system , platform platform system , | 116 | 1854 |
1983 | Python: what is the difference between (1,2,3) and [1,2,3], and when should I use each? | In many places, When should I use one or the other, and why? |
31 | 0 | NaN | 116 | 0 |
1987 | NaN | The list [1,2,3] is dynamic and flexible but that flexibility comes at a speed cost. The tuple (1,2,3) is fixed (immutable) and therefore faster. |
19 | 0 | NaN | 269 | 1983 |
2277 | NaN | From the Python FAQ:
Generally by convention you wouldn't choose a list or a tuple just based on its (im)mutability. You would choose a tuple for small collections of completely different pieces of data in which a full-blown class would be too heavyweight, and a list for collections of any reasonable size where you have a homogeneous set of data. |
26 | 4 | similar many respects , similar many respects generally , similar many respects generally used , similar pascal records , | 156 | 1983 |
4595 | NaN | Tuples are a quick\flexible way to create composite data-types. Lists are containers for, well, lists of objects. For example, you would use a List to store a list of student details in a class. Each student detail in that list may be a 3-tuple containing their roll number, name and test score.
Also, because tuples are immutable they can be used as keys in dictionaries. |
10 | 1 | score mark john also tuples , | 618 | 1983 |
5719 | NaN | As others have mentioned, Lists and tuples are both containers which can be used to store python objects. Lists are extensible and their contents can change by assignment, on the other hand tuples are immutable. Also, lists cannot be used as keys in a dictionary whereas tuples can. |
1 | 0 | NaN | 108465 | 1983 |
5746 | NaN | If you can find a solution that works with tuples, use them, as it forces immutability which kind of drives you down a more functional path. You almost never regret going down the functional/immutable path. |
1 | 0 | NaN | 699 | 1983 |
12454 | NaN | Whenever I need to pass in a collection of items to a function, if I want the function to not change the values passed in - I use tuples. Else if I want to have the function to alter the values, I use list. Always if you are using external libraries and need to pass in a list of values to a function and are unsure about the integrity of the data, use a tuple. |
2 | 0 | NaN | 1448 | 1983 |
12557 | NaN | The notion of tuples are highly expressive:
|
7 | 4 | search insert insert , search insert insert etc , search insert insert etc list , dictionaries hash tables , | 1416 | 1983 |
5313 | Cross Platform, Language Agnostic GUI Markup Language? | I learned Swing back in the day but now I've moved to Python and want to make some apps with GUIs. I haven't had the time to learn a new GUI API so I've been using Jython, but I would prefer to use CPython. It would be great if I can have one simple markup that allows me to switch GUI libraries. It would be even better if I can use the same markup language across languages so I can quickly make GUIs for any language I'm using. Does anyone know of such a markup/library? I've seen markups like Glade and wxWidget's markup (I forget the name). They're partly what I'm looking for (making a GUI without coding it in a language) but they're intertwined with a specific library. And neither are really nice looking or friendly to human editting. |
11 | 0 | NaN | 680 | 0 |
5319 | NaN | erm.. HTML? (trying to be funny here... while we wait for real answers..) |
8 | 0 | NaN | 380 | 5313 |
5320 | NaN | The wxWidgets (formerly known as wxWindows) library might be what you're looking for. There's a particularly good port for Python, wxPython, as well as versions for different languages -- C#, C++, Perl and Ruby come to mind -- and for various GUIs: Win32, Mac OS X, GTK+, X11, Motif, WinCE. The library's been around for a while and is pretty solid. |
1 | 0 | NaN | 216 | 5313 |
5340 | NaN | Not sure if this is what you're looking for, but there's Glade (or Windows download) which is a designer for GTK+. It generates an XML file which can then be used to build the GUI in a number of different languages. |
3 | 0 | NaN | 108 | 5313 |
5343 | NaN | Qt (pronounced "cute" by its creators[1]) is a cross-platform application development framework, widely used for the development of GUI programs. Qt uses C++ with several non-standard extensions implemented by an additional pre-processor that generates standard C++ code before compilation. Qt can also be used in several other programming languages; bindings exist for Ada (QtAda)[4], C# (Qyoto/Kimono)[5], Java (Qt Jambi)[6], Pascal, Perl, PHP (PHP-Qt), Ruby (RubyQt), and Python (PyQt). It runs on all major platforms, and has extensive internationalization support. Non-GUI features include SQL database access, XML parsing, thread management, network support and a unified cross-platform API for file handling. |
5 | 0 | NaN | 25 | 5313 |
6616 | NaN | XML User Interface Language. Don't know much about it so not sure if it meets your desires. Post back with your experience if you play with it. |
3 | 3 | user interface language , xml user interface , xml user interface language , | 488 | 5313 |
7496 | NaN | I read a little on XML User Interface Language (XUL) and it looks really robust and well supported. The main problem for me is it's tied to the Gecko rendering engine so it's cross platform the way wxWidgets, QT and GTK+ are cross platform. Also, there Python bindings don't seem as good as those other libraries. GladeXML and XRC seem like better markups |
0 | 4 | seem good libraries , user interface language , xml user interface , xml user interface language , | 680 | 5313 |
8109 | NaN | @Cristian and Antony Cramp: while XUL is a nice choice for UI development (cross-platform, open-source licensed, used in Firefox and other major software), it's certainly not language agnostic. You're tied to Gecko, with JS for scripting. There is experimental support for Python scripting, but it's only experimental, AFAIK. You can define the UI in XUL+JS and use back-end components written in C++ though (there are Python and Java bridges available too). |
1 | 6 | scripting experimental afaik , scripting experimental afaik define , scripting experimental afaik define ui , scripting experimental support , scripting experimental support python , scripting experimental support python scripting , | 1026 | 5313 |
8114 | NaN | I seriously doubt you're going to find a markup language for GIU's that's not tied to a specific library. For such a thing to exist, there would need to be a standardized GUI markup language, with several implementations. |
4 | 0 | NaN | 872 | 5313 |
1476 | How do you express binary literals in Python? | How do you express an integer as a binary number with Python literals? I was easily able to find the answer for hex:
and octal:
How do you use literals to express binary in Python? Summary of Answers
|
251 | 8 | use literals express , use literals express binary , use literals express binary python , using int literal , using int literal python , using int literal python earlier , way express binary , way express binary literals , | 92 | 0 |
1478 | NaN | As far as I can tell Python, up through 2.5, only supports hexadecimal & octal literals. I did find some discussions about adding binary to future versions but nothing definite. |
-1 | 1 | versions nothing definite , | 305 | 1476 |
1479 | NaN | I am pretty sure this is one of the things due to change in Python 3.0 with perhaps bin() to go with hex() and oct(). EDIT: lbrandy's answer is correct in all cases. |
-1 | 1 | things due change python perhaps , | 269 | 1476 |
1484 | NaN |
Another way. |
57 | 0 | NaN | 2089740 | 1476 |
972 | Adding a Method to an Existing Object Instance | I've read that it is possible to add a method to an existing object (e.g. not in the class definition) in Python, I think this is called Monkey Patching (or in some cases Duck Punching). I understand that it's not always a good decision to do so. But, how might one do this? UPDATE 8/04/2008 00:21:01 EST: That looks like a good answer John Downey, I tried it but it appears that it ends up being not a true method. Your example defines the new patch function with an argument of It looks like Python isn't really treating it as a method, but more just as a variable which happens to be a function (and as such is callable). Is there any way to attach an actual method to a class? Oh, and Ryan, that isn't exactly what I was looking for (it isn't a builtin functionality), but it is quite cool nonetheless. |
364 | 0 | NaN | 145 | 0 |
982 | NaN | In Python monkey patching generally works by overwriting a class or functions signature with your own. Below is an example from the Zope Wiki:
That code will overwrite/create a method called speak on the class. In Jeff Atwood's recent post on monkey patching. He shows an example in C# 3.0 which is the current language I use for work. |
14 | 0 | NaN | 200 | 972 |
984 | NaN | I don't know Python syntax, but I know Ruby can do it, and it is rather trivial. Let's say you want to add a method to Array that prints the length to standard out:
If you don't want to modify the whole class, you can just add the method to a single instance of the array, and no other arrays will have the method:
Just be aware of the issues involved in using this feature. Jeff Atwood actually wrote about it not too long ago. |
-6 | 2 | method single instance , print length puts , | 122 | 972 |
2982 | NaN | In Python, there is a difference between functions and bound methods.
Bound methods have been "bound" (how descriptive) to an instance, and that instance will be passed as the first argument whenever the method is called. Callables that are attributes of a class (as opposed to an instance) are still unbound, though, so you can modify the class definition whenever you want:
Previously defined instances are updated as well (as long as they haven't overridden the attribute themselves):
The problem comes when you want to attach a method to a single instance:
The function is not automatically bound when it's attached directly to an instance:
To bind it, we can use the MethodType function in the types module:
This time other instances of the class have not been affected:
More information can be found by reading about descriptors and metaclass programming. |
576 | 8 | method single instance , recent call last , recent call last file , recent call last file stdin , stdin line module , traceback recent call , traceback recent call last , traceback recent call last file , | 99 | 972 |
4600 | NaN | What you're looking for is
|
4 | 0 | NaN | 618 | 972 |
4942 | How to sell Python to a client/boss/person with lots of cash | When asked to create system XYZ and you ask to do it in Python over PHP or Ruby, what are the main features you can mention when they require you to explain it? |
5 | 1 | xyz ask python , | 1384652 | 0 |
4958 | NaN | Focus on the shorter time needed for development/prototype and possibly easier maintenance (none of this may apply against Ruby). |
2 | 0 | NaN | 613 | 4942 |
4978 | NaN | This is one of those cases that really boil down to personal preference or situational details. If you're more comfortable and experienced with Python, then say so. Are they asking you to justify it because they're more comfortable with one of the other environments? After you're done, will the system be passed off to someone else for long-term maintenance? If they ask you to use a technology or language that you're not as familiar with, then make sure they know up-front that it's going to take you longer. |
11 | 0 | NaN | 676 | 4942 |
5014 | NaN | I would consider that using python on a new project is completely dependent on what problem you are trying to solve with python. If you want someone to agree with you that you should use python, then show them how python's features apply specifically to that problem. In the case of web development with python, talk about WSGI and other web libraries and frameworks you could use that would make your life easier. One note for python is that most of the frameworks for python web development can be plugged right into any current project. With ruby on rails, you're practically working in a DSL that anyone who uses your project will have to learn. If they know python, then they can figure out what you are doing with django, etc in a day. I'm only talking about web development because it appears that's what you are going to be working on seeing ruby, python and PHP in the same list. The real message that's important is applying to whatever it is you like about python directly to some problem you are trying to solve. |
3 | 9 | would consider using python , would consider using python new , would make life , would make life easier , would make life easier one , wsgi web libraries , wsgi web libraries frameworks , wsgi web libraries frameworks could , problem trying solve , | 660 | 4942 |
594 | cx_Oracle: How do I iterate over a result set? | There are several ways to iterate over a result set. What are the tradeoff of each? |
25 | 1 | ways iterate result , | 116 | 0 |
595 | NaN | The canonical way is to use the built-in cursor iterator.
You can use
It can be convenient to use this to create a Python list containing the values returned:
This can be useful for smaller result sets, but can have bad side effects if the result set is large.
If you know there's a single row being returned in the result set you can call
Finally, you can loop over the result set fetching one row at a time. In general, there's no particular advantage in doing this over using the iterator.
|
25 | 9 | wait entire result set , wait entire result set returned , way use built , way use built cursor , way use built cursor iterator , row curs fetchall , row curs fetchone , row row curs , curs execute select , | 116 | 594 |
469 | How can I find the full path to a font from its display name on a Mac? | I am using the Photoshop's javascript API to find the fonts in a given PSD. Given a font name returned by the API, I want to find the actual physical font file that that font name corresponds to on the disc. This is all happening in a python program running on OSX so I guess I'm looking for one of:
|
21 | 3 | want find actual , want find actual physical , want find actual physical font , | 147 | 0 |
497 | NaN | open up a terminal (Applications->Utilities->Terminal) and type this in:
This will spit out every file that has the name you want. Warning: there may be alot to wade through. |
4 | 4 | want warning may , want warning may alot , want warning may alot wade , warning may alot , | 50 | 469 |
518 | NaN | I haven't been able to find anything that does this directly. I think you'll have to iterate through the various font folders on the system: |
2 | 0 | NaN | 153 | 469 |
3040 | NaN | Unfortunately the only API that isn't deprecated is located in the ApplicationServices framework, which doesn't have a bridge support file, and thus isn't available in the bridge. If you're wanting to use ctypes, you can use ATSFontGetFileReference after looking up the ATSFontRef. Cocoa doesn't have any native support, at least as of 10.5, for getting the location of a font. |
12 | 3 | wanting use ctypes , wanting use ctypes use , wanting use ctypes use atsfontgetfilereference , | 457 | 469 |
5102 | How do you set up Python scripts to work in Apache 2.0? | I tried to follow a couple of googled up tutorials on setting up mod_python, but failed every time. Do you have a good, step-by step, rock-solid howto? My dev box is OS X, production - Centos. |
14 | 0 | NaN | 556 | 0 |
5129 | NaN | There are two main ways of running Python on Apache. The simplest would be to use CGI and write normal Python scripts while the second is using a web framework like Django or Pylons. Using CGI is straightforward. Make sure your Apache config file has a cgi-bin set up. If not, follow their documentation (http://httpd.apache.org/docs/2.0/howto/cgi.html). At that point all you need to do is place your Python scripts in the cgi-bin directory and the standard output will become the HTTP response. Refer to Python's documentation for further info (https://docs.python.org/library/cgi.html). If you want to use a web framework you'll need to setup mod_python or FastCGI. These steps are dependent on which framework you want to use. Django provides clear instructions on how to setup mod_python and Django with Apache (http://www.djangoproject.com/documentation/modpython/) |
12 | 2 | mod python fastcgi , setup mod python , | 680 | 5102 |
5165 | NaN | Yes, mod_python is pretty confusing to set up. Here's how I did it. In httpd.conf:
and in your application directory:
Repeat the configuration for each python program you wish to have running under mod_python. |
8 | 4 | yes mod python , directory serverbase htdocs , directory serverbase htdocs myapp , serverbase htdocs myapp , | 116 | 5102 |
5168 | NaN | Are you running Python on UNIX or Windows? An alternative to mod_python and FastCGI is mod_wsgi. You can find out more at modwsgi I have built and installed this on Solaris without problems. I had previously tried mod_python but ran into problems with shared libraries as part of the build. There are good install docs available. |
5 | 1 | mod python fastcgi , | 636 | 5102 |
8948 | Accessing mp3 Meta-Data with Python | What is the best way to retrieve mp3 metadata in python? I've seen a couple frameworks out there, but I'm unsure as to which would be the best to use.... Any ideas? |
81 | 2 | would best use , would best use ideas , | 145 | 0 |
8972 | NaN | This toolkit may do what you need. I can't say if it's the "best", but really, if it does what you need, that's all that matters, right? HTH |
1 | 0 | NaN | 722 | 8948 |
8974 | NaN | A simple example from the book Dive Into Python works ok for me, this is the download link, the example is fileinfo.py. Don't know if it's the best, but it can do the basic job. The entire book is available online here. |
6 | 3 | works ok download , works ok download link , works ok download link example , | 394 | 8948 |
8976 | NaN | It can depend on exactly what you want to do in addition to reading the metadata. If it is just simply the bitrate / name etc. that you need, and nothing else, something lightweight is probably best. If you're manipulating the mp3 past that PyMedia may be suitable. There are quite a few, whatever you do get, make sure and test it out on plenty of sample media. There are a few different versions of ID3 tags in particular, so make sure it's not too out of date. Personally I've used this small MP3Info class with luck. It is quite old though. |
1 | 2 | whatever get make sure test , www omniscia org , | 1087 | 8948 |
9358 | NaN | What you're after is the ID3 module. It's very simple and will give you exactly what you need. Just copy the ID3.py file into your site-packages directory and you'll be able to do something like the following:
|
11 | 0 | NaN | 1057 | 8948 |
10845 | NaN | I've used mutagen to edit tags in media files before. The nice thing about mutagen is that it can handle other formats, such as mp4, FLAC etc. I've written several scripts with a lot of success using this API. |
25 | 3 | written several scripts , written several scripts lot , written several scripts lot success , | 912 | 8948 |
8692 | How to use Xpath in Python? | What is the library? Is there a full implementation? How is the library used? Where is its website? |
164 | 0 | NaN | 0 | 0 |
8699 | NaN | The lxml package supports xpath. It seems to work pretty well, although I've had some trouble with the self:: axis. There's also Amara, but I haven't used it personally. |
74 | 3 | xpath seems work , xpath seems work pretty , xpath seems work pretty well , | 207 | 8692 |
9171 | NaN | PyXML works well. You didn't say what platform you're using, however if you're on Ubuntu you can get it with If you're on a Mac, xpath is already installed but not immediately accessible. You can set
In the worst case you may have to build it yourself. This package is no longer maintained but still builds fine and works with modern 2.x Pythons. Basic docs are here. |
2 | 2 | xpath sys platform , py use xmlplus , | 1146 | 8692 |
10846 | NaN | The latest version of elementtree supports XPath pretty well. Not being an XPath expert I can't say for sure if the implementation is full but it has satisfied most of my needs when working in Python. I've also use lxml and PyXML and I find etree nice because it's a standard module. NOTE: I've since found lxml and for me it's definitely the best XML lib out there for Python. It does XPath nicely as well (though again perhaps not a full implementation). |
7 | 5 | xpath nicely well though , xpath nicely well though perhaps , xpath pretty well , xpath pretty well xpath , xpath pretty well xpath expert , | 912 | 8692 |
502 | Get a preview JPEG of a PDF on Windows? | I have a cross-platform (Python) application which needs to generate a JPEG preview of the first page of a PDF. On the Mac I am spawning sips. Is there something similarly simple I can do on Windows? |
27 | 0 | NaN | 147 | 0 |
536 | NaN | You can use ImageMagick's convert utility for this, see some examples in http://studio.imagemagick.org/pipermail/magick-users/2002-May/002636.html :
|
9 | 3 | profile thumbnail jpg , thumbnail follows convert , thumbnail follows convert size , | 161 | 502 |
7073 | NaN | Is the PC likely to have Acrobat installed? I think Acrobat installs a shell extension so previews of the first page of a PDF document appear in Windows Explorer's thumbnail view. You can get thumbnails yourself via the IExtractImage COM API, which you'll need to wrap. VBAccelerator has an example in C# that you could port to Python. |
2 | 0 | NaN | 878 | 502 |
7090 | NaN | ImageMagick delegates the PDF->bitmap conversion to GhostScript anyway, so here's a command you can use (it's based on the actual command listed by the
where This is good for two reasons:
Other things to consider: with the files I've tested, PNG compresses better than JPEG. If you want to use PNG, change the |
25 | 3 | input output input , output input output , output input output input , | 13 | 502 |
3061 | Calling a function of a module from a string with the function's name in Python | What is the best way to go about calling a function given a string with the function's name in a Python program. For example, let's say that I have a module I need to get the return value of the function, which is why I don't just use |
761 | 6 | way go calling function given , whose contents bar , whose contents bar best , best way go , best way go calling , way go calling , | 121 | 0 |
3071 | NaN | Assuming module
As far as that goes, lines 2 and 3 can be compressed to:
if that makes more sense for your use case. You can use |
925 | 1 | getattr foo bar , | 363 | 3061 |
4605 | NaN | Patrick's solution is probably the cleanest. If you need to dynamically pick up the module as well, you can import it like:
|
145 | 3 | well import like , well import like import , well import like import foo , | 618 | 3061 |
2933 | How can I create a directly-executable cross-platform GUI app using Python? | Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is some way to compile it into an executable for Mac, Windows and Linux. The problem being I have no idea where to start or how to write a GUI with it, can anybody shed some light on this and point me in the right direction please? |
171 | 1 | mac windows linux , | 1384652 | 0 |
2937 | NaN | First you will need some GUI library with Python bindings and then (if you want) some program that will convert your python scripts into standalone executables. Cross-platform GUI libraries with Python bindings (Windows, Linux, Mac) Of course, there are many, but the most popular that I've seen in wild are:
Complete list is at http://wiki.python.org/moin/GuiProgramming Single executable (Windows)
Single executable (Linux)
Single executable (Mac)
|
189 | 5 | free commercial projects , gui library python , like py exe , like py exe targets , py exe targets , | 275 | 2933 |
2941 | NaN | You don't need to compile python for Mac/Windows/Linux. It is an interpreted language, so you simply need to have the Python interpreter installed on the system of your choice (it is available for all three platforms). As for a GUI library that works cross platform, Python's Tk/Tcl widget library works very well, and I believe is sufficiently cross platform. Tkinter is the python interface to Tk/Tcl From the python project webpage:
|
0 | 1 | mac windows linux , | 92 | 2933 |
2980 | NaN | Since python is installed on nearly every non-Windows OS by default now, the only thing you really need to make sure of is that all of the non-standard libraries you use are installed. Having said that, it is possible to build executables that include the python interpreter, and any libraries you use. This is likely to create a large executable, however. MacOS X even includes support in the Xcode IDE for creating full standalone GUI apps. These can be run by any user running OS X. |
2 | 3 | since python installed , since python installed nearly , since python installed nearly every , | 188 | 2933 |
12166 | NaN | An alternative tool to py2exe is bbfreeze which generates executables for windows and linux. It's newer than py2exe and handles eggs quite well. I've found it magically works better without configuration for a wide variety of applications. |
13 | 1 | well found magically works , | 995 | 2933 |
12167 | NaN | I'm not sure that this is the best way to do it, but when I'm deploying Ruby GUI apps (not Python, but has the same "problem" as far as .exe's are concerned) on Windows, I just write a short launcher in C# that calls on my main script. It compiles to an executable, and I then have an application executable. |
2 | 0 | NaN | 1344 | 2933 |