User monkut - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T09:24:55Zhttp://stackoverflow.com/feeds/user/24718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1086377/django-error-thrown-by-database-relation-mytable-does-not-exist-for-a-co/1821655#18216551Answer by monkut for Django : Error thrown by database : relation "_mytable" does not exist (for a content_type) . Lost app-namemonkut2009-11-30T18:49:53Z2009-12-02T03:06:20Z<p>I imagine you resolved or worked around this by now, but I ran across the same.</p>
<p>My case sounds a little different than yours, but it took me several hours to figure out so I'll post the issue here for reference.</p>
<p>In my case, I had code in my <strong>model</strong> that was expecting data to be pre-loaded in the database and it wasn't.</p>
<p>The query appeared to work fine when run from shell, however, when I ran the same code in the unittest it would fail with the "relation not found" error.</p>
<p>The reason was that, when run from shell the data I was expecting was <em>already</em> loaded in my DB. However, in the testcase situation (the "manage.py test" behavior is to create an empty db before test) , while I <em>was</em> defining the testcase's fixture, the fixture is not loaded prior to model validation/evaluation. So the expected fixture data didn't exist when I was expecting it.</p>
http://stackoverflow.com/questions/1767210/to-understand-pythons-optparse/1767884#17678840Answer by monkut for To understand Python's optparsemonkut2009-11-20T02:06:52Z2009-11-20T02:06:52Z<p>For using optparse here's what I normally do:</p>
<ol>
<li><p>separate command line parsing from your main code base for better modularization.
(Put the processing right after "if __name__ == "__main__"")</p></li>
<li><p>Let optparse handle your help.
(Use parser.print_help())</p></li>
<li><p>Use the optparse constructs, if you don't like them just parse sys.argv yourself.
(use add_option to define your necessary options)</p></li>
</ol>
<p>Here's how I would write your sample using the optparse library:</p>
<pre><code>def main():
print 'Welcome to the main event!'
if __name__ == '__main__':
import optparse
parser = optparse.OptionParser()
parser.add_option("-e", "--eksponentti", dest="eksponentti",
help="This is help for <eksponentti>.",
default=None)
parser.add_option("-s", "--siirre", dest="siirre",
help="This is help for <siirre>.",
default=None)
parser.add_option("-f", "--figu", dest="figu",
help="This is help for <figu>.",
default=None)
(options, args) = parser.parse_args()
if options.eksponentti and options.siirre and options.figu:
main()
else:
print "ERROR -- Expected Arguments not given!"
parser.print_help()
</code></pre>
<p>Running this without the necessary options will give the following output:
(It's a little prettier than I can format it here...)</p>
<pre><code>ERROR -- Expected Arguments not given! Usage: parm.py [options]
Options:
-h, --help show this help message and exit
-e EKSPONENTTI, --eksponentti=EKSPONENTTI This is help for <eksponentti>.
-s SIIRRE, --siirre=SIIRRE This is help for <siirre>.
-f FIGU, --figu=FIGU This is help for <figu>.
</code></pre>
http://stackoverflow.com/questions/1605861/pythonic-way-to-print-a-table/1605963#16059633Answer by monkut for Pythonic way to print a tablemonkut2009-10-22T09:11:29Z2009-10-22T09:11:29Z<p>Or if your using python 2.6 you can use the <a href="http://docs.python.org/library/string.html?#string-formatting" rel="nofollow">format</a> method of the string:</p>
<p>This defines a dictionary of values, and uses them for dipslay:</p>
<pre><code>>>> values = {'total':93, 'name':'john', 'x':33, 'y':993, 'oldname':'rodger'}
>>> '{total:2}: {name:15} \t ({x}|{y}\t was: {oldname}'.format(**values)
'93: john \t (33|993\t was: rodger'
</code></pre>
http://stackoverflow.com/questions/1591920/python-binary-data-reading/1591926#15919262Answer by monkut for Python binary data readingmonkut2009-10-20T00:54:39Z2009-10-20T00:54:39Z<p>Take a look at the <a href="http://docs.python.org/library/struct.html?#struct.unpack" rel="nofollow">struct.unpack</a> in the struct module.</p>
http://stackoverflow.com/questions/1576340/using-sphinx-to-write-personal-websites-and-blogs/1576635#15766354Answer by monkut for Using Sphinx to write personal websites and blogsmonkut2009-10-16T07:30:40Z2009-10-16T07:30:40Z<p>Doug hellmann, author of the 'Python Module of the Week' does his site using Sphinx.</p>
<p><a href="http://www.doughellmann.com/PyMOTW/" rel="nofollow">http://www.doughellmann.com/PyMOTW/</a></p>
<p>He has several posts which cover sphinx topics that can probably help you on your way:</p>
<p><a href="http://blog.doughellmann.com/search/label/sphinx" rel="nofollow">http://blog.doughellmann.com/search/label/sphinx</a></p>
http://stackoverflow.com/questions/1571272/converting-strptime-into-x-hours-ago/1571391#15713910Answer by monkut for converting strptime into 'X hours ago'monkut2009-10-15T10:01:02Z2009-10-15T10:01:02Z<p>Can you use datetime instead? (Or convert whatever you have into datetime?)</p>
<pre><code>>>> import datetime
>>> created_at = datetime.datetime(2009,10,15, 13)
>>> now = datetime.datetime.now()
>>> delta = now - created_at
>>> hours_ago = '%d Hours Ago' % (delta.seconds/60/60)
>>> hours_ago
'5 Hours Ago'
</code></pre>
http://stackoverflow.com/questions/1570339/does-configuring-djangos-setting-timezone-affect-datetime-datetime-now1Does configuring django's setting.TIME_ZONE affect datetime.datetime.now()?monkut2009-10-15T04:53:56Z2009-10-15T09:25:24Z
<p>The documentation says:</p>
<p><a href="http://docs.djangoproject.com/en/dev/ref/settings/#time-zone" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/settings/#time-zone</a></p>
<blockquote>
<p>Note that this is the time zone to
which Django will convert all
dates/times -- not necessarily the
timezone of the server. For example,
one server may serve multiple
Django-powered sites, each with a
separate time-zone setting.
Normally, Django sets the
os.environ['TZ'] variable to the time
zone you specify in the TIME_ZONE
setting. Thus, all your views and
models will automatically operate in
the correct time zone.</p>
</blockquote>
<p>I've read this serveral times and it's not clear to me what's going on with the TIME_ZONE setting.</p>
<p>Should I be managing utc offsets if I want models with a date-time stamp to display to the users local-time zone? </p>
<p>For example on save use, datetime.datetime.utcnow() instead of datetime.datetime.now(), and in the view do something like:</p>
<pre><code>display_datetime = model.date_time + datetime.timedelta(USER_UTC_OFFSET)
</code></pre>
http://stackoverflow.com/questions/1568058/django-how-do-i-make-fields-non-editable-by-default-in-an-inline-model-formset/1571112#15711120Answer by monkut for Django: How do I make fields non-editable by default in an inline model formset?monkut2009-10-15T08:49:33Z2009-10-15T08:49:33Z<p>I had a question where I wanted to "<a href="http://stackoverflow.com/questions/1409192/auto-generate-form-fields-for-a-form-in-django">Auto-generate form fields</a>", can found a solution for dynamically creating forms, it may help:</p>
<p><a href="http://stackoverflow.com/questions/1409192/auto-generate-form-fields-for-a-form-in-django">http://stackoverflow.com/questions/1409192/auto-generate-form-fields-for-a-form-in-django</a></p>
<p>It's not clean and there's probably a better way to handle this. </p>
<p>How about just sending the data as editable (normal formset) from django and do the value check with javascript, using javascript to toggle the widgets?</p>
http://stackoverflow.com/questions/1541891/python-django-for-loop-creating-database-populated-with-0000-9999/1541936#15419361Answer by monkut for python/django for loop creating database populated with 0000-9999 monkut2009-10-09T05:19:12Z2009-10-13T01:39:21Z<p>There may be positional default arguments, try using keywords:</p>
<pre><code>from django.db import transaction
@transaction.commit_manually
def insert_serials(request):
for i in range(0,10000):
serial = Serial(serial=str(i),closed=False)
serial.save()
transaction.commit()
print 'The for loop is over'
</code></pre>
<p>It's wrapped in a transaction should speed it up a bit.
See <a href="http://docs.djangoproject.com/en/dev/topics/db/transactions/#django-db-transaction-commit-manually" rel="nofollow">transaction.commit_manually</a> for details</p>
http://stackoverflow.com/questions/1540834/how-make-a-better-markdown-for-developer-blog/1540958#15409581Answer by monkut for How make a better markdown for developer blogmonkut2009-10-08T22:52:05Z2009-10-08T22:52:05Z<p>I've been using <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">google-code-prettify</a>, which works pretty well.</p>
<p><strong><a href="http://google-code-prettify.googlecode.com/svn/trunk/README.html" rel="nofollow">Usage</a></strong>:</p>
<p>Put code snippets in <pre class="prettyprint">...</pre> or <code class="prettyprint">...</code> and it will automatically be pretty printed.</p>
http://stackoverflow.com/questions/1518659/python-and-indentation-having-touble-getting-started/1518669#15186691Answer by monkut for Python and indentation, having touble getting started. monkut2009-10-05T07:26:52Z2009-10-06T04:25:52Z<p>Your timer function is not defined. (And your space/tab indentation may be mixed)</p>
<p>See the tutorial (<a href="http://docs.python.org/tutorial/classes.html#class-objects" rel="nofollow">classes</a>) for more details on classes.</p>
<pre><code>class Alarm:
def timer(self):
pass
def main(self):
print ("Timer has Started")
if __name__ == '__main__':
class_inst = Alarm()
class_inst.main()
</code></pre>
<p>If you getting into python read <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a>.<br />
Also, using <a href="http://www.logilab.org/857" rel="nofollow">pylint</a> helps, it will point out indentation and many other errors you'll run across before you 'execute' your code.</p>
http://stackoverflow.com/questions/1507170/urllib2-submitting-a-form-and-then-redirecting/1507434#15074340Answer by monkut for urllib2: submitting a form and then redirectingmonkut2009-10-02T01:57:40Z2009-10-02T01:57:40Z<p>The standard way to follow redirects with urllib2 is to use the <a href="http://docs.python.org/library/urllib2.html#httpredirecthandler-objects" rel="nofollow">HTTPRedirectHandler</a>.
(Not sure what you mean by 'what comes out' but I'm assuming a standard http redirect here, javascript redirect is a different beast)</p>
<pre><code># Created handler
redirectionHandler = urllib2.HTTPRedirectHandler()
# 2 apply the handler to an opener
opener = urllib2.build_opener(redirectionHandler)
# 3. Install the openers
urllib2.install_opener(opener)
request = urllib2.Request('https://some.site/page', data=urllib.urlencode({'key':'value'}))
response = urllib2.urlopen(request)
</code></pre>
<p>See <a href="http://docs.python.org/library/urllib2.html#httpredirecthandler-objects" rel="nofollow">urllib2.HTTPRedirectHandler</a> for details on the handler.</p>
http://stackoverflow.com/questions/1500121/django-how-to-set-initial-values-for-a-field-in-an-inline-model-formset/1502535#15025350Answer by monkut for Django: How to set initial values for a field in an inline model formset?monkut2009-10-01T08:04:13Z2009-10-02T00:13:33Z<p><strong>Standard Method</strong></p>
<p>In your view do something like this:
(Untested)</p>
<pre><code>formset = ArticleFormSet(initial=[{'logged_on_user': request.user}, ...])
</code></pre>
<p>Where 'logged_of_user' is the field name of a single form instance.</p>
<p>See:</p>
<p><a href="http://docs.djangoproject.com/en/dev/topics/forms/formsets/#using-initial-data-with-a-formset" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/forms/formsets/#using-initial-data-with-a-formset</a></p>
<p><strong>post-POST Method</strong></p>
<p>You can also provide the user data via the request once the data is posted.
And apply it in your form processing to whatever models you need.</p>
http://stackoverflow.com/questions/1442618/django-beginner-question-table-relationships/1442678#14426781Answer by monkut for Django beginner question: Table relationshipsmonkut2009-09-18T05:01:46Z2009-09-18T05:07:32Z<p>You could also query by id alone, using the id of the entry.
But since you need <em>post</em> in your case you'll probably want to use jacob's suggestion.
:</p>
<pre><code>def post(request, blog_id):
try:
comments = Comments.objects.filter(blog__pk=blog_id)
.
.
.
</code></pre>
<p>Refer to <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#lookups-that-span-relationships" rel="nofollow">Lookups that span relationships</a> for details.</p>
http://stackoverflow.com/questions/1440233/possible-to-intercept-and-rewrite-email-on-outlook-client-side-using-ironpython/1441579#14415791Answer by monkut for possible to intercept and rewrite email on outlook client side using ironpython?monkut2009-09-17T22:10:01Z2009-09-17T22:10:01Z<p>You can reference the outlook object model here:
<a href="http://msdn.microsoft.com/en-us/library/ms268893.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms268893.aspx</a></p>
<p>Connect to outlook through COM, you'll need <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">pywin32</a>.</p>
<p>There's no python reference that I know of, but you can reference the sample scripts and 'translate' to python. It's difficult at first, but once you understand the objects and their usage in python it's not hard. </p>
<p>Looks like you want to look at:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms268998.aspx" rel="nofollow">How to: Perform Actions When an E-Mail Message Is Received</a></p>
http://stackoverflow.com/questions/1332376/using-utm-with-geodjango0Using UTM with geodjangomonkut2009-08-26T04:48:07Z2009-09-16T23:01:01Z
<p>I'm looking into using the <a href="http://en.wikipedia.org/wiki/Universal%5FTransverse%5FMercator%5Fcoordinate%5Fsystem" rel="nofollow">UTM</a> coordinate system with geodjango.
And I can't figure out how to get the data in properly.</p>
<p>I've been browsing the documentation and it seems that the "<a href="http://geodjango.org/docs/geos.html#geosgeometry-geo-input-srid-none" rel="nofollow">GEOSGeometry(geo_input, srid=None)</a>" or "<a href="http://geodjango.org/docs/gdal.html?highlight=convertion#ogrgeometry" rel="nofollow">OGRGeometry</a>" could be used with an EWKT, but I can't figure out how to format the data.</p>
<p>It looks like the UTM <a href="http://en.wikipedia.org/wiki/SRID" rel="nofollow">SRID</a> is: 2029</p>
<p>From the <a href="http://en.wikipedia.org/wiki/Universal%5FTransverse%5FMercator%5Fcoordinate%5Fsystem" rel="nofollow">wikipedia article</a> the format is written like this: </p>
<p>[<em>UTMZone</em>][<em>N or S</em>] [<em>easting</em>] [<em>northing</em>]</p>
<p><em>17N 630084 4833438</em> </p>
<p>So I tried the following with no luck:</p>
<pre><code>>>> from django.contrib.gis.geos import *
>>> pnt = GEOSGeometry('SRID=2029;POINT(17N 630084 4833438)')
GEOS_ERROR: ParseException: Expected number but encountered word: '17N'
>>>
>>> from django.contrib.gis.gdal import OGRGeometry
>>> pnt = OGRGeometry('SRID=2029;POINT(17N 630084 4833438)')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\lib\site-packages\django\contrib\gis\gdal\geometries.py", line 106, in __init__
ogr_t = OGRGeomType(geom_input)
File "C:\Python26\lib\site-packages\django\contrib\gis\gdal\geomtype.py", line 31, in __init__
raise OGRException('Invalid OGR String Type "%s"' % type_input)
django.contrib.gis.gdal.error.OGRException: Invalid OGR String Type "srid=2029;point(17n 630084 4833438)"
</code></pre>
<p>Are there any example available to show how this is done?</p>
<p>May be I should just do any necessary calulations in UTM and convert to decimal degrees?<br />
In this case does GEOS or other tools in geodjango provide convertion utitilites?</p>
http://stackoverflow.com/questions/1435523/manage-py-syncdb-doesnt-add-tables-for-some-models/1435758#14357582Answer by monkut for manage.py syncdb doesn't add tables for some modelsmonkut2009-09-16T22:06:55Z2009-09-16T22:06:55Z<p>I think I ran across something similar.</p>
<p>I had an issue where a model wasn't being reset.
In this case it turned out that there was an error in my models that wasn't being spit out.</p>
<p>Although I think syncdb, when run, spit out some kind of error.</p>
<p>In any case try to import your models file from the shell and see if you can.</p>
<pre><code>$ manage.py shell
>>> from myapp import models
>>>
</code></pre>
<p>If theres an error in the file this should point it out.</p>
<p>According to your update, it sounds like you may have a cross-import issue.
Instead of:</p>
<pre><code>from app1.models import X
class ModelA(models.Model):
fk = models.ForeignKey(X)
</code></pre>
<p>Try:</p>
<pre><code>class ModelA(models.Model):
fk = models.ForeignKey("app1.X")
</code></pre>
<p>... although I think you should get an error on syncdb.</p>
http://stackoverflow.com/questions/1430395/how-to-perform-a-basic-arithmetics-from-unix-csh-tcsh-shell/1430422#14304223Answer by monkut for how to perform a basic arithmetics from unix csh/tcsh shellmonkut2009-09-16T01:09:22Z2009-09-16T09:11:30Z<p>And you can always use the python interpreter, it's normally included in linux distros.</p>
<p><a href="http://docs.python.org/tutorial/introduction.html#using-python-as-a-calculator" rel="nofollow">http://docs.python.org/tutorial/introduction.html#using-python-as-a-calculator</a></p>
<pre><code>$ python
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> 2+2
4
>>> # This is a comment
... 2+2
4
>>> 2+2 # and a comment on the same line as code
4
>>> (50-5*6)/4
5
>>> # Integer division returns the floor:
... 7/3
2
>>> 7/-3
-3
>>> # use float to get floating point results.
>>> 7/3.0
2.3333333333333335
</code></pre>
<p>The equal sign ('=') is used to assign a value to a variable. Afterwards, no result is displayed before the next interactive prompt:</p>
<pre><code>>>> width = 20
>>> height = 5*9
>>> width * height
900
</code></pre>
<p>And of course there's the <a href="http://docs.python.org/library/math.html" rel="nofollow">math</a> module which should solve most of your calculator needs.</p>
<pre><code>>>> import math
>>> math.pi
3.1415926535897931
>>> math.e
2.7182818284590451
>>> math.cos() # cosine
>>> math.sqrt()
>>> math.log()
>>> math.log10()
</code></pre>
http://stackoverflow.com/questions/1409192/auto-generate-form-fields-for-a-form-in-django2Auto-generate form fields for a Form in djangomonkut2009-09-11T05:51:26Z2009-09-14T01:29:43Z
<p>I have some models and I want to generate a multi-selection form from this data.
So the form would contain an entry for each category and the choices would be the skills in that category.</p>
<p><strong>models.py</strong></p>
<pre><code>class SkillCategory(models.Model):
name = models.CharField(max_length=50)
class Skill(models.Model):
name = models.CharField(max_length=50)
category = models.ForeignKey(SkillCategory)
</code></pre>
<p>Is there a way to auto-generate the form fields?
I know I can manually add a 'SkillCategory' entry in the form for each SkillCategory, but the reason to have it as a model is so skills and skillcategories can be edited freely.</p>
<p>I want to do something like this:
(I tried this, but didn't get it to work, don't remember the exact error...)</p>
<p><strong>forms.py</strong></p>
<pre><code>class SkillSelectionForm(forms.Form):
def __init__(*args, **kwargs):
super(SkillSelectionForm, self).__init__(*args, **kwargs)
for c in SkillCategory.objects.all():
category_skills = [(pk, s.name) for s in c.skill_set.all()]
setattr(self, c.name, forms.MultipleChoiceField(choices=category_skills, widget=forms.CheckboxSelectMultiple))
</code></pre>
<p><hr /></p>
<p><strong>SOLUTION</strong> </p>
<p>This creates a form field entry using the SkillCategory.name and assigns choices as those in Skill. field_name/display_name are used to avoid issues with non-ascii <em>category names</em>.</p>
<p><strong>forms.py</strong></p>
<pre><code>def get_categorized_skills():
skills = {}
for s in Skill.objects.values('pk', 'name', 'category__name').order_by('category__name'):
if s['category__name'] not in skills.keys():
skills[s['category__name']] = []
skills[s['category__name']].append((s['pk'], s['name']))
return skills
class SkillSelectionForm(forms.Form):
def __init__(self, *args, **kwargs):
super(SkillSelectionForm, self).__init__(*args, **kwargs)
skills = get_categorized_skills()
for idx, cat in enumerate(skills.keys()):
field_name = u'category-{0}'.format(idx)
display_name = cat
self.fields[field_name] = forms.MultipleChoiceField(choices=skills[cat], widget=forms.CheckboxSelectMultiple, label=display_name)
</code></pre>
http://stackoverflow.com/questions/1117764/geodjango-postgis-gpl1geodjango + PostGIS = GPL?monkut2009-07-13T04:57:07Z2009-09-11T09:31:10Z
<p>I always get confused with licenses, I'm reading up again, but I'm sure someone out there already understands this and may be able to explain it more clearly.</p>
<p>I'm trying to get my company to use geodjango, and being a typical large enterprise company they don't want to open-source the resulting project. And therefore opposed to touching anything stamped "GPL".</p>
<p>Looking at the geodjango stack with the recommended postgresql the licenses are:</p>
<p><strong>Django</strong> - BSD license</p>
<p><strong>Postgresql</strong> - BSD license</p>
<p><strong>PostGIS</strong> - <em>GPL</em></p>
<p><strong>GEOS</strong> - LGPL</p>
<p><strong>PROJ.4</strong> - MIT license</p>
<p><strong>GDAL</strong> - MIT/X license</p>
<p><strong>psycopg2</strong> - <em>GPL</em></p>
<p>The wikipedia entry on gpl says the following:</p>
<blockquote>
<p>Many of the most common free software licenses, such as the original MIT/X license, the
BSD license (in its current 3-clause form), and the LGPL, are "GPL-compatible". That
is, their code can be combined with a program under the GPL without conflict (the new
combination would have the GPL applied to the whole).</p>
</blockquote>
<p>From wikipedia's GPL entry, "Compatibility and multi-licensing": <a href="http://en.wikipedia.org/wiki/Gpl" rel="nofollow">http://en.wikipedia.org/wiki/Gpl</a></p>
<p>Does using psycopg2/PostGIS components with geodjango, make the resulting project's license GPL?
If so, what are the alternatives?</p>
<p><strong>UPDATE</strong></p>
<p><em>psycopg2</em> has a clause to specifically address how GPL is applied, thanks piquadrat.</p>
http://stackoverflow.com/questions/1392413/calculating-a-directory-size-using-python/1392549#13925497Answer by monkut for Calculating a directory size using Python?monkut2009-09-08T07:48:15Z2009-09-08T08:17:09Z<p>This grabs subdirectories:</p>
<pre><code>import os
start_path = '.'
total_size = 0
for dirpath, dirnames, filenames in os.walk(start_path):
for f in filenames:
fp = os.path.join(dirpath, f)
total_size += os.stat(fp).st_size
</code></pre>
<p>And a oneliner for fun using <a href="http://docs.python.org/library/os.html?highlight=shutil#os.listdir" rel="nofollow">os.listdir</a>:</p>
<pre><code>sum([os.stat(f).st_size for f in os.listdir('.') if os.path.isfile(f)])
</code></pre>
<p>Reference:</p>
<p><a href="http://docs.python.org/library/os.html?highlight=shutil#os.walk" rel="nofollow">os.walk</a></p>
<p><a href="http://docs.python.org/library/os.html?highlight=shutil#os.stat" rel="nofollow">os.stat</a> - *st_size* Gives the size in bytes</p>
http://stackoverflow.com/questions/38601/using-django-time-date-widgets-in-custom-form/1392329#13923291Answer by monkut for Using Django time/date widgets in custom formmonkut2009-09-08T06:42:05Z2009-09-08T06:42:05Z<p>I find myself referencing this post a lot, and found that the <a href="http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#overriding-the-default-field-types" rel="nofollow">documentation</a> defines a <em>slightly</em> less hacky way to override default widgets. </p>
<p>(<em>No need to override the ModelForm's __init__ method</em>)</p>
<p>However, you still need to wire your js and css appropriatly as Carl mentions.</p>
<p><strong>forms.py</strong></p>
<pre><code>from django import forms
from my_app.models import Product
from django.contrib.admin import widgets
class ProductForm(forms.ModelForm):
mydate = forms.DateField(widget=widgets.AdminDateWidget)
mytime = forms.TimeField(widget=widgets.AdminTimeWidget)
mydatetime = forms.DateTimeField(widget=widgets.AdminSplitDateTime)
class Meta:
model = Product
</code></pre>
<p>Reference <a href="http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#field-types" rel="nofollow">Field Types</a> to find the default form fields.</p>
http://stackoverflow.com/questions/775351/os-path-exists-for-files-in-your-path1os.path.exists() for files in your Path?monkut2009-04-22T01:09:31Z2009-09-07T14:02:16Z
<p>I commonly use os.path.exists() to check if a file is there before doing anything with it.</p>
<p>I've run across a situation where I'm calling a executable that's in the configured env path, so it can be called without specifying the abspath.</p>
<p>Is there something that can be done to check if the file exists before calling it?
(I may fall back on try/except, but first I'm looking for a replacement for os.path.exists())</p>
<p>btw - I'm doing this on windows.</p>
http://stackoverflow.com/questions/1377446/html-to-pdf-for-a-django-site/1377604#13776042Answer by monkut for html to pdf for a Django sitemonkut2009-09-04T06:50:54Z2009-09-04T06:50:54Z<p>Django documentation is deep and covers a lot.
Did you have any problems with the method suggested there?</p>
<p><a href="http://docs.djangoproject.com/en/dev/howto/outputting-pdf/" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/outputting-pdf/</a></p>
http://stackoverflow.com/questions/1371020/django-flush-response/1371078#13710783Answer by monkut for Django - flush response?monkut2009-09-03T01:58:34Z2009-09-03T01:58:34Z<p>I'm not sure you need to use the flush() function.</p>
<p>Your AJAX request should just go to a django view.</p>
<p>If your steps can be broken down, keep it simple and create a view for each step.
That way one one process completes you can update the user and start the next request via AJAX.</p>
<p><strong>views.py</strong></p>
<pre><code>def do_something(request):
# stuff here
return HttpResponse()
def do_something_else(request):
# more stuff
return HttpResponse()
</code></pre>
http://stackoverflow.com/questions/1365876/for-a-c-java-programmer-what-scripting-language-should-i-learn-first/1365947#13659473Answer by monkut for For a C++/Java Programmer, what scripting language should I learn first?monkut2009-09-02T05:19:03Z2009-09-02T05:19:03Z<p>Try them all (do the tutorials) and use the one you like.</p>
http://stackoverflow.com/questions/1333179/python-critique/1333361#13333612Answer by monkut for Python Critiquemonkut2009-08-26T09:09:35Z2009-08-26T09:09:35Z<p>unicode integration in 2.X. Having u"string" everywhere is ugly, and it's easy to miss handling encoding properly. Some modules expect str instead of unicode, etc...</p>
<p>(Luckily it seems pretty much fixed in 3.X)</p>
http://stackoverflow.com/questions/1326169/executing-python-scripts-in-android/1326235#13262354Answer by monkut for Executing Python Scripts in Androidmonkut2009-08-25T05:32:53Z2009-08-25T05:32:53Z<p>I remember reading about this awhile back as well.
It's not on the android <a href="http://developer.android.com/index.html" rel="nofollow">dev site</a>.</p>
<p>It's a separate project, <a href="http://code.google.com/p/android-scripting/" rel="nofollow">android-scripting</a>.</p>
<p>Python API:
<a href="http://code.google.com/p/android-scripting/wiki/PythonAndroidAPI" rel="nofollow">http://code.google.com/p/android-scripting/wiki/PythonAndroidAPI</a></p>
<p>From the API Page:</p>
<blockquote>
<p>ASE allows Python scripts to interact
with the system over JSON RPC calls
(see the Javadoc for the AndroidProxy
class for details). This is made
mostly transparent using the "android"
Python module. A few example scripts
are installed with ASE. These
instructions are primarily example
based and assume that you are familiar
with the Python scripting language.
You can try out these snippets in an
interactive ASE Python terminal.</p>
</blockquote>
http://stackoverflow.com/questions/1309885/english-site-on-japanese-language-operating-system/1309935#13099352Answer by monkut for English site on Japanese language Operating Systemmonkut2009-08-21T03:15:07Z2009-08-21T04:46:22Z<p>I don't think there are any strong reasons not to use UTF-8. You never know where strange characters may leak in.</p>
<p>Any incoming data should be processed and re-encoded.
With html forms you can supply the following tag:</p>
<pre><code><input type="hidden" name="_charset_" value="" />
</code></pre>
<p>All browsers should populate this with the charset the user is using, you can then use this to decode/re-encode the input.</p>
<p>Also, if you haven't read it, read Joel's post on Unicode:
<a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">http://www.joelonsoftware.com/articles/Unicode.html</a></p>
http://stackoverflow.com/questions/1304025/python-string-interpolation-using-dictionary-and-strings/1304483#13044830Answer by monkut for Python string interpolation using dictionary and stringsmonkut2009-08-20T07:17:00Z2009-08-20T07:17:00Z<p>And of course you could use the newer (from 2.6) <a href="http://docs.python.org/library/string.html#format-string-syntax" rel="nofollow"><strong>.format</strong></a> string method:</p>
<pre><code>>>> mydict = {"path": "/var/blah"}
>>> curr = "1.1"
>>> prev = "1.0"
>>>
>>> s = "path: {0} curr: {1} prev: {2}".format(mydict['path'], curr, prev)
>>> s
'path: /var/blah curr: 1.1 prev: 1.0'
</code></pre>
<p>From the <a href="http://docs.python.org/library/stdtypes.html#str.format" rel="nofollow">str.format()</a> documentation:</p>
<blockquote>
<p>This method of string formatting is
the new standard in Python 3.0, and
should be preferred to the %
formatting described in <a href="http://docs.python.org/library/stdtypes.html?highlight=format#string-formatting" rel="nofollow">String Formatting Operations</a> in new code.</p>
</blockquote>
http://stackoverflow.com/questions/1875316/validate-image-size-in-django-admin/1875453#1875453Comment by monkut on Validate image size in django adminmonkut2009-12-09T17:21:28Z2009-12-09T17:21:28ZI was too slow, here's the related link:
<a href="http://docs.djangoproject.com/en/dev/ref/forms/validation/#cleaning-a-specific-field-attribute" rel="nofollow">docs.djangoproject.com/en/dev/…</a>http://stackoverflow.com/questions/1821632/making-windows-executables-from-django-applicationsComment by monkut on Making Windows executables from Django applicationsmonkut2009-11-30T19:22:47Z2009-11-30T19:22:47ZSounds like all kinds of trouble to me, but I'm interested to see if there's a reasonable solution.http://stackoverflow.com/questions/1788145/searching-for-python-http-libComment by monkut on Searching for Python http libmonkut2009-11-24T08:36:55Z2009-11-24T08:36:55ZUpdate the question with specifics, you'll get better answers.http://stackoverflow.com/questions/1767210/to-understand-pythons-optparse/1767884#1767884Comment by monkut on To understand Python's optparsemonkut2009-11-20T14:34:54Z2009-11-20T14:34:54ZThanks, john. Yes, options.<option> is where items created with 'add_option' are accessed. Using the 'add_option' command I'm creating an option and defaulting it to None. This will evaluate to 'False' in the if-clause. So if all the options are not provided you will see the error message and 'help' will be displayed.http://stackoverflow.com/questions/1725682/working-with-json-in-python-2-6/1725769#1725769Comment by monkut on Working with JSON in Python 2.6?monkut2009-11-13T01:24:22Z2009-11-13T01:24:22Z... which is just a list of keys anyway so pprint doesn't given you anything extra :phttp://stackoverflow.com/questions/1725682/working-with-json-in-python-2-6/1725769#1725769Comment by monkut on Working with JSON in Python 2.6?monkut2009-11-13T01:21:54Z2009-11-13T01:21:54Zimport pprint; pprint.pprint(mydict.keys())http://stackoverflow.com/questions/1571272/converting-strptime-into-x-hours-ago/1571391#1571391Comment by monkut on converting strptime into 'X hours ago'monkut2009-10-15T10:41:06Z2009-10-15T10:41:06Zdatetime makes dates/times much more manageable, I rarely find myself using time.http://stackoverflow.com/questions/1570339/does-configuring-djangos-setting-timezone-affect-datetime-datetime-now/1570466#1570466Comment by monkut on Does configuring django's setting.TIME_ZONE affect datetime.datetime.now()?monkut2009-10-15T06:43:28Z2009-10-15T06:43:28ZAnyway, as you mention it sounds like a good idea just to use UTC time.http://stackoverflow.com/questions/1570339/does-configuring-djangos-setting-timezone-affect-datetime-datetime-now/1570466#1570466Comment by monkut on Does configuring django's setting.TIME_ZONE affect datetime.datetime.now()?monkut2009-10-15T06:41:07Z2009-10-15T06:41:07ZI just tried to repeat your test here using the manage shell and it didn't seem to... strange. >>> datetime.datetime.now() datetime.datetime(2009, 10, 15, 15, 37, 47, 869000) >>> import settings >>> settings.TIME_ZONE 'Europe/Zurich' >>> datetime.datetime.now() datetime.datetime(2009, 10, 15, 15, 37, 59, 838000) >>> exit() PS D:\> date Thu Oct 15 15:38:25 TST 2009http://stackoverflow.com/questions/1565173/python-imports-at-the-beginning-of-the-main-program-pep-8Comment by monkut on Python: imports at the beginning of the main program & PEP 8monkut2009-10-14T22:34:27Z2009-10-14T22:34:27Zyeah, just some fyi.http://stackoverflow.com/questions/1565173/python-imports-at-the-beginning-of-the-main-program-pep-8Comment by monkut on Python: imports at the beginning of the main program & PEP 8monkut2009-10-14T11:59:35Z2009-10-14T11:59:35Zoptparse is available for command-line parsing, better than using sys.argv and doing your own parsing.http://stackoverflow.com/questions/1562759/can-python-print-a-function-definitionComment by monkut on Can Python print a function definition?monkut2009-10-14T01:36:50Z2009-10-14T01:36:50ZAnd from interactive mode you can use help(function) to display the docstring for the function.http://stackoverflow.com/questions/1560092/optparse-library-callback-action-while-storing-argComment by monkut on Optparse library - callback action while storing argmonkut2009-10-13T13:24:04Z2009-10-13T13:24:04ZIf your using optparse it will generate the help info for you automatically. use "parser.print_help()".http://stackoverflow.com/questions/1541891/python-django-for-loop-creating-database-populated-with-0000-9999/1541936#1541936Comment by monkut on python/django for loop creating database populated with 0000-9999 monkut2009-10-13T01:38:39Z2009-10-13T01:38:39ZI agree the 'else' statement there can be confusing, I'll remove it, but it should work fine.
From the docs:
Loop statements may have an else clause; it is executed when the loop terminates through exhaustion of the list (with for) or when the condition becomes false (with while), but not when the loop is terminated by a break statement. http://stackoverflow.com/questions/1541891/python-django-for-loop-creating-database-populated-with-0000-9999/1541936#1541936Comment by monkut on python/django for loop creating database populated with 0000-9999 monkut2009-10-09T06:29:54Z2009-10-09T06:29:54ZStrange, looks simple enough. Whats the full error?