snoe wrote:
> I have a suspicion that there's an easier way to do this than
> explicitly adding a Project.pickleme() call to the beginning of all of
> my set/add methods.
> So is there a way to wrap methods for this type of functionality or is
> there another way of doing this, maybe without usi
snoe wrote:
> I have a suspicion that there's an easier way to do this than
> explicitly adding a Project.pickleme() call to the beginning of all of
> my set/add methods.
> So is there a way to wrap methods for this type of functionality or is
> there another way of doing this, maybe without usi
Scott Kilpatrick wrote:
> So wherever pycdf does a:
>
> from Numeric import *
>
> what is the equivalent for SciPy? i.e. where is the full Numeric module
> in SciPy?
Scipy also does a
from Numeric import *
Numeric isn't contained within Scipy; Scipy uses Numeric like pycdf does.
--
Robert
Thanks for the rapid replys, I cracked the problem 15 seconds after
posting here, doh!
Anyway to the orginally replier - I wish it was homework ;-), that
would mean I wouldnt be trying to find myself a job as a recent
graduate... I decided to crawl something similar to the yellow pages
(do you hav
[snip]
>I didn't get this error. Did you forgot to install one of the
>libdb${version}-devel packages:
>
>$ cygcheck -cd | grep 'libdb.*-devel'
>libdb2-devel2.7.7-4
>libdb3.1-devel 3.1.17-2
>libdb4.1-devel 4.1.25-1
>libdb4.2-devel 4.2.52
Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support
we need he just needs to then install pycdf?
I really appreciate the help.
Scott
--
http://mail.python.org/mailman/listinfo/python-list
Scott Kilpatrick wrote:
> Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support
> we need he just needs to then install pycdf?
1. Install Numeric.
2. Install Scipy.
3. Install pycdf.
Numeric is not, yet, bundled into Scipy.
--
Robert Kern
[EMAIL PROTECTED]
"In the fields of h
Finally i found the solution in Rpy-list : there is a bug in
python2.4-rpy_0.4.1.
An alternative solution which works fine it's to use the R get(str)
function instead of using directly the variable (i.e r.tab) like that :
r.get('tab')
Nicolas Lebas a écrit :
> hello,
>
> i don't know if thi
Scott Kilpatrick wrote:
> So wherever pycdf does a:
>
> from Numeric import *
>
> what is the equivalent for SciPy? i.e. where is the full Numeric module
> in SciPy?
Python packages are in a pretty flat hierarchy. There really isn't a
"SciPy Numeric" and a "pycdf Numeric" - Numeric, as an indep
Tito wrote:
> Thank you both for your quick answers.
>
> What I wanted is to parameterize a function with another member
> function, like this:
>
> def printFunctionForEach(collection, functionName):
> for elem in collection:
> print eval("elem." + functionName + "()")
Note: "member funct
Hi,
I have a website www.FreelancingProject.com and I would like to invite
freelancer, programmer's or web designer's to sign up and receive a
nice sign up bonus!
Our goal is to connect professional freelancers to webmasters providing
both freelancers and webmasters the opportunity to
expand thei
[EMAIL PROTECTED] wrote:
> Anyway to the orginally replier - I wish it was homework ;-), that
> would mean I wouldnt be trying to find myself a job as a recent
> graduate... I decided to crawl something similar to the yellow pages
Sounds like a useful task, and a good way to learn more about Pytho
Jerry He <[EMAIL PROTECTED]> wrote:
> I'm a little curious, why does most scripting
> languges(i.e. python and ruby) use Tcl/Tk rather than
> wx or Fox as its standard GUI? Although I did notice
> that the Vpython IDE that uses Tkinker starts up a lot
> faster than the DrPython IDE that uses wxpyth
In article <[EMAIL PROTECTED]>,
Peter Hansen <[EMAIL PROTECTED]> wrote:
>
>Mass-mailed resumes with generic cover letters are a good way to kill
>trees but not a particular effective way to get noticed by an employer,
>at least not noticed in a good way...
Excellent advice! Speaking of which,
I'm trying to write a Gui in Python for manipulating rich graphical
representations, similar to something like Inkscape. I've tried tkinter,
wxPython, pyGtk, and while they all do traditional widgets well enough,
none of them really handle anti-aliased, transparent, transformed shapes
typical o
Michael Hoffman wrote:
> Ron Adam wrote:
>
>> In all current cases, (that I know of), of differing types, '+' raises
>> an error.
>
>
> Not quite:
>
> >>> "hello " + u"world"
> u'hello world'
> >>> 4.5 + 5
> 9.5
>
>> Question: Is a path object mutable?
>
>
> No.
>
> This should answer t
On Wed, 27 Jul 2005 14:18:25 -0400, Bill Mill wrote:
> On 7/27/05, Tito <[EMAIL PROTECTED]> wrote:
>> Hi all:
>>
>> Is there a metalanguage capability in Python (I know there are many) to
>> call a function having its name in a string?
>>
>> Something like:
>> __call__("foo")
>>
>> instead of:
[EMAIL PROTECTED] wrote:
> is there any place which lists jobs to be done...you know minor jobs
> and requests thats nobody has found time to do.
Not all of these are pure Python, so you may have to wade through a bit
to avoid the C ones, but a good place to look is the Python trackers on
source
[David Isaac]
> > I have been generally open to the proposal that list comprehensions
> > should replace 'map', but I ran into a need for something like
> > map(None,x,y)
> > when len(x)>len(y). I cannot it seems use 'zip' because I'll lose
> > info from x. How do I do this as a list comprehensio
David Isaac wrote:
> I ran into a need for something like map(None,x,y)
> when len(x)>len(y). I cannot it seems use 'zip' because I'll lose
> info from x.
I almost never run into this situation, so I'd be interested to know why
you need this. Here's one possible solution:
py> import itertools
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Dear,
I need to parse XHTML/HTML files in all ways :
~ _ Removing comments and javascripts is a first issue
~ _ Retrieving the list of fields to submit is my following item (todo)
Any idea where I could find this already made ... ?
\T,
-BEGIN
On Wed, 13 Jul 2005 23:39:46 GMT, "Hank Oredson"
<[EMAIL PROTECTED]> wrote:
>In particular I am interested in the EM dataset.
Hank, with respect ...
Posted to nine newsgroups; fluffy responses when you ask specific
questions; evasion when you repeatedly ask for real data ... I regret
to say, YHB
Personally, I *like* the current distinction between + as a regular
string join, which gives the already much discussed benefit of allowing
paths to be dropped in seamlessly and painlessly anywhere strings are
currently used, and then having in addition the / operator for
"concatenate with a path s
Cairo is an option, for Linux only though at the moment. There is a
python binding: http://cairographics.org/bindings
You can use it in combination with pygtk:
http://cvs.cairographics.org/pycairo/examples/svg/
See also the backends used by matplotlib, a python plotting module.
--
http://mail.py
Ron Adam wrote:
> Michael Hoffman wrote:
>> Ron Adam wrote:
>>> In all current cases, (that I know of), of differing types, '+'
>>> raises an error.
>>
>> Not quite:
>> >>> "hello " + u"world"
>> u'hello world'
>> >>> 4.5 + 5
>> 9.5
>>
> In the case of numeric types, it's an addition and not a j
The world needs an open source tool for working with DNA sequences
graphically. I know what needs to be done, but I am not finding much time to
do it. I have already coded a graphical sequence editor and some cool tools
for sequence analysis. For this project I am using Tkinter as the gui and
b
"Michele Simionato" <[EMAIL PROTECTED]> writes:
>>I am mostly
>>using old style (without type unification) init but this motivate the
>>shift for the new style. Is there somewhere a document about this?
> Yes, see http://www.python.org/2.3/mro.html by yours truly
I'd also recommend reading http:/
"Frank Millman" <[EMAIL PROTECTED]> writes:
> While developing under linux, I use my own computer, as the only user,
> so it has become my habit to login as root and do all my work as a
> superuser. I know that this is not desirable, but it has become a
> habit, which I am now trying to get out of
James Stroud wrote:
> The world needs an open source tool for working with DNA sequences
> graphically. I know what needs to be done, but I am not finding much time to
> do it. I have already coded a graphical sequence editor and some cool tools
> for sequence analysis. For this project I am usi
Hi,
How do I select data from two tables from two different databases and
compare them? using dbi,odbc
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] writes:
> Anyway to the orginally replier - I wish it was homework ;-), that
> would mean I wouldnt be trying to find myself a job as a recent
> graduate... I decided to crawl something similar to the yellow pages
> (do you have them in the US?) for my select area and then find
"Lemming" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Wed, 13 Jul 2005 23:39:46 GMT, "Hank Oredson"
> <[EMAIL PROTECTED]> wrote:
>
>>In particular I am interested in the EM dataset.
>
> Hank, with respect ...
>
> Posted to nine newsgroups; fluffy responses when you ask specifi
globalbid wrote:
> Hi,
>
> I have a website www.FreelancingProject.com and I would like to invite
> freelancer, programmer's or web designer's to sign up and receive a
> nice sign up bonus!
>
> Our goal is to connect professional freelancers to webmasters providing
> both freelancers and webmaste
Raymond Hettinger wrote:
> [David Isaac]
>
>>>I have been generally open to the proposal that list comprehensions
>>>should replace 'map', but I ran into a need for something like
>>>map(None,x,y)
>>>when len(x)>len(y). I cannot it seems use 'zip' because I'll lose
>>>info from x. How do I do th
Peter Hansen wrote:
> Ron Adam wrote:
>
>> Michael Hoffman wrote:
>>
>>> Ron Adam wrote:
>>>
In all current cases, (that I know of), of differing types, '+'
raises an error.
>>>
>>>
>>> Not quite:
>>> >>> "hello " + u"world"
>>> u'hello world'
>>> >>> 4.5 + 5
>>> 9.5
>>>
>> In the cas
Hi,
I was working on a dir like function that gives more information than
the usual dir, but I am not satisfied with the way I get function
arguments for callable members of an object. Take a look at it here:
http://nerdierthanthou.nfshost.com/2005/07/mdir-for-python.html. I have
seen PythonWin sh
[EMAIL PROTECTED] wrote:
> Hi,
>
> I was working on a dir like function that gives more information than
> the usual dir, but I am not satisfied with the way I get function
> arguments for callable members of an object. Take a look at it here:
> http://nerdierthanthou.nfshost.com/2005/07/mdir-for-
>> I am trying to
access Oracle using the cx_Oracle module. I can login to Oracle OK, but I >> am at a loss as to
how I should then access the specific table I need so that I can join it to >> our county parcel
layer using the “make table view” tool. I have scoured the internet
looking >> f
101 - 138 of 138 matches
Mail list logo