User muhuk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:24:48Z http://stackoverflow.com/feeds/user/42188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/502916/django-how-to-create-a-model-dynamically-just-for-testing 2 Django: How to create a model dynamically just for testing muhuk 2009-02-02T11:35:52Z 2009-12-01T16:24:59Z <p>I have a Django app that requires a <code>settings</code> attribute in the form of:</p> <pre><code>RELATED_MODELS = ('appname1.modelname1.attribute1', 'appname1.modelname2.attribute2', 'appname2.modelname3.attribute3', ...) </code></pre> <p>Then hooks their post_save signal to update some other fixed model depending on the <code>attributeN</code> defined.</p> <p>I would like to test this behaviour and tests should work even if this app is the only one in the project (except for its own dependencies, no other wrapper app need to be installed). How can I create and attach/register/activate mock models just for the test database? (or is it possible at all?)</p> <p>Solutions that allow me to use test fixtures would be great.</p> http://stackoverflow.com/questions/1709770/how-does-wrapping-an-unsafe-python-method-e-g-os-chdir-in-a-class-make-it-threa/1709847#1709847 -1 Answer by muhuk for How does wrapping an unsafe python method (e.g os.chdir) in a class make it thread/exception safe? muhuk 2009-11-10T17:46:55Z 2009-11-10T17:46:55Z <p>This code alone is neither thread-safe nor exception-safe. Actually I'm not really sure what you mean by exception-safe. Following code comes to mind:</p> <pre><code>try: # something thrilling except: pass </code></pre> <p>And this is a terrible idea. Exceptions are not for guarding against. Well written code should <a href="http://nedbatchelder.com/text/exceptions-vs-status.html" rel="nofollow">catch exceptions</a> and do something useful with them.</p> http://stackoverflow.com/questions/1708349/use-a-descriptor-edit-not-a-single-decorator-for-multiple-attributes/1708470#1708470 3 Answer by muhuk for Use a Descriptor (EDIT: Not a single decorator) for multiple attributes? muhuk 2009-11-10T14:44:42Z 2009-11-10T14:44:42Z <p>You can try using a <a href="http://docs.python.org/reference/datamodel.html#implementing-descriptors" rel="nofollow">descriptor</a>:</p> <pre><code>class BooleanDescriptor(object): def __init__(self, attr): self.attr = attr def __get__(self, instance, owner): return getattr(instance, self.attr) def __set__(self, instance, value): if value in (True, False): return setattr(instance, self.attr, value) else: raise TypeError class Foo(object): _bar = False bar = BooleanDescriptor('_bar') </code></pre> <h3>EDIT:</h3> <p>As S.Lott mentioned, python favors <a href="http://en.wikipedia.org/wiki/Duck%5Ftyping" rel="nofollow">Duck Typing</a> over type checking.</p> http://stackoverflow.com/questions/1605706/django-how-to-detect-if-translation-is-activated 1 Django: How to detect if translation is activated? muhuk 2009-10-22T08:18:24Z 2009-11-08T15:59:48Z <p><code>django.utils.translation.get_language()</code> returns default locale if translation is not activated. Is there a way to find out whether the translation is activated (via <code>translation.activate()</code>) or not?</p> http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively 1 How to profile a Django custom management command exclusively muhuk 2009-11-06T11:54:56Z 2009-11-07T16:40:05Z <p>I would like to profile a custom management command that is relatively CPU intensive (renders an image using PIL). When I use the following command I get all sorts of Django modules (admin, ORM etc) in my profiling results:</p> <pre><code>python -m cProfile manage.py testrender </code></pre> <p>I have removed all imports that can potentially import Django but I am guessing the following is the culprit:</p> <pre><code>from django.core.management.base import BaseCommand, CommandError </code></pre> <p>Is there a way to filter out <code>cProfile</code> results? (only filenames are shown, no paths) Or, is there any other way to exclude/include respective modules/packages from profiling?</p> http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively/1693616#1693616 1 Answer by muhuk for How to profile a Django custom management command exclusively muhuk 2009-11-07T16:40:05Z 2009-11-07T16:40:05Z <p>I solved this problem the following way:</p> <pre><code>from cProfile import Profile from django.core.management.base import BaseCommand class Command(BaseCommand): ... def _handle(self, *args, **options): # Actual code I want to profile pass def handle(self, *args, **options): if options['profile']: profiler = Profile() profiler.runcall(self._handle, *args, **options) profiler.print_stats() else: self._handle(*args, **options) </code></pre> <p>This way profiling statistics are gathered within the scope of <code>_handle</code>. So instead of:</p> <pre><code>python -m cProfile manage.py testrender </code></pre> <p>I'll have to run:</p> <pre><code>python manage.py testrender --profile </code></pre> <p>which is even better.</p> http://stackoverflow.com/questions/1685330/why-we-should-perfer-to-store-the-serialized-data-not-the-raw-code-to-db/1690498#1690498 0 Answer by muhuk for Why we should perfer to store the serialized data not the raw code to DB? muhuk 2009-11-06T21:14:44Z 2009-11-06T21:14:44Z <p>If there is any possibility of manipulating this data on DB or creating reports from it; I would seriously consider unpacking it onto a table. A simple table with <code>name</code>, <code>key</code> and <code>value</code> columns would give you all the power of your relational database. Depending on edits it might even perform better than fetch->modify->dump.</p> http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively/1687532#1687532 0 Answer by muhuk for How to profile a Django custom management command exclusively muhuk 2009-11-06T13:15:57Z 2009-11-06T13:15:57Z <p>If I can't find any answers. <a href="http://code.google.com/p/jrfonseca/wiki/Gprof2Dot" rel="nofollow">Gprof2Dot</a> as <a href="http://stackoverflow.com/questions/843671/profiling-in-python-who-called-the-function/843725#843725">explained here</a> can be an acceptable hack.</p> <p>It doesn't filter out modules I'm not interested, but hopefully it will make it easier to inspect the results visually seperating my code and Django modules.</p> http://stackoverflow.com/questions/1596054/django-forms-making-a-disabled-field-persist-between-validations/1599190#1599190 1 Answer by muhuk for Django forms: making a disabled field persist between validations muhuk 2009-10-21T07:07:06Z 2009-10-21T07:07:06Z <p>Browsers don't POST disabled fields.</p> <p>You can try to copy <code>field</code>s initial value to <code>mock_field</code> in your Form's <code>__init__</code></p> <pre><code>def __init__(self, *args, **kwargs): super(SomeForm, self).__init__(*args, **kwargs) mock_initial = self.fields['field'].initial self.fields['mock_field'].initial = mock_initial </code></pre> <p>Code is not tested. Normally you would be concerned about <code>form.data</code> as well, but in this case it won't be different than <code>initial</code></p> http://stackoverflow.com/questions/1511256/django-how-to-access-originating-instance-from-a-relatedmanager 0 Django: How to access originating instance from a RelatedManager? muhuk 2009-10-02T18:56:34Z 2009-10-03T00:00:22Z <p>I would like to access the <code>Foo</code> instance <code>foo</code> within my manager method <code>baz</code>:</p> <pre><code>foo.bar_set.baz() </code></pre> <p><code>baz</code> would normally take an argument of <code>Foo</code> type:</p> <pre><code>BarManager(models.Manager): def baz(self, foo=None): if foo is None: # assume this call originates from # a RelatedManager and set `foo`. # Otherwise raise an exception # do something cool with foo </code></pre> <p>This way both the first query above and the following one works identically:</p> <pre><code>Bar.objects.baz(foo) </code></pre> <p><code>Bar</code> would have a ForeignKey to <code>Foo</code>:</p> <pre><code>class Bar(models.Model): foo = models.ForeignKey(Foo) objects = BarManager() </code></pre> http://stackoverflow.com/questions/1292951/display-django-form-inputs-on-thanks-page/1332943#1332943 0 Answer by muhuk for Display Django form inputs on thanks page muhuk 2009-08-26T07:30:28Z 2009-08-26T07:30:28Z <p>I'm not sure if I understand what you are trying to do.</p> <p>But if you want to render form values in plain text you can try <a href="http://github.com/muhuk/django-renderformplain/tree/master" rel="nofollow">django-renderformplain</a>. Just initalize your form with POST (or GET) data as you would in any other form processing view, and pass your <strong>form</strong> instance in the context.</p> http://stackoverflow.com/questions/690688/django-permalinks-for-admin 0 Django: Permalinks for Admin muhuk 2009-03-27T17:20:51Z 2009-08-11T00:06:51Z <p>I know the link template to reach an object is like following:</p> <pre><code>"{{ domain }}/{{ admin_dir }}/{{ appname }}/{{ modelname }}/{{ pk }}" </code></pre> <p>Is there a way built-in to get a permalink for an object?</p> <pre><code>from django.contrib import admin def get_admin_permalink(instance, admin_site=admin.site): # returns admin URL for instance change page raise NotImplemented </code></pre> <h3>EDIT</h3> <p>It seems in v1.1 <a href="http://www.codekoala.com/blog/2009/feb/24/pluggable-django-apps-and-djangos-admin/" rel="nofollow"><code>admin</code> has named URLs</a>. Unfortunately it's not yet released.</p> http://stackoverflow.com/questions/1048265/how-to-sort-on-number-of-visits-in-django-app/1048364#1048364 1 Answer by muhuk for How to sort on number of visits in Django app? muhuk 2009-06-26T10:22:31Z 2009-06-28T08:38:38Z <p>Django 1.1 will have aggregate support.</p> <p>On Django 1.0.x you can count automatically with an extra field:</p> <pre><code>class Lesson(models.Model): contents = models.TextField() visit_count = models.IntegerField(default=0) class StatLesson(models.Model): lesson = models.ForeignKey(Lesson) datetime = models.DateTimeField(default=datetime.datetime.now()) def save(self, *args, **kwargs): if self.pk is None: self.lesson.visit_count += 1 self.lesson.save() super(StatLesson, self).save(*args, **kwargs) </code></pre> <p>Then you can query like this:</p> <pre><code>Lesson.objects.all().order_by('visit_count') </code></pre> http://stackoverflow.com/questions/1005422/using-django-json-serializer-for-object-that-is-not-a-model/1005489#1005489 11 Answer by muhuk for Using Django JSON serializer for object that is not a Model muhuk 2009-06-17T07:01:29Z 2009-06-17T12:14:39Z <p>Serializers are only for models. Instead you can use <a href="http://code.google.com/p/simplejson/" rel="nofollow">simplejson</a> bundled with Django.</p> <pre><code>from django.utils import simplejson json_str = simplejson.dumps(my_object) </code></pre> <p>Simplejson 2.0.9 docs are <a href="http://simplejson.googlecode.com/svn/tags/simplejson-2.0.9/docs/index.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/980058/finding-rendered-html-element-positions-using-webkit-or-gecko/980619#980619 1 Answer by muhuk for Finding rendered HTML element positions using WebKit (or Gecko) muhuk 2009-06-11T11:37:58Z 2009-06-11T11:37:58Z <p>I agree with <a href="http://stackoverflow.com/users/12870/oli">Oli</a>, rendering the page in question and inspecting DOM via JavaScript is the most practical way IMHO.</p> <p>You might find <a href="http://jquery.com" rel="nofollow">jQuery</a> very useful here:</p> <pre><code>$(document).ready(function() { var elem = $("div#some_container_id h1") var elem_offset = elem.offset(); /* elem_offset is an object literal: elem_offset = { x: 25, y: 140 } */ var elem_height = elem.height(); var elem_width = elem.width(); /* bottom_right is then { x: elem_offset.x + elem_width, y: elem_offset.y + elem_height } }); </code></pre> <p>Related documentation is <a href="http://docs.jquery.com/CSS" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/202939/which-python-framework-to-use/977510#977510 1 Answer by muhuk for which python framework to use? muhuk 2009-06-10T18:54:29Z 2009-06-10T18:54:29Z <p><a href="http://werkzeug.pocoo.org/" rel="nofollow">Wekrzeug</a> is worth mentioning as well. It's not a full stack web framework. It is a low level WSGI framework. (<a href="http://werkzeug.pocoo.org/wiki30/" rel="nofollow">30 Minute Wiki Screencast</a>)</p> http://stackoverflow.com/questions/974645/should-i-check-in-mo-files 2 Should I check in *.mo files? muhuk 2009-06-10T09:52:56Z 2009-06-10T16:46:08Z <p>Should I check in *.mo translation files into my version control system?</p> <p>This is a general question. But in particular I'm working on Django projects with git repositories.</p> http://stackoverflow.com/questions/962619/how-to-pull-a-random-record-using-djangos-orm/962672#962672 12 Answer by muhuk for How to pull a random record using Django's ORM? muhuk 2009-06-07T19:54:50Z 2009-06-07T19:54:50Z <p>Simply use:</p> <pre><code>MyModel.objects.order_by('?')[0] </code></pre> <p>It is documented in <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#order-by-fields" rel="nofollow">QuerySet API</a>.</p> http://stackoverflow.com/questions/961981/how-can-i-speed-up-a-web-application-avoid-rebuilding-a-structure/962011#962011 4 Answer by muhuk for How can I speed up a web-application? (Avoid rebuilding a structure.) muhuk 2009-06-07T14:46:53Z 2009-06-07T18:33:27Z <p>You can dump it in a memory cache (such as <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>).</p> <p>This method has the advantage of cache key invalidation. When underlying data changes you can invalidate your cached data.</p> <h3>EDIT</h3> <p>Here's the python implementation of memcached: <a href="http://www.tummy.com/Community/software/python-memcached/" rel="nofollow">python-memcached</a>. Thanks <a href="http://stackoverflow.com/users/115023/nicdumz">NicDumZ</a>.</p> http://stackoverflow.com/questions/429443/syncing-django-users-with-google-apps-without-monkeypatching/959044#959044 0 Answer by muhuk for Syncing Django users with Google Apps without monkeypatching muhuk 2009-06-06T05:02:04Z 2009-06-06T05:02:04Z <p>Monkeypatching is definitely bad. Hard to say anything since you've given so little code/information. But I assume you have the password in cleartext at some point (in a view, in a form) so why not sync manually then?</p> http://stackoverflow.com/questions/950145/embedding-a-3-d-editor-such-as-blender-in-a-wxpython-application/951020#951020 1 Answer by muhuk for Embedding a 3-D editor (such as Blender) in a wxPython application muhuk 2009-06-04T14:41:05Z 2009-06-04T14:41:05Z <p>I second Luper Rouch's idea of Blender plugins. But if you must have your own window you need to fork Blender. Take a look at <a href="http://www.makehuman.org/" rel="nofollow">makehuman</a> project. It used to have Blender as a platform. (I'm not sure but I think they have a different infrastructure now)</p> http://stackoverflow.com/questions/950790/use-django-framework-with-website-and-stand-alone-app/950997#950997 2 Answer by muhuk for Use Django Framework with Website and Stand-alone App muhuk 2009-06-04T14:37:20Z 2009-06-04T14:37:20Z <p>You can use Django ORM outside of an HTTP server.</p> <p>Basically you need to set <code>DJANGO_SETTINGS_MODULE</code> environment variable. Then you can import and use your django code. Here's an <a href="http://www.b-list.org/weblog/2007/sep/22/standalone-django-scripts/" rel="nofollow">article on stand-alone Django scripts</a>.</p> <p>Alternatively you can choose to interact with your Django server via <a href="http://docs.djangoproject.com/en/dev/howto/custom-management-commands/#howto-custom-management-commands" rel="nofollow">custom management commands</a>. This will be a bit more work. But in the end this method allows for a greater decoupling between the crawler and the controller (Django project).</p> http://stackoverflow.com/questions/929472/why-doesnt-inspect-getsource-return-the-whole-class-source 0 Why doesn't inspect.getsource return the whole class source? muhuk 2009-05-30T10:01:19Z 2009-06-01T17:57:01Z <p>I have this code in my <code>forms.py</code>:</p> <pre><code>from django import forms from formfieldset.forms import FieldsetMixin class ContactForm(forms.Form, FieldsetMixin): full_name = forms.CharField(max_length=120) email = forms.EmailField() website = forms.URLField() message = forms.CharField(max_length=500, widget=forms.Textarea) send_notification = forms.BooleanField(required=False) fieldsets = ((u'Personal Information', {'fields': ('full_name', 'email', 'website'), 'description': u'Your personal information will not ' \ u'be shared with 3rd parties.'}), (None, {'fields': ('message',), 'description': u'All HTML will be stripped out.'}), (u'Preferences', {'fields': ('send_notification',)})) </code></pre> <p>When I try to extract the code programmatically with <code>inspect</code> it leaves out <code>fieldsets</code>:</p> <pre><code>In [1]: import inspect In [2]: import forms In [3]: print inspect.getsource(forms) from django import forms from formfieldset.forms import FieldsetMixin class ContactForm(forms.Form, FieldsetMixin): full_name = forms.CharField(max_length=120) email = forms.EmailField() website = forms.URLField() message = forms.CharField(max_length=500, widget=forms.Textarea) send_notification = forms.BooleanField(required=False) fieldsets = ((u'Personal Information', {'fields': ('full_name', 'email', 'website'), 'description': u'Your personal information will not ' \ u'be shared with 3rd parties.'}), (None, {'fields': ('message',), 'description': u'All HTML will be stripped out.'}), (u'Preferences', {'fields': ('send_notification',)})) In [4]: print inspect.getsource(forms.ContactForm) class ContactForm(forms.Form, FieldsetMixin): full_name = forms.CharField(max_length=120) email = forms.EmailField() website = forms.URLField() message = forms.CharField(max_length=500, widget=forms.Textarea) send_notification = forms.BooleanField(required=False) In [5]: </code></pre> <p>This doesn't seem to be an issue with blank lines. I've tested without the blank line in between and I've put additional blank lines in between other attributes. Results don't change.</p> <p>Any ideas why inspect is returning only the part before <code>fieldsets</code> and not the whole source of the class?</p> http://stackoverflow.com/questions/924530/capturing-implicit-signals-of-interest-in-django/925420#925420 3 Answer by muhuk for Capturing Implicit Signals of Interest in Django muhuk 2009-05-29T10:50:57Z 2009-05-29T12:09:00Z <p>If this data is not an unimportant statistic that might or might not be available I'd suggest taking the simple approach and using a model. It will surely hit the database everytime. </p> <p>Unless you are absolutely positively sure these queries <strong>are</strong> actually degrading overall experience there is no need to worry about it. Even if you optimize this one, there's a good chance other <em>unexpected</em> queries are wasting more CPU time. I assume you wouldn't be asking this question if you were testing all other queries. So why risk premature optimization on this one?</p> <p>An advantage of the model approach would be <em>having an API in place</em>. When you have tested and decided to optimize you can keep this API and change the underlying model with something else (which will most probably be more complex than a model).</p> <p>I'd definitely go with a model first and see how it performs. (and also how other parts of the project perform)</p> http://stackoverflow.com/questions/912025/how-to-find-all-child-modules-in-python/912094#912094 -1 Answer by muhuk for How to find all child modules in Python? muhuk 2009-05-26T18:41:25Z 2009-05-26T18:41:25Z <p>You can try <code>glob</code>bing the directory:</p> <pre><code>import os import glob modules = glob.glob(os.path.join('/some/path/to/modules', '*.py')) </code></pre> <p>Then you can try importing them:</p> <pre><code>checked_modules for module in modules: try: __import__(module, globals(), locals()) # returns module object except ImportError: pass else: checked_modules.append(module) </code></pre> http://stackoverflow.com/questions/843227/how-to-render-contents-of-a-tag-in-unicode-in-beautifulsoup 1 How to render contents of a tag in unicode in BeautifulSoup? muhuk 2009-05-09T12:38:38Z 2009-05-26T10:02:26Z <p>This is a soup from a WordPress post detail page:</p> <pre><code>content = soup.body.find('div', id=re.compile('post')) title = content.h2.extract() item['title'] = unicode(title.string) item['content'] = u''.join(map(unicode, content.contents)) </code></pre> <p>I want to omit the enclosing <code>div</code> tag when assigning <code>item['content']</code>. Is there any way to render all the child tags of a tag in unicode? Something like:</p> <pre><code>item['content'] = content.contents.__unicode__() </code></pre> <p>that will give me a single unicode string instead of a list.</p> http://stackoverflow.com/questions/843227/how-to-render-contents-of-a-tag-in-unicode-in-beautifulsoup/909899#909899 0 Answer by muhuk for How to render contents of a tag in unicode in BeautifulSoup? muhuk 2009-05-26T10:02:26Z 2009-05-26T10:02:26Z <p>Best method I can come up with:</p> <pre><code>unicode(''.join(content.contents)) </code></pre> http://stackoverflow.com/questions/908258/generating-file-to-download-with-django/909088#909088 6 Answer by muhuk for Generating file to download with Django muhuk 2009-05-26T05:53:30Z 2009-05-26T05:53:30Z <p>To trigger a download you need to set <code>Content-Disposition</code> header:</p> <pre><code>from django.http import HttpResponse from django.core.servers.basehttp import FileWrapper # generate the file response = HttpResponse(FileWrapper(myfile), content_type='application/zip') response['Content-Disposition'] = 'attachment; filename=myfile.zip' return response </code></pre> <p>If you don't want the file on disk you need to use <code>StringIO</code></p> <pre><code>import cStringIO as StringIO myfile = StringIO.StringIO() while not_finished: # generate chunk myfile.write(chunk) </code></pre> <p>Optionally you can set <code>Content-Length</code> header as well:</p> <pre><code>response['Content-Length'] = myfile.tell() </code></pre> http://stackoverflow.com/questions/896166/django-how-to-templatetags-filter-with-multiple-arguments/896755#896755 2 Answer by muhuk for Django -- how to templatetags filter with multiple arguments muhuk 2009-05-22T07:47:51Z 2009-05-22T07:47:51Z <p>You can't pass <code>name.id</code> to your filter. Filter arguments can be asingle value or a single literal. Python/Django doesn't attempt any "smart" variable replacement like PHP.</p> <p>I suggest you to create a tag for this task:</p> <pre><code>&lt;a href='{% add_args "custid" name.id "sortid" "2" %}{{name|slugify}}{% end_add_args %}'&gt;{{name}}&lt;/a&gt; </code></pre> <p>This way you can know which argument is a literal value and which should be taken fron context etc... Docs are quite clear about this, take a look at the <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#passing-template-variables-to-the-tag" rel="nofollow">example</a>.</p> <p>Also if this <code>name</code> is any way related to a model, say we want to get to the permalink, adding a method that returns the URL with the proper arguments might be the tidiest solution.</p> <p>Overall, I would refrain putting too much logic into templates. Django is not PHP.</p> http://stackoverflow.com/questions/872065/visual-editor-for-django-templates/874222#874222 1 Answer by muhuk for Visual Editor for Django Templates? muhuk 2009-05-17T09:19:03Z 2009-05-17T09:19:03Z <p>There's no WYSIWYG tool like Dreamweaver. But highligting is possible. I am using Kate to edit my templates.</p> <p>For instance when you comment in Django template it inserts <code>{% comment %}</code>.</p> http://stackoverflow.com/questions/1709770/how-does-wrapping-an-unsafe-python-method-e-g-os-chdir-in-a-class-make-it-threa/1709847#1709847 Comment by muhuk on How does wrapping an unsafe python method (e.g os.chdir) in a class make it thread/exception safe? muhuk 2009-11-10T18:21:48Z 2009-11-10T18:21:48Z Regardless of what exception-safe means; can you say &quot;this code alone is exception-safe&quot;? By code I mean Chdir class in the question. http://stackoverflow.com/questions/1703012/what-is-suggested-seed-value-to-use-with-random-seed Comment by muhuk on What is suggested seed value to use with random.seed()? muhuk 2009-11-09T19:22:43Z 2009-11-09T19:22:43Z Having a hardcoded seed is not necessarily a bad thing. What do you need a seed for? What does your code do? Do you need reproducable results, or just any rendom numbers? Please clarify your question. http://stackoverflow.com/questions/1605706/django-how-to-detect-if-translation-is-activated/1696958#1696958 Comment by muhuk on Django: How to detect if translation is activated? muhuk 2009-11-09T17:45:06Z 2009-11-09T17:45:06Z Also you shouldn't import settings directly. Preferred way is <code>from django.conf import settings</code>, see docs for more information. Please correct your code. http://stackoverflow.com/questions/1605706/django-how-to-detect-if-translation-is-activated/1696958#1696958 Comment by muhuk on Django: How to detect if translation is activated? muhuk 2009-11-09T17:44:15Z 2009-11-09T17:44:15Z Always make sure you understand the question before posting an answer. I'm asking whether or not <code>translation.activate()</code> has been called. http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively/1688726#1688726 Comment by muhuk on How to profile a Django custom management command exclusively muhuk 2009-11-06T18:27:00Z 2009-11-06T18:27:00Z Creating another executable you mean? That would be a solution. I am just trying to find out if it would be possible somehow, using a Django management command. http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively/1688726#1688726 Comment by muhuk on How to profile a Django custom management command exclusively muhuk 2009-11-06T17:06:50Z 2009-11-06T17:06:50Z It is just like you said, in a seperate module and being imported from the command. The problem is how to profile independently. I don't even need super isolation, I just don't want 50 related entries and 950 unrelated ones. Would you like me to post some code? http://stackoverflow.com/questions/1687125/how-to-profile-a-django-custom-management-command-exclusively Comment by muhuk on How to profile a Django custom management command exclusively muhuk 2009-11-06T13:07:27Z 2009-11-06T13:07:27Z @Geo grep doesn't help much since file paths are not given. Only filenames are printed out. Now suppose I have utils.py that I want to profile and there's another utils.py somewhere in Django. http://stackoverflow.com/questions/1668882/python-importing-through-function-to-main-namespace/1668945#1668945 Comment by muhuk on Python: importing through function to main namespace muhuk 2009-11-03T17:56:23Z 2009-11-03T17:56:23Z +1 Good style. It doesn't make sense to hack here. http://stackoverflow.com/questions/1663082/what-may-be-the-problem-django-views/1663206#1663206 Comment by muhuk on What may be the problem (Django views)...? muhuk 2009-11-03T09:50:38Z 2009-11-03T09:50:38Z Please correct the regex according to Daniel Hernik's answer. http://stackoverflow.com/questions/1657063/can-django-be-used-with-py2exe/1657074#1657074 Comment by muhuk on Can Django be used with py2exe? muhuk 2009-11-01T19:51:56Z 2009-11-01T19:51:56Z +1 Tutorial looks good http://stackoverflow.com/questions/1511256/django-how-to-access-originating-instance-from-a-relatedmanager/1511280#1511280 Comment by muhuk on Django: How to access originating instance from a RelatedManager? muhuk 2009-10-02T19:23:49Z 2009-10-02T19:23:49Z No, that's not necessary. baz method is already available on Foo.bar_set http://stackoverflow.com/questions/1484575/html-tag-replacement-using-regex-and-python/1485230#1485230 Comment by muhuk on HTML tag replacement using regex and python muhuk 2009-09-29T07:20:30Z 2009-09-29T07:20:30Z +1. BeautifulSoup is the definite answer. http://stackoverflow.com/questions/1230089/two-parter-django-book-recommendation-django-real-world-advice/1230210#1230210 Comment by muhuk on Two parter: Django book recommendation + Django real world advice muhuk 2009-08-06T18:57:05Z 2009-08-06T18:57:05Z +1. Too many people wrestling with Django before learning proper Python. http://stackoverflow.com/questions/1048265/how-to-sort-on-number-of-visits-in-django-app/1048364#1048364 Comment by muhuk on How to sort on number of visits in Django app? muhuk 2009-06-28T08:39:30Z 2009-06-28T08:39:30Z @John Montgomery, you are right. Fixed the answer. http://stackoverflow.com/questions/1041471/pylons-is-confusing-help/1042273#1042273 Comment by muhuk on Pylons is confusing: help! muhuk 2009-06-25T05:41:19Z 2009-06-25T05:41:19Z +1. Django is extremely well documented.