Description:
The Python computer language.
|
|
|
Applying a patch from a diff in python (if possible)
|
| |
Hi,
I'm trying to synch up two databases that are very far from each other
using diff and patch. Currently, what happens is a mysqldump on
database A (which is linux) which is sent over to database B and over
time the diff of this mysql is sent over to database B. The database B
lives on a NAS server without any linux machines available (all of... more »
|
|
Python Book for a C Programmer?
|
| |
I am trying to join an online class that uses python. I need to brush up on the language quickly. Is there a good book or resource that covers it well but does not have to explain what an if..then..else statement is?
Thanks.
|
|
problem loading matlab data with ompc and python
|
| |
Hi, we're investigating transitioning our company from matlab to python. We found OMPC as a MATLAB m-file-to Python translator, but we're encountering a problem using the translated code to import MATLAB data structures into Python. For example, when we save data within MATLAB this way:
x.a = 5;... more »
|
|
PyDev IPython Confusion
|
| |
I have two versions of Python and Ipython; Python 2.6.6 with Ipython
0.11 and Python 2.7.3 with Ipython 0.12. When I run the Eclipse PyDev
console for the Python 2.7.3 it says it is using Ipython 0.11 as the
interpreter. Ipython 0.11 should not be in the Path for Python 2.7.3.
Is this a bug in Ipython 0.12? Is there a command to check the Ipython... more »
|
|
How to launch idle -n on windows ?
|
| |
I have some problems with Python 3.2 on Windows.
I want to use the turtle package, works fine,
but I can't close the turtle windows.
On MacOS-X, I launch idle -n and it's fine.
How can I do that on Windows ?
Thanks,
fd
|
|
Korean fonts on Python 2.6 (MacOsX)
|
| |
I have a problem with the visualization of korean fonts on Python.
When I try to type in the characters only squares come out.
I have tried to install the CJK codec, the hangul 1.0 codec but still
no result.
Hoep someone can help me out.
|
|
A better contextlib.contextmanager
|
| |
Python 3.2 enhanced contextlib.contextmanager so that it is possible to
use a context manager as a decorator. For instance, given the
contextmanager factory below
@contextmanager
def before_after():
print(before)
yield
print(after)
it is possibile to use it to generate decorators:... more »
|
|
Recruiting for Python Developer - Perm
|
| |
Can any one help? I am looking for a Senior Python Developer - Linux,
AppScript, Adobe Illustrator - Bradford, Yorkshire - £45,000
Our marketing and design client is looking to recruit an experienced
Python developer for a senior position within their expanding
organisation. Working independently, you will need a good background... more »
|
|
A question of style (finding item in list of tuples)
|
| |
I've got this code in a django app:
CHOICES = [
('NONE', 'No experience required'),
('SAIL', 'Sailing experience, new to racing'),
('RACE', 'General racing experience'),
('GOOD', 'Experienced racer'),
('ROCK', 'Rock star'),
]
def experience_text(self):... more »
|
|
|