User SilentGhost - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T01:26:07Z http://stackoverflow.com/feeds/user/12855 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1928718/calling-an-outside-function-in-python/1928836#1928836 2 Answer by SilentGhost for calling an outside function in python SilentGhost 2009-12-18T15:22:28Z 2009-12-18T16:25:00Z <p>let's see <a href="http://docs.python.org/reference/simple%5Fstmts.html#the-return-statement" rel="nofollow">what docs say</a>:</p> <blockquote> <p><code>return</code> may only occur syntactically nested in a function definition, not within a nested class definition.</p> </blockquote> <p>what you're trying to do, I guess is:</p> <pre><code>from mksfunction import mks_create_sandbox import os.path if not os.path.exists('home/build/test/new_sandbox/project.pj'): mks_create_sandbox() </code></pre> http://stackoverflow.com/questions/1914883/python-list-to-ints-to-a-single-number/1914943#1914943 3 Answer by SilentGhost for Python: List to ints to a single number? SilentGhost 2009-12-16T14:22:57Z 2009-12-16T14:22:57Z <pre><code>&gt;&gt;&gt; int(''.join(j for i in x for j in i)) 4850775602376340 </code></pre> http://stackoverflow.com/questions/1913613/xml-dom-minidom-python-issue/1913650#1913650 0 Answer by SilentGhost for xml.dom.minidom python issue SilentGhost 2009-12-16T10:12:05Z 2009-12-16T10:12:05Z <p>because <code>t.nodeType</code> is not equal to <code>t.TEXT_NODE</code> of course.</p> http://stackoverflow.com/questions/1908961/python-list-problems/1908977#1908977 1 Answer by SilentGhost for Python: list problems SilentGhost 2009-12-15T17:15:33Z 2009-12-15T18:00:58Z <p>First of all, you must drop <code>.readlines()</code> from your list comprehension.<br> Second, <code>l</code> is a list of lists, to access first line just do: <code>l[0]</code>. First element of the first line would then be <code>l[0][0]</code>.</p> <p>The problem with the growing file I believe cannot be solved with such approach, though. If by dynamic you mean file name, rather the file behaviour then you could replace hard-coded file name for the variable that's going to be defined from the user input.</p> http://stackoverflow.com/questions/1907196/how-do-i-check-if-its-monday-to-friday-and-the-time-is-between-10-am-to-3-pm/1907219#1907219 0 Answer by SilentGhost for How do I check if it's Monday to Friday and the time is between 10 AM to 3 PM? SilentGhost 2009-12-15T12:48:17Z 2009-12-15T12:48:17Z <pre><code>&gt;&gt;&gt; import datetime &gt;&gt;&gt; now = datetime.datetime.now() &gt;&gt;&gt; now datetime.datetime(2009, 12, 15, 12, 45, 33, 781000) &gt;&gt;&gt; now.isoweekday() 2 # Tuesday </code></pre> <p>time between 10 a.m. and 3 p.m. is right there as well</p> http://stackoverflow.com/questions/1900216/is-there-a-function-that-gives-me-a-file-name-without-path/1900222#1900222 9 Answer by SilentGhost for Is there a function that gives me a file name without path? SilentGhost 2009-12-14T10:59:47Z 2009-12-14T10:59:47Z <pre><code>&gt;&gt;&gt; os.path.basename(r'C:\abc.txt') 'abc.txt' </code></pre> <p>for basename only:</p> <pre><code>&gt;&gt;&gt; base, ext = os.path.splitext(os.path.basename(r'C:\abc.txt')) &gt;&gt;&gt; base 'abc' </code></pre> http://stackoverflow.com/questions/1889385/list-of-dictionaries-in-a-dictionary-in-python/1889441#1889441 1 Answer by SilentGhost for List of dictionaries, in a dictionary - in Python SilentGhost 2009-12-11T17:07:34Z 2009-12-11T17:07:34Z <p>Example, that you've posted is not a valid python code, I could only imagine that you're trying to do something like this:</p> <pre><code>self.rules[a] = [{b:{'f_expr': c, 'c_expr': d}}] </code></pre> <p>this way <code>self.rules</code> is a dictionary of a list of a dictionary of a dictionary. I bet there is more sane way to do this.</p> http://stackoverflow.com/questions/1888177/replacing-all-special-characters-with-a-regular-expression/1888218#1888218 0 Answer by SilentGhost for Replacing all special characters with a Regular Expression SilentGhost 2009-12-11T13:54:40Z 2009-12-11T13:54:40Z <pre><code>/ä/ae/ </code></pre> <p>If Carl is correct about what replacements you're talking about, that'll do; but regexs are not really required here, it can be done with a simple string function/methods.</p> <p>Of course, for each character you'd need to write new regex.</p> <p>If you wanted to replace them all with a single character, e.g., a question mark (<code>?</code>), you could use the following regex:</p> <pre><code>/[äöüß]/?/ig </code></pre> http://stackoverflow.com/questions/1887690/simplifying-small-code-example/1887725#1887725 5 Answer by SilentGhost for Simplifying small code example. SilentGhost 2009-12-11T12:20:09Z 2009-12-11T12:20:09Z <pre><code>&gt;&gt;&gt; tups = ('one', 33), ('two', 45), ('three', 76) &gt;&gt;&gt; for i, j in tups: print(j) 33 45 76 </code></pre> http://stackoverflow.com/questions/1887506/python-byte-to-unsigned-8-bit-integer/1887569#1887569 1 Answer by SilentGhost for python byte to "unsigned 8 bit integer" SilentGhost 2009-12-11T11:49:44Z 2009-12-11T12:02:08Z <p>bytes/bytearray is a sequence of integers. If you just access an element by its index you'll have an integer:</p> <pre><code>&gt;&gt;&gt; b'abc' b'abc' &gt;&gt;&gt; _[0] 97 </code></pre> <p>By their very definition, bytes and bytearrays contain integers in the <code>range(0, 256)</code>. So they're "unsigned 8-bit integers".</p> http://stackoverflow.com/questions/1885868/pythonic-way-to-read-a-set-number-of-lines-from-a-file/1887169#1887169 1 Answer by SilentGhost for Pythonic way to read a set number of lines from a file SilentGhost 2009-12-11T10:25:53Z 2009-12-11T10:25:53Z <pre><code>f = open('fname') header = [next(f) for _ in range(header_len)] </code></pre> <p>Since you're going to write header back to the new files, you don't need to do anything with it. To write it back to the new file:</p> <pre><code>open('new', 'w').writelines(header + list_of_lines) </code></pre> <p>if you now the number in the old file, <code>list_of_lines</code> would become:</p> <pre><code>list_of_lines = [next(f) for _ in range(chunk_len)] </code></pre> http://stackoverflow.com/questions/1879914/decoding-packed-data-into-a-structure/1879940#1879940 3 Answer by SilentGhost for Decoding packed data into a structure SilentGhost 2009-12-10T09:55:12Z 2009-12-10T09:55:12Z <p>use <a href="http://docs.python.org/library/struct.html" rel="nofollow"><code>struct</code></a> module</p> http://stackoverflow.com/questions/1875676/python-3-2-6-str-format-and-regular-expressions/1875706#1875706 1 Answer by SilentGhost for Python 3 (2.6+) str.format() and regular expressions SilentGhost 2009-12-09T18:02:01Z 2009-12-09T18:02:01Z <p>you first would need to format string and then use regex. It really doesn't worth it to put everything into a single line. Escaping is done by doubling the curly braces:</p> <pre><code>&gt;&gt;&gt; pat= '^(w{{3}}\.)?([0-9A-Za-z-]+\.){{1}}{domainName}$'.format(domainName = 'delivery.com') &gt;&gt;&gt; pat '^(w{3}\\.)?([0-9A-Za-z-]+\\.){1}delivery.com$' &gt;&gt;&gt; re.match(pat, str1) </code></pre> <p>Also, <code>re.match</code> is matching at the beginning of the string, you don't have to put <code>^</code> if you use <code>re.match</code>, you need <code>^</code> if you're using <code>re.search</code>, however.</p> <p>Please note, that <code>{1}</code> in regex is rather redundant.</p> http://stackoverflow.com/questions/1875259/importing-a-module-based-on-installed-python-version/1875267#1875267 5 Answer by SilentGhost for Importing a module based on installed python version? SilentGhost 2009-12-09T16:56:30Z 2009-12-09T16:56:30Z <pre><code>try: import simplejson as json except ImportError: import json </code></pre> <p>of course, it doesn't work around cases when in python-2.5 you don't have <code>simplejson</code> installed, the same as your example.</p> http://stackoverflow.com/questions/1841565/valueerror-invalid-literal-for-int-with-base-10/1841607#1841607 1 Answer by SilentGhost for ValueError: invalid literal for int() with base 10: '' SilentGhost 2009-12-03T17:40:45Z 2009-12-09T10:21:14Z <p>Pythonic way of iterating over a file and converting to int:</p> <pre><code>for line in open(fname): if line.strip(): # line contains eol character(s) n = int(line) # assuming single integer on each line </code></pre> <p>What you're trying to do is slightly more complicated, but still not straight-forward:</p> <pre><code>h = open(fname) for line in h: if line.strip(): [int(next(h).strip()) for _ in range(4)] # list of integers </code></pre> <p>This way it processes 5 lines at the time. Use <code>h.next()</code> instead of <code>next(h)</code> prior to Python 2.6.</p> <p>The reason you had <code>ValueError</code> is because <code>int</code> cannot convert an empty string to the integer. In this case you'd need to either check the content of the string before conversion, or except an error:</p> <pre><code>try: int('') except ValueError: pass # or whatever </code></pre> http://stackoverflow.com/questions/1868857/convert-and-merge-strings-into-a-list-in-python/1868891#1868891 0 Answer by SilentGhost for Convert and merge strings into a list in Python SilentGhost 2009-12-08T18:23:35Z 2009-12-08T18:23:35Z <p>you need to <code>eval</code> them first and then you could sum the results. But I wonder how do you get this strings in the first place?</p> http://stackoverflow.com/questions/1868714/how-do-i-copy-an-entire-directory-of-files-into-an-existing-directory-using-pytho/1868733#1868733 4 Answer by SilentGhost for How do I copy an entire directory of files into an existing directory using Python? SilentGhost 2009-12-08T17:59:27Z 2009-12-08T18:13:12Z <p><a href="http://docs.python.org/library/shutil.html#shutil.copytree" rel="nofollow">docs explicitly state that destination directory should <strong>not</strong> exist</a>:</p> <blockquote> <p>The destination directory, named by <code>dst</code>, must not already exist; it will be created as well as missing parent directories.</p> </blockquote> <p>I think your best bet is to <code>os.walk</code> the second and all consequent directories, <a href="http://docs.python.org/library/shutil.html#shutil.copy2" rel="nofollow"><code>copy2</code></a> directory and files and do additional <code>copystat</code> for directories. After all that's precisely what <code>copytree</code> does as explained in the docs. Or you could <code>copy</code> and <code>copystat</code> each directory/file and <code>os.listdir</code> instead of <code>os.walk</code>.</p> http://stackoverflow.com/questions/1868685/why-does-my-python-class-claim-that-i-have-2-arguments-instead-of-1/1868705#1868705 2 Answer by SilentGhost for Why does my Python class claim that I have 2 arguments instead of 1? SilentGhost 2009-12-08T17:54:49Z 2009-12-08T18:00:01Z <p>You need to explicitly pass <code>self</code> variable, which represents an instance of a class, e.g.:</p> <pre><code>def set(self, file): filepermission = os.stat(file) self.user_read() self.user_write() self.user_exec() </code></pre> <p>It doesn't have to be called <code>self</code> but it's a good convention to follow, and your code will be understood by other programmers.</p> http://stackoverflow.com/questions/1861749/another-tricky-pregmatch/1861807#1861807 1 Answer by SilentGhost for Another tricky preg_match SilentGhost 2009-12-07T18:05:52Z 2009-12-07T18:05:52Z <p>you need to add <code>\b</code> (which stands for word boundary) to your regex like this:</p> <pre><code>'/\b'.$pattern.'\b/i' </code></pre> <p>You seem to have a typo in your code, because either you have a literal closing bracket (and don't match parts of the words) or you have an open closing bracket.</p> http://stackoverflow.com/questions/1860049/need-help-understanding-how-this-recursive-function-is-working/1860090#1860090 1 Answer by SilentGhost for Need help understanding how this recursive function is working SilentGhost 2009-12-07T13:47:44Z 2009-12-07T13:47:44Z <p>variable <code>level</code> exists only in the scope of a function, at the end of function local variables discarded, so for each execution of <code>traverse</code> there will be it's own <code>level</code> dictionary. Nothing will be re-written or over-written.</p> http://stackoverflow.com/questions/1860039/how-does-casting-work-in-php/1860047#1860047 10 Answer by SilentGhost for How does Casting work in PHP? SilentGhost 2009-12-07T13:40:35Z 2009-12-07T13:40:35Z <p>because <code>08</code> and <code>09</code> are not valid octal numbers. <a href="http://docs.php.net/types.integer" rel="nofollow">see warning in docs</a>.</p> http://stackoverflow.com/questions/1846833/matching-stored-keywords-phrases-in-text/1847031#1847031 0 Answer by SilentGhost for matching stored keywords/phrases in text SilentGhost 2009-12-04T13:44:07Z 2009-12-04T13:44:07Z <p>If I understand you correctly, you have a unique set of strings, that you want to compare an input strings against. In this case you could use <code>set</code> to store both processing results and db values. Comparison then could be done as follows:</p> <pre><code>&gt;&gt;&gt; db = {'abc', 'def', 'jhi', 'asdf'} &gt;&gt;&gt; inpt = {'abc', 'tmp'} &gt;&gt;&gt; db &amp; inpt {'abc'} </code></pre> <p>The further conversion to the dictionary is trivial.</p> http://stackoverflow.com/questions/1846735/australian-mobile-numbers-strings-formatting/1846781#1846781 4 Answer by SilentGhost for australian mobile numbers strings formatting SilentGhost 2009-12-04T12:51:03Z 2009-12-04T13:37:54Z <ul> <li>remove non-digits from the input string</li> <li>slice last 9 digits</li> <li>prepend zero and store</li> </ul> <p>To display:</p> <ul> <li>insert spaces where appropriate</li> </ul> <p>Or maybe you could just store already formatted string into the db.</p> <p><strong>edit</strong> (to answer question in comment). This seem to do job just fine:</p> <pre><code>$s = '421123123'; $formatted = '0'.chunk_split($s, 3, ' '); </code></pre> http://stackoverflow.com/questions/1846888/getting-python-exe-path-at-run-time/1846896#1846896 7 Answer by SilentGhost for Getting python.exe path at run time SilentGhost 2009-12-04T13:19:49Z 2009-12-04T13:19:49Z <pre><code>&gt;&gt;&gt; import sys &gt;&gt;&gt; sys.executable 'C:\\Program Files\\Python31\\pythonw.exe' </code></pre> http://stackoverflow.com/questions/1846476/python-mechanize-loses-attributes-on-second-open/1846725#1846725 4 Answer by SilentGhost for Python mechanize loses attributes on second open SilentGhost 2009-12-04T12:40:25Z 2009-12-04T12:40:25Z <p>You never make <em>first</em> <code>.read</code> method call on Browser instance. That's because it doesn't have such method. The <code>Browswer.response</code> has <code>read</code> method, so if you want to get the body of response you'd need to do:</p> <pre><code>response = br.response() response.read() </code></pre> <p>For the future, you could use <code>dir(obj)</code> to see the content of the object <code>obj</code>, be it browser or anything else.</p> http://stackoverflow.com/questions/1828233/optimized-dot-product-in-python/1828462#1828462 2 Answer by SilentGhost for Optimized dot product in Python SilentGhost 2009-12-01T19:53:42Z 2009-12-01T19:53:42Z <p>I don't know about faster, but I'd suggest:</p> <pre><code>sum(i*j for i, j in zip(v1, v2)) </code></pre> <p>it's much easier to read and doesn't require even standard-library modules.</p> http://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-block/1808685#1808685 4 Answer by SilentGhost for python: conditionally execute code in a "with" block SilentGhost 2009-11-27T13:09:17Z 2009-11-27T13:09:17Z <pre><code>if a is True: print 1 </code></pre> <p><a href="http://docs.python.org/reference/compound%5Fstmts.html#the-with-statement" rel="nofollow"><code>with</code> statement</a> is intended to provide a reliable enter-exit context.</p> http://stackoverflow.com/questions/1798465/python-remove-last-3-characters-of-a-string/1798500#1798500 0 Answer by SilentGhost for Python Remove last 3 characters of a string SilentGhost 2009-11-25T17:18:32Z 2009-11-25T17:18:32Z <pre><code>&gt;&gt;&gt; foo = 'BS1 1AB' &gt;&gt;&gt; foo.replace(" ", "").rstrip()[:-3].upper() 'BS1' </code></pre> http://stackoverflow.com/questions/1791269/python-invalid-syntax-with-test-data-using-pyparser/1791296#1791296 4 Answer by SilentGhost for Python: Invalid Syntax with test data using Pyparser SilentGhost 2009-11-24T16:41:06Z 2009-11-24T16:59:03Z <p>parentheses on a previous line are not closed.</p> <pre><code>sexp &lt;&lt; ( alphaword | integer | ( LPAREN + ZeroOrMore(sexp) + RPAREN) </code></pre> <p>Needs more )'s</p> http://stackoverflow.com/questions/1788710/how-do-i-remove-something-form-a-list-plus-string-matching/1788728#1788728 10 Answer by SilentGhost for How do I remove something form a list, plus string matching? SilentGhost 2009-11-24T08:43:48Z 2009-11-24T08:43:48Z <pre><code>the_list = [(a, b) for a, b in the_list if a.isalpha()] </code></pre> http://stackoverflow.com/questions/1932643/general-questions-regarding-python-language Comment by SilentGhost on General questions regarding Python language SilentGhost 2009-12-20T12:59:09Z 2009-12-20T12:59:09Z @Fabian: then it must be community wiki http://stackoverflow.com/questions/1928718/calling-an-outside-function-in-python/1928836#1928836 Comment by SilentGhost on calling an outside function in python SilentGhost 2009-12-18T16:09:46Z 2009-12-18T16:09:46Z <code>pass</code> is a placeholder for code. http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1928331#1928331 Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ? SilentGhost 2009-12-18T14:50:44Z 2009-12-18T14:50:44Z jokes are usually posted as community wiki http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1928331#1928331 Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ? SilentGhost 2009-12-18T14:19:25Z 2009-12-18T14:19:25Z you're joking, right? http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927729#1927729 Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ? SilentGhost 2009-12-18T14:18:53Z 2009-12-18T14:18:53Z @Daniel Bruce: I'd rather downvote the question, so you could get Reversal badge. http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927729#1927729 Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ? SilentGhost 2009-12-18T12:02:26Z 2009-12-18T12:02:26Z very bad solution http://stackoverflow.com/questions/1913871/how-to-open-a-webpage-and-search-for-a-word-in-python/1914679#1914679 Comment by SilentGhost on How to open a webpage and search for a word in python SilentGhost 2009-12-16T13:43:24Z 2009-12-16T13:43:24Z how to copy an answer? http://stackoverflow.com/questions/1911981/how-does-this-max-expression-in-python-work/1914478#1914478 Comment by SilentGhost on How does this max() expression in Python work? SilentGhost 2009-12-16T13:03:57Z 2009-12-16T13:03:57Z because it's so far from what OP is trying to do, that it's just frustrating http://stackoverflow.com/questions/1911981/how-does-this-max-expression-in-python-work/1914478#1914478 Comment by SilentGhost on How does this max() expression in Python work? SilentGhost 2009-12-16T12:52:14Z 2009-12-16T12:52:14Z that's so bad, I don't even want to downvote it. http://stackoverflow.com/questions/1914236/python-string-pattern-recognition-compression/1914305#1914305 Comment by SilentGhost on Python string pattern recognition/compression SilentGhost 2009-12-16T12:21:52Z 2009-12-16T12:21:52Z @mavnn: Let's read it again: <i>namely I don't know what the pattern is going to be.</i> http://stackoverflow.com/questions/1914236/python-string-pattern-recognition-compression/1914305#1914305 Comment by SilentGhost on Python string pattern recognition/compression SilentGhost 2009-12-16T12:16:19Z 2009-12-16T12:16:19Z OP doesn't know what <code>sometxt</code> and <code>moretxt</code> are http://stackoverflow.com/questions/1914236/python-string-pattern-recognition-compression Comment by SilentGhost on Python string pattern recognition/compression SilentGhost 2009-12-16T12:08:58Z 2009-12-16T12:08:58Z wait, you don't know what <code>sometxt</code> and <code>moretxt</code> are and where they are? that would be quite a trick then http://stackoverflow.com/questions/1913718/what-does-it-mean-to-a-programmer-when-their-organisation-is-iso-9001-registered Comment by SilentGhost on What does it mean to a programmer when their organisation is ISO 9001 registered? SilentGhost 2009-12-16T10:40:44Z 2009-12-16T10:40:44Z because it's a poll, you're asking about subjective experiences, the question won't have a single correct answer. http://stackoverflow.com/questions/1913718/what-does-it-mean-to-a-programmer-when-their-organisation-is-iso-9001-registered Comment by SilentGhost on What does it mean to a programmer when their organisation is ISO 9001 registered? SilentGhost 2009-12-16T10:28:08Z 2009-12-16T10:28:08Z should be community wiki http://stackoverflow.com/questions/1907196/how-do-i-check-if-its-monday-to-friday-and-the-time-is-between-10-am-to-3-pm Comment by SilentGhost on How do I check if it's Monday to Friday and the time is between 10 AM to 3 PM? SilentGhost 2009-12-15T15:24:15Z 2009-12-15T15:24:15Z so what? does it somehow stop code from running?