User SilentGhost - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T01:26:07Zhttp://stackoverflow.com/feeds/user/12855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1928718/calling-an-outside-function-in-python/1928836#19288362Answer by SilentGhost for calling an outside function in pythonSilentGhost2009-12-18T15:22:28Z2009-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#19149433Answer by SilentGhost for Python: List to ints to a single number?SilentGhost2009-12-16T14:22:57Z2009-12-16T14:22:57Z<pre><code>>>> 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#19136500Answer by SilentGhost for xml.dom.minidom python issueSilentGhost2009-12-16T10:12:05Z2009-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#19089771Answer by SilentGhost for Python: list problemsSilentGhost2009-12-15T17:15:33Z2009-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#19072190Answer by SilentGhost for How do I check if it's Monday to Friday and the time is between 10 AM to 3 PM?SilentGhost2009-12-15T12:48:17Z2009-12-15T12:48:17Z<pre><code>>>> import datetime
>>> now = datetime.datetime.now()
>>> now
datetime.datetime(2009, 12, 15, 12, 45, 33, 781000)
>>> 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#19002229Answer by SilentGhost for Is there a function that gives me a file name without path?SilentGhost2009-12-14T10:59:47Z2009-12-14T10:59:47Z<pre><code>>>> os.path.basename(r'C:\abc.txt')
'abc.txt'
</code></pre>
<p>for basename only:</p>
<pre><code>>>> base, ext = os.path.splitext(os.path.basename(r'C:\abc.txt'))
>>> base
'abc'
</code></pre>
http://stackoverflow.com/questions/1889385/list-of-dictionaries-in-a-dictionary-in-python/1889441#18894411Answer by SilentGhost for List of dictionaries, in a dictionary - in PythonSilentGhost2009-12-11T17:07:34Z2009-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#18882180Answer by SilentGhost for Replacing all special characters with a Regular ExpressionSilentGhost2009-12-11T13:54:40Z2009-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#18877255Answer by SilentGhost for Simplifying small code example.SilentGhost2009-12-11T12:20:09Z2009-12-11T12:20:09Z<pre><code>>>> tups = ('one', 33), ('two', 45), ('three', 76)
>>> 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#18875691Answer by SilentGhost for python byte to "unsigned 8 bit integer"SilentGhost2009-12-11T11:49:44Z2009-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>>>> b'abc'
b'abc'
>>> _[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#18871691Answer by SilentGhost for Pythonic way to read a set number of lines from a fileSilentGhost2009-12-11T10:25:53Z2009-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#18799403Answer by SilentGhost for Decoding packed data into a structureSilentGhost2009-12-10T09:55:12Z2009-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#18757061Answer by SilentGhost for Python 3 (2.6+) str.format() and regular expressionsSilentGhost2009-12-09T18:02:01Z2009-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>>>> pat= '^(w{{3}}\.)?([0-9A-Za-z-]+\.){{1}}{domainName}$'.format(domainName = 'delivery.com')
>>> pat
'^(w{3}\\.)?([0-9A-Za-z-]+\\.){1}delivery.com$'
>>> 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#18752675Answer by SilentGhost for Importing a module based on installed python version?SilentGhost2009-12-09T16:56:30Z2009-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#18416071Answer by SilentGhost for ValueError: invalid literal for int() with base 10: ''SilentGhost2009-12-03T17:40:45Z2009-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#18688910Answer by SilentGhost for Convert and merge strings into a list in PythonSilentGhost2009-12-08T18:23:35Z2009-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#18687334Answer by SilentGhost for How do I copy an entire directory of files into an existing directory using Python?SilentGhost2009-12-08T17:59:27Z2009-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#18687052Answer by SilentGhost for Why does my Python class claim that I have 2 arguments instead of 1?SilentGhost2009-12-08T17:54:49Z2009-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#18618071Answer by SilentGhost for Another tricky preg_matchSilentGhost2009-12-07T18:05:52Z2009-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#18600901Answer by SilentGhost for Need help understanding how this recursive function is workingSilentGhost2009-12-07T13:47:44Z2009-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#186004710Answer by SilentGhost for How does Casting work in PHP?SilentGhost2009-12-07T13:40:35Z2009-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#18470310Answer by SilentGhost for matching stored keywords/phrases in textSilentGhost2009-12-04T13:44:07Z2009-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>>>> db = {'abc', 'def', 'jhi', 'asdf'}
>>> inpt = {'abc', 'tmp'}
>>> db & 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#18467814Answer by SilentGhost for australian mobile numbers strings formattingSilentGhost2009-12-04T12:51:03Z2009-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#18468967Answer by SilentGhost for Getting python.exe path at run timeSilentGhost2009-12-04T13:19:49Z2009-12-04T13:19:49Z<pre><code>>>> import sys
>>> sys.executable
'C:\\Program Files\\Python31\\pythonw.exe'
</code></pre>
http://stackoverflow.com/questions/1846476/python-mechanize-loses-attributes-on-second-open/1846725#18467254Answer by SilentGhost for Python mechanize loses attributes on second openSilentGhost2009-12-04T12:40:25Z2009-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#18284622Answer by SilentGhost for Optimized dot product in PythonSilentGhost2009-12-01T19:53:42Z2009-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#18086854Answer by SilentGhost for python: conditionally execute code in a "with" blockSilentGhost2009-11-27T13:09:17Z2009-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#17985000Answer by SilentGhost for Python Remove last 3 characters of a string SilentGhost2009-11-25T17:18:32Z2009-11-25T17:18:32Z<pre><code>>>> foo = 'BS1 1AB'
>>> foo.replace(" ", "").rstrip()[:-3].upper()
'BS1'
</code></pre>
http://stackoverflow.com/questions/1791269/python-invalid-syntax-with-test-data-using-pyparser/1791296#17912964Answer by SilentGhost for Python: Invalid Syntax with test data using PyparserSilentGhost2009-11-24T16:41:06Z2009-11-24T16:59:03Z<p>parentheses on a previous line are not closed.</p>
<pre><code>sexp << ( 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#178872810Answer by SilentGhost for How do I remove something form a list, plus string matching? SilentGhost2009-11-24T08:43:48Z2009-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-languageComment by SilentGhost on General questions regarding Python languageSilentGhost2009-12-20T12:59:09Z2009-12-20T12:59:09Z@Fabian: then it must be community wikihttp://stackoverflow.com/questions/1928718/calling-an-outside-function-in-python/1928836#1928836Comment by SilentGhost on calling an outside function in pythonSilentGhost2009-12-18T16:09:46Z2009-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#1928331Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?SilentGhost2009-12-18T14:50:44Z2009-12-18T14:50:44Zjokes are usually posted as community wikihttp://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1928331#1928331Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?SilentGhost2009-12-18T14:19:25Z2009-12-18T14:19:25Zyou're joking, right?http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927729#1927729Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?SilentGhost2009-12-18T14:18:53Z2009-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#1927729Comment by SilentGhost on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?SilentGhost2009-12-18T12:02:26Z2009-12-18T12:02:26Zvery bad solutionhttp://stackoverflow.com/questions/1913871/how-to-open-a-webpage-and-search-for-a-word-in-python/1914679#1914679Comment by SilentGhost on How to open a webpage and search for a word in pythonSilentGhost2009-12-16T13:43:24Z2009-12-16T13:43:24Zhow to copy an answer?http://stackoverflow.com/questions/1911981/how-does-this-max-expression-in-python-work/1914478#1914478Comment by SilentGhost on How does this max() expression in Python work?SilentGhost2009-12-16T13:03:57Z2009-12-16T13:03:57Zbecause it's so far from what OP is trying to do, that it's just frustratinghttp://stackoverflow.com/questions/1911981/how-does-this-max-expression-in-python-work/1914478#1914478Comment by SilentGhost on How does this max() expression in Python work?SilentGhost2009-12-16T12:52:14Z2009-12-16T12:52:14Zthat's so bad, I don't even want to downvote it.http://stackoverflow.com/questions/1914236/python-string-pattern-recognition-compression/1914305#1914305Comment by SilentGhost on Python string pattern recognition/compressionSilentGhost2009-12-16T12:21:52Z2009-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#1914305Comment by SilentGhost on Python string pattern recognition/compressionSilentGhost2009-12-16T12:16:19Z2009-12-16T12:16:19ZOP doesn't know what <code>sometxt</code> and <code>moretxt</code> arehttp://stackoverflow.com/questions/1914236/python-string-pattern-recognition-compressionComment by SilentGhost on Python string pattern recognition/compressionSilentGhost2009-12-16T12:08:58Z2009-12-16T12:08:58Zwait, you don't know what <code>sometxt</code> and <code>moretxt</code> are and where they are? that would be quite a trick thenhttp://stackoverflow.com/questions/1913718/what-does-it-mean-to-a-programmer-when-their-organisation-is-iso-9001-registeredComment by SilentGhost on What does it mean to a programmer when their organisation is ISO 9001 registered?SilentGhost2009-12-16T10:40:44Z2009-12-16T10:40:44Zbecause 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-registeredComment by SilentGhost on What does it mean to a programmer when their organisation is ISO 9001 registered?SilentGhost2009-12-16T10:28:08Z2009-12-16T10:28:08Zshould be community wikihttp://stackoverflow.com/questions/1907196/how-do-i-check-if-its-monday-to-friday-and-the-time-is-between-10-am-to-3-pmComment by SilentGhost on How do I check if it's Monday to Friday and the time is between 10 AM to 3 PM?SilentGhost2009-12-15T15:24:15Z2009-12-15T15:24:15Zso what? does it somehow stop code from running?