muhuk
|
Registered User
|
Python developer.
|
|
Nov 10 |
comment |
How does wrapping an unsafe python method (e.g os.chdir) in a class make it thread/exception safe? Regardless of what exception-safe means; can you say "this code alone is exception-safe"? By code I mean Chdir class in the question. |
|
Nov 10 |
answered | How does wrapping an unsafe python method (e.g os.chdir) in a class make it thread/exception safe? |
|
Nov 10 |
answered | Use a Descriptor (EDIT: Not a single decorator) for multiple attributes? |
|
Nov 10 |
revised |
How might I handle development versions of Python packages without relying on SCM? edited tags |
|
Nov 9 |
comment |
What is suggested seed value to use with random.seed()? 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. |
|
Nov 9 |
comment |
Django: How to detect if translation is activated? Also you shouldn't import settings directly. Preferred way is from django.conf import settings, see docs for more information. Please correct your code. |
|
Nov 9 |
comment |
Django: How to detect if translation is activated? Always make sure you understand the question before posting an answer. I'm asking whether or not translation.activate() has been called. |
|
Nov 8 |
accepted | How to profile a Django custom management command exclusively |
|
Nov 7 |
answered | How to profile a Django custom management command exclusively |
|
Nov 6 |
answered | Why we should perfer to store the serialized data not the raw code to DB? |
|
Nov 6 |
comment |
How to profile a Django custom management command exclusively 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. |
|
Nov 6 |
comment |
How to profile a Django custom management command exclusively 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? |
|
Nov 6 |
answered | How to profile a Django custom management command exclusively |
|
Nov 6 |
comment |
How to profile a Django custom management command exclusively @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. |
|
Nov 6 |
asked | How to profile a Django custom management command exclusively |
|
Nov 3 |
comment |
Python: importing through function to main namespace +1 Good style. It doesn't make sense to hack here. |
|
Nov 3 |
comment |
What may be the problem (Django views)…? Please correct the regex according to Daniel Hernik's answer. |
|
Nov 1 |
comment |
Can Django be used with py2exe? +1 Tutorial looks good |
|
Oct 22 |
asked | Django: How to detect if translation is activated? |
|
Oct 21 |
answered | Django forms: making a disabled field persist between validations |
|
Oct 2 |
comment |
Django: How to access originating instance from a RelatedManager? No, that's not necessary. baz method is already available on Foo.bar_set |
|
Oct 2 |
asked | Django: How to access originating instance from a RelatedManager? |
|
Sep 29 |
comment |
HTML tag replacement using regex and python +1. BeautifulSoup is the definite answer. |
|
Sep 4 |
awarded | ● Popular Question |
|
Aug 26 |
answered | Display Django form inputs on thanks page |
|
Aug 6 |
comment |
Two parter: Django book recommendation + Django real world advice +1. Too many people wrestling with Django before learning proper Python. |
|
Jul 23 |
awarded | ● Nice Answer |
|
Jul 14 |
accepted | How to sort on number of visits in Django app? |
|
Jun 28 |
comment |
How to sort on number of visits in Django app? @John Montgomery, you are right. Fixed the answer. |
|
Jun 28 |
revised |
How to sort on number of visits in Django app? Removed parts that might lead to misunderstanding |
|
Jun 26 |
answered | How to sort on number of visits in Django app? |
|
Jun 26 |
awarded |
● |
|
Jun 25 |
comment |
Pylons is confusing: help! +1. Django is extremely well documented. |
|
Jun 23 |
comment |
Race conditions in django +1. This problem is already solved with transactions. Just run your view inside a transaction and use a transactional data store. If there is still a possibility of a race condition, detect it and rollback. |
|
Jun 17 |
comment |
Using Django JSON serializer for object that is not a Model Thanks for the link @S.Lott |
|
Jun 17 |
revised |
Using Django JSON serializer for object that is not a Model added links |
|
Jun 17 |
comment |
Gantt Chart online This answer could be improved making those URL's into links. As in [title](URL). |
|
Jun 17 |
answered | Using Django JSON serializer for object that is not a Model |
|
Jun 16 |
comment |
Number of visitors in Django No, Django doesn't store session as cookies, it stores session id's in cookies. And session expiration is stored in session storage. Therefore you can count. |
|
Jun 15 |
comment |
Cleanest & Fastest server setup for Django +1. Apache + mod_wsgi is recommended. Lacking links about claims though. |
|
Jun 14 |
comment |
Creating a range of dates in Python +1. It should work as a generator as well. just replace square brackets with parens. |
|
Jun 13 |
accepted | Pagination of Date-Based Generic Views in Django |
|
Jun 11 |
answered | Finding rendered HTML element positions using WebKit (or Gecko) |
|
Jun 10 |
answered | which python framework to use? |
|
Jun 10 |
comment |
which python framework to use? +1. Except Django is not MVC but MTV (model-view-template). |
|
Jun 10 |
comment |
Interfacing web crawler with Django front end @drdaeman: nice. Thanks. |
|
Jun 10 |
asked | Should I check in *.mo files? |
|
Jun 10 |
comment |
Interfacing web crawler with Django front end @drdaeman: I don't have experience with lxml2, but BeautifulSoup's strong point is its error tolerance. Since web pages famously contain errors. |
|
Jun 8 |
comment |
How to pull a random record using Django’s ORM? I haven't tested it, so this is pure speculation: why should it be slower than retrieving all items and performing randomization in Python? |
|
Jun 8 |
awarded | ● Nice Answer |
