Search Results

5
votes

When to create a new app (with startapp) in Django?

James Bennett has a wonderful set of slides on how to organized reusable apps. …
16
votes

Python and User input

To read user input you can try the cmd module for fancy stuff and …
2
votes

HTML parser in Python

For real world HTML processing I'd recommend BeautifulSoup. It is great and takes away much of the pain. Installation is e …
1
vote

Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?

Edit: I wrote this before reading the update to the original question. See my other answer for a better answer to the updated question. I will leave this as is as a warning against …
0
votes

Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?

Learning a new language is a long-term process. In a couple of days you'll learn the basics, yes. But! As you probably know, the real practical applicability of any language is tied to the standard …
1
vote

What are the pros and cons of the various Python implementations?

Pros: Access to the libraries available for JVM or CLR. Cons: Both naturally lag behind CPython in terms of features. …
3
votes

Google App Engine: how can I programmatically access the properties of my Model class?

If the model class is sufficiently intelligent, it should recognize the standard Python ways of doing this. Try: getattr(p, s) setattr(p, s, new_value) The …
3
votes

What is the difference between range and xrange?

Do spend some time with the Library Reference. The more familiar you are with it, the faster you can find answers to que …
5
votes

What is a metaclass in Python?

One use for metaclasses is adding new properties and methods to an instance automatically. For example, if you look at …
0
votes

Python-passing variable between classes

If I understood you correctly, then the answer is: You can't. intelligence should be an attribute of WizardPageSimple, if you'd want both classes to inherit it. Depending on your si …
2
votes

Does Python have a bitfield type?

If your bitfield is short, you can probably use the struct module. Otherwise I'd recommend some sort of a wrapper around …
2
votes

Class attributes with a “calculated” name

If your entire class is "calculated", then may I suggest the type callable. This is especially useful if your original container was a dict: d = dict(('member-%d' % k, …
0
votes

Python metaclasses

You can use the type callable as well. def hack(f, aClass): newfunc = lambda self: f() return type('MyClass', (aClass,), {'f': newfunc}) I fin …
2
votes

Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user

If Django 1.1 beta isn't too bleeding edge for you, try proxy models. …