On Ubuntu:
sudo apt-get install python-pyrss2gen python-beautifulsoup # download
ScrapeNFeed
Python:
Not sure what's wrong with this but it's most of the code you'll need:
---
from urllib import urlopen
from BeautifulSoup import BeautifulSoup
from PyRSS2Gen import RSSItem, Guid
import Scr
Was this code a complete waste of my time?
On Wed, Apr 15, 2009 at 1:09 AM, Brian wrote:
> On Ubuntu:
>
> sudo apt-get install python-pyrss2gen python-beautifulsoup # download
> ScrapeNFeed
>
> Python:
> Not sure what's wrong with this but it's most of the code yo
I'm using the third-party "processing" module in Python 2.5, which may
have become the "multiprocessing" module in Python 2.6, to speed up
the execution of a computation that takes over a week to run. The
relevant code may not be relevant, but it is:
q1, q2 = processing.Queue(), proces
On Apr 20, 9:18 am, alessiogiovanni.bar...@gmail.com wrote:
> On 20 Apr, 17:03, Brian wrote:
>
>
>
> > I'm using the third-party "processing" module in Python 2.5, which may
> > have become the "multiprocessing" module in Python 2.6, to speed up
&
On Apr 20, 9:18 am, alessiogiovanni.bar...@gmail.com wrote:
> On 20 Apr, 17:03, Brian wrote:
>
>
>
> > I'm using the third-party "processing" module in Python 2.5, which may
> > have become the "multiprocessing" module in Python 2.6, to speed up
&
I'm trying to run a python program with a multiloop and I am getting
this error message. I was wondering if anyone could tell from this
message what I'm doing wrong or where I've made a mistake. Let me
know if you need some of the code for this to make more sense. Thanks
a lot.
How much labor
quantum chemistry sounds complicated. that means any advice i can give you
makes me a genius! just kidding. i've heard through the grapevine that
reentrant functions mess up profilers.
On Fri, May 1, 2009 at 2:54 PM, Rick Muller wrote:
> I'm the main programmer for the PyQuante package, a quantu
What is the goal of this conversation that goes above and beyond what
Boost.Python + pygccxml achieve? Boost has published a variety of libraries
that will be included into the next c++ standard. It's hard to imagine a
better designed python/c++ interface library than Boost.Python. Further,
pygccxm
blem for anyone - it's easy to set up a compile farm and the
benefit is that your runtime code is blazing fast.
In my opinion Boost is more sophisticated, SWIG, etc.. is more of a hack. Of
course they all help you get the job done.
On Thu, Jun 4, 2009 at 2:54 PM, Philip Semanchuk wrote:
&g
u can
operate on all code that has certain arbitrary properties all at the same
time.
Play with it before deciding on swig. It's frikkin' cool :)
On Thu, Jun 4, 2009 at 3:01 PM, Brian wrote:
> Well you'll just have to try Boost.Python. There is a pygccxml gui gets you
> started i
John Salerno wrote:
Hey all. Just thought I'd ask a general question for my own interest. Every
time I think of something I might do in Python, it usually involves creating a
GUI interface, so I was wondering what kind of work you all do with Python that
does *not* involve any GUI work. This c
Plus you probably don't want to set [] as default argument and then try to
access it like a dictionary; you'll get an exception if you ever call just
foo(), with no argument.
On Tue, Apr 8, 2008 at 12:57 AM, Jason Scheirer <[EMAIL PROTECTED]>
wrote:
> On Apr 7, 8:54 pm, BonusOnus <[EMAIL PROTECTE
gt;
> regards
> Steve
> --
> Steve Holden+1 571 484 6266 +1 800 494 3119
> Holden Web LLC http://www.holdenweb.com/
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>
That would just make a list of tuples, I think he wants [1, 2, 3, 4, 5, 6].
Try: l = [x for z in t for x in z]
--Brian
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, Apr 8, 2008 at 6:36 PM, Brian <[EMAIL PROTECTED]> wrote:
>
>
> On Tue, Apr 8, 2008 at 6:22 PM, Steve Holden <[EMAIL PROTECTED]> wrote:
>
> > Gabriel Ibanez wrote:
> > > Hi all ..
> > >
> > > I'm trying to using the map fu
of all the
details.
As for making async apps, AJAX is the popular and simplest choice.
Gears/Adobe Air/MS Silverlight I believe involve significantly more work.
Brian
On Sat, Apr 12, 2008 at 9:48 PM, Matt <[EMAIL PROTECTED]> wrote:
> I would like to create a web-based tool for risk m
On Mon, Apr 14, 2008 at 3:24 AM, bdsatish <[EMAIL PROTECTED]> wrote:
> On Apr 14, 12:21 pm, Bob Martin <[EMAIL PROTECTED]> wrote:
> > in 342367 20080414 074410 [EMAIL PROTECTED] wrote:
> >
> > >Hello, I was hoping to get some opinions on a subject. I've been
> > >programming Python for almost two
On Wed, Apr 16, 2008 at 10:00 AM, Chris McAloney <[EMAIL PROTECTED]> wrote:
> On 16-Apr-08, at 9:20 AM, A.T.Hofkamp wrote:
> > On 2008-04-16, bvidinli <[EMAIL PROTECTED]> wrote:
> >> is there a way to find out if file open in system ? -
> >> please write if you know a way other than lsof. because
> TJG
> --
> http://mail.python.org/mailman/listinfo/python-list
>
>
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>
I would do it like this:
# This takes out the values
extracted = [ obj for obj in lst if pred(obj) ]
# This filters out any item that was ext
y style and keep me up to
> date. I would like one with practical examples.
>
> Can you recommend one?
> --
> http://mail.python.org/mailman/listinfo/python-list
>
Dive Into Python <http://www.diveintopython.org/> is awesome, and best of
all, free.
Brian
--
http://mail.python.org/mailman/listinfo/python-list
I do all my python coding in emacs. It's awesome. Here's how I do it:
*Create windmove bindings*
This is important - it maps *Meta-i,j,k,l* to move your window focus up,
left, down, right. It's used in conjunction with *C-x 3* (split window
vertically) and *C-x 2* (split window horizontally). So t
I'm posting here because I can't find a Yappi specific mailing list.
I've been using the rather brilliant Yappi from http://code.google.com/p/yappi/
It works well for small programs with a few threads. However, when
trying to run it over large programs with several hundred threads I've
been gettin
On Fri, Jun 5, 2009 at 3:29 AM, Nick Craig-Wood wrote:
>
>
> It is an interesting idea for a number of reasons, the main one as far
> as I'm concerned is that it is more of a port of CPython to a new
> architecture than a complete re-invention of python (like PyPy /
> IronPython / jython) so stan
Since extra slashes at the end of a URL are ignored, that means I win!
url+='/'
On Sun, Jun 7, 2009 at 4:45 PM, Aaron Brady wrote:
> On Jun 6, 8:07 am, "tsangpo" wrote:
> > I want to ensure that the url ends with a '/', now I have to do thisa
> like
> > below.
> > url = url + '' if url[-1] ==
Perhaps your blank pages have a characteristic size. Or perhaps if you trim
them with `convert' (ImageMagick) there is nothing left.
On Mon, Jul 13, 2009 at 3:44 PM, DrLeif wrote:
> I have about 6000 PDF files which have been produced using a scanner
> with more being produced each day. The PDF
On Wed, Jul 22, 2009 at 11:55 AM, William Dode wrote:
> On 22-07-2009, William Dode wrote:
>
> > c 1.65s
> > gcj 1.9s
> > java 2.4s
> > python2.5 + psyco 2.9s
> > shedskin 3.4s
>
> with -bw i have 2.6s
>
> > unladen-2009Q2 125s (2m05)
> > Jython 2.2.1 on java1.6.0_12 176s (without array, like she
On Tue, Jul 28, 2009 at 9:11 PM, tiefeng wu wrote:
> 2009/7/29 Nobody :
> >> The output should be something like
> >> document.write("hello my name is 21c";)
> >
> > import re
> > r = re.compile(r'"\s*\+\s*"')
> > s = r'''document.write("h" +"e"+ "ll"+ "o"+ " m" +"y"+"
> n"+"ame"+
> > "
On Fri, Jul 31, 2009 at 6:12 PM, Kee Nethery wrote:
> I too find the Python docs not very useful and it really slows down my
> learning curve.
>
> I wonder if it would make sense to find good tech writers, get a quotes,
> and get some professionally written documentation WITH LOTS OF EXAMPLES
> a
On Tue, Aug 11, 2009 at 12:29 PM, Dotan Cohen wrote:
> >Wikipedia has an API for computer access. See
> >
> >http://www.mediawiki.org/wiki/API
> >
>
> Yes, I am aware of this as well. Does anyone know of a python class
> for easily interacting with it, or do I need to roll my own.
>
On Fri, Aug 14, 2009 at 2:23 PM, kj wrote:
>
>
> Sometimes I want to split a string into lines, preserving the
> end-of-line markers. In Perl this is really easy to do, by splitting
> on the beginning-of-line anchor:
>
> @lines = split /^/, $string;
>
> But I can't figure out how to do the same
On Fri, Aug 14, 2009 at 4:46 PM, magicus wrote:
> On Fri, 14 Aug 2009 19:57:17 +0200, Jean-Michel Pichavant
> wrote:
>
> > vippstar wrote:
> >> On Aug 14, 8:25 pm, fortunatus wrote:
> >>
> >>> On Aug 14, 1:01 pm, vippstar wrote:
> >>>
> >>>
> Why would you fill your website with junk?
> >>
On Sat, Aug 15, 2009 at 4:06 PM, MRAB wrote:
> ryles wrote:
>
>> On Aug 14, 8:22 pm, candide wrote:
>>
>>> Suppose you need to split a string into substrings of a given size
>>> (except
>>> possibly the last substring). I make the hypothesis the first slice is at
>>> the
>>> end of the string.
>
pygccxml http://www.language-binding.net/pygccxml/pygccxml.html
It uses gccxml to compile your source code into xml, and then makes all of
your source code available to you via a high level and convenient query
interface in python.
On Tue, Aug 18, 2009 at 5:03 PM, Ludo <
olivier.anospamrnospamnno
>>> from BeautifulSoup import BeautifulSoup
>>> soup = BeautifulSoup("""http://BioCyc.org/ECOLI/NEW-IMAGE?
... type=GENE-IN-CHROM-BROWSER&object=EG12309" onmouseover="return
... overlib('Gene: yjtDProduct: predicted rRNA methyltransferase, subunit of predicted rRNA
... methyltransferaseIntergenic d
hey guys i have a question i have not programmed in python for about 8
years now. i am trying to set up a simple password protected server. i have
tried to research information but am not lucky. can someone point me in the
right direction?
--
http://mail.python.org/mailman/listinfo/python-list
On December 28th, an unknown attacker used a previously unknown remote
code exploit on http://wiki.python.org/. The attacker was able to get
shell access as the "moin" user, but no other services were affected.
Some time later, the attacker deleted all files owned by the "moin"
user, including all
want from online searches, so what recommendations
might Python users make for the best way to do this?
Maybe I need to re-think the approach?
Thanks,
Brian
class Car(object):
def __init__(self, Brand, Color, Condition):
self.Brand = Brand
self.Color = Color
se
On Monday, January 21, 2013 8:29:50 PM UTC-6, MRAB wrote:
> On 2013-01-22 01:56, Brian D wrote:
>
> > Hi,
>
> >
>
> > I'm trying to instantiate a class object repeated times, dynamically for as
> > many times as are required, storing each class object
, but trying to "discover" the appropriate
$PYTHONHOME and $PYTHONPATH from the $PATH and then feed them to the
embedded runtime seems like a kludge at best. I'm guess that there has
to be a *right* way to do this. Could somebody give me a clue?
Thanks!
~Brian
PS - If you want some re
e.deploy
>>> paste.deploy.__path__
['/home/brian/webapps/test_dyn/lib/python2.7/paste/deploy']
My path for both interactive and non-interactive contains:
/home/brian/webapps/test_dyn/lib/python2.7
>From the interactive interpreter I can import paste if my working
directory is i
On Thu, Jan 26, 2012 at 8:49 AM, Jean-Michel Pichavant
wrote:
> Brian Brinegar wrote:
>>
>> JM,
>>
>> Thanks for the response, you're correct '' is pre-pended to the path
>> in interactive mode. I've tried adding . to my PYTHONPATH and it
&
has to be available tools like this, but I am not
even sure what such a system is called. Is there anything like this, in python
preferably?
thanks,
Brian Blais
--
Brian Blais
bbl...@gmail.com
http://web.bryant.edu/~bblais
http://brianblais.wordpr
1000. The problems build in difficulty and in the programming skills
you need.
The Python Challenge (best completed using version 2.7 of Python) is
hard to explain, but a lot of fun to do.
Good luck!
Brian
--
http://mail.python.org/mailman/listinfo/python-list
I created a csv file called python test file.csv. It is stored on my Desktop
directory. When I try to open it using the command open ('Desktop python test
file.csv') I get the following error: "No such file or directory". The same
thing happens if I use open ('python test file.csv'). What I am
On Sun, Jun 5, 2011 at 19:27, Benjamin Schollnick <
bscholln...@schollnick.net> wrote:
> The Google Code site is at http://code.google.com/p/python-weather-api/
>
> And it's powerful, but I don't see any updates since late 2010... Does
> anyone know of a different pre-built API for accessing weat
2011/7/7 António Rocha
> Greetings
>
> I'm running Python (32b) in Windows7 (at 64bits) and I would like to know
> how can I check if my machine is a 32b or 64b in Python. Is it possible? I
> saw a few examples (like platform) but they only provide information about
> Python not the machine.
> Th
current implementation that wouldn't work as a generator?
bb
--
Brian Blais
bbl...@bryant.edu
http://web.bryant.edu/~bblais
http://bblais.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
pers are lazy, or bored!
bb
>
>
>
> --
> Steven
>
> --
> http://mail.python.org/mailman/listinfo/python-list
--
Brian Blais
bbl...@bryant.edu
http://web.bryant.edu/~bblais
http://bblais.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
Hi all,
As we ramp up our efforts on PyCon US 2012, we wanted to gather some
information from the community on what we can do best to serve you at the
March 2012 conference in Santa Clara, CA. We've put together a survey about
your experiences at past PyCons as well as what your interests are in t
On Wed, Aug 17, 2011 at 13:16, smith jack wrote:
> anybody here have build it correctly?
> how to make a msi file just as the official site did?
> is there any detailed tutorial online?
We're currently shipping CPython built on VS 2008, but I do know of people
building with 2005. How they do it
On Wed, Aug 31, 2011 at 14:29, Andrew McLean wrote:
> I understand that Python Tools for Visual Studio doesn't work with VS
> Express, but does work with the (free) VS 2010 Shell. Does anyone know if
> you can install VS Express and VS Shell on the same machine?
Yes, because the shell and Expre
23)
parser.add_option("--opt2", metavar="YOUR_OPTION2" ,default= "abc")
parser.add_option("--opt3", metavar="FLAG", default=True)
parser.save('test.yaml')
newparser=MyOptionParser()
newparser.load('test.yaml')
bb
--
Brian Blais
bbl...@bryant.edu
http://web.bryant.edu/~bblais
http://bblais.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
able to suggest more efficient libraries to call for doing these sorts of
models.
bb
--
Brian Blais
bbl...@bryant.edu
http://web.bryant.edu/~bblais
http://bblais.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
On Fri, Mar 25, 2011 at 16:03, Ken D'Ambrosio wrote:
> Hey, all. A co-worker asked me a question, and I've got no idea how (or
> if) it can be done. Bottom line: he'd like to save off the text from an
> interpreter session, his thinking being that you've already tried to get
> what you want, an
nd) for a *philosophical* determination for inclusion of the cmp=
keyword.
Any argument along what you call "philosophical" grounds will not be
successful. Technical (including aesthetic, convenience, etc.)
arguments *may* be successful.
Cheers,
Brian
--
http://mail.python.org/mail
core because people would simple recreate them
rather than investing the time to find, learn and use them.
Cheers,
Brian
--
http://mail.python.org/mailman/listinfo/python-list
On 3 Apr 2011, at 15:30, harrismh777 wrote:
Brian Quinlan wrote:
I suspect that this debate is a sink hole that I won't be able to
escape
from alive but...
... live long and prosper my friend.
Something to consider is that OOP philosophy is technically one of
the most aest
On Thu, Apr 7, 2011 at 00:45, harrismh777 wrote:
> All right... somebody is sacked (er, fired) !
>
> Who moved reload()?
>
> This kinda stuff is driving me bonkers... there was no need to move
> reload() anyplace...
>
> ... so for those of you who haven't found out yet, if you want to reload a
>
/python
it's better to use the former, as it will work even as you change versions,
etc... You should avoid using the shebang with a *specific* python version.
just use #!/usr/bin/env python
bb
--
Brian Blais
bbl...@bryant.edu
http:/
On Mon, Apr 25, 2011 at 16:15, rjmccorkle wrote:
> does anyone know a solution to shutting down windows 7 x64 via python
> script? the win32 obviously doesn't work... something similar?
>
> "the win32 obviously doesn't work" -- It does.
--
http://mail.python.org/mailman/listinfo/python-list
def preform_action(self):
print("test")
Is there any way to do this pythonically?
--
Thanks,
Brian Herman
kompile.org <http://www.kompile.org>
--
https://mail.python.org/mailman/listinfo/python-list
nothing has
changed. Please advise on what the problem could be and how it can be
resolved.
I look forward to hearing from you.
Thank you,
Brian.
--
https://mail.python.org/mailman/listinfo/python-list
From: Brian Gibbemeyer/Detroit/IBM
To: python-list@python.org, d...@python.org
Date: 04/23/2018 03:35 PM
Subject:Issue with python365.chm on window 7
Not sure which email this should go to.
But I downloaded .chm version of the Python guide and found that it is not
working in
see my comments below denoted by +
From: Terry Reedy
To: python-list@python.org
Date: 04/23/2018 06:45 PM
Subject:Re: Issue with python365.chm on window 7
Sent by:"Python-list"
This is a good place to start.
> But I downloaded .chm version of the Python guide
Did you download it form the web?
https://www.python.org/downloads/release/python-364/
That is the one not working.
I id not know about the .chm that was installed with the product until
this morning.
Thank you,
Brian Gibbemeyer
Sr Software Engineer
Watson Health - Value Based Care
Phone
comes with python
install.
This is the graphic I sent.
Bob Should be able to see it but the list will not
Thank you,
Brian Gibbemeyer
Sr Software Engineer
Watson Health - Value Based Care
From: Bob Martin
To: python-list@python.org
Date: 04/24/2018 02:18 AM
Subject:
The links without the url defense wrappers
https://www.python.org/downloads/release/python-365/
https://www.python.org/ftp/python/3.6.5/python365.chm
Thank you,
Brian Gibbemeyer
Sr Software Engineer
Watson Health - Value Based Care
From: "Brian Gibbemeyer"
To: Bob
python365.chm on window 7
Sent by:"Python-list"
On Wed, Apr 25, 2018 at 12:15 AM, Brian Gibbemeyer
wrote:
> Yes actually I am a Sr Software Engineer. I am not an expert in one
> language. I am pretty handy in picking up new concepts and applying the
> concepts to me
side, nothing appears in the right pane.
From: Ethan Furman
To: python-list@python.org
Date: 04/24/2018 11:31 AM
Subject:Re: Issue with python365.chm on window 7
Sent by:"Python-list"
On 04/24/2018 07:15 AM, Brian Gibbemeyer wrote:
> I found that Python
ot;
-Original Message-
From: Python-list On Behalf Of Brian
Gibbemeyer
Sent: Tuesday, April 24, 2018 11:01 AM
To: Ethan Furman
Cc: python-list@python.org
Subject: Re: Issue with python365.chm on window 7
> The file at
>
https://urldefense.proofpoint.com/v2/url?u=https-3A__www.python.
Thank you Ethan,,, that worked.
Thank you,
Brian Gibbemeyer
Sr Software Engineer
Watson Health - Value Based Care
Phone: 1-7349133594 | Mobile: 1-7347258319
E-mail: bgibb...@us.ibm.com
100 Phoenix Dr
Ann Arbor, MI 48108-2202
United States
From: Ethan Furman
To: Python
Date
And thank you Joseph as well.
Thank you,
Brian Gibbemeyer
Sr Software Engineer
Watson Health - Value Based Care
Phone: 1-7349133594 | Mobile: 1-7347258319
E-mail: bgibb...@us.ibm.com
100 Phoenix Dr
Ann Arbor, MI 48108-2202
United States
From: "Joseph L. Casale"
To: &q
.
Brian Grawburg
Wilson, NC
--
https://mail.python.org/mailman/listinfo/python-list
he E-mail associated with the account is a "spamcatcher" account that I
got to every couple of months to empty out, and anything sent to it will
not be seen for probably several months, if it is seen at all.
Brian Christiansen
--
https://mail.python.org/mailman/listinfo/python-list
.
--
My Yonkoma: https://www.flickr.com/photos/brian0908/albums/72157680223526176
The E-mail associated with the account is a "spamcatcher" account that I
got to every couple of months to empty out, and anything sent to it will
not be seen for probably several months, if it is seen at
)
if choice == "d":
pi_as_dots()
main()
--
My Yonkoma: https://www.flickr.com/photos/brian0908/albums/72157680223526176
The E-mail associated with the account is a "spamcatcher" account that I
got to every couple of months to empty out, and anything sent to it will
not be seen for probably several months, if it is seen at all.
Brian Christiansen
--
https://mail.python.org/mailman/listinfo/python-list
professor Grimes "Roman bathhouse
tiling" representation of PI (I have not, as of when I typed this
message cut and pasted it into my IDE to see exactly what happens). I
think I will use it, or perhaps an adaptation of it for my "Roman
bathhouse tiling" representation of PI.
I receive a 'not a valid Win32...' after a few minutes of installing python
3.7.4. I have reinstalled it several times with the same results. My laptop
uses windows 7, 64-bit. What can I do to solve this? Thank you.
--
https://mail.python.org/mailman/listinfo/python-list
I used Windows x86-64 executable installer the first two times and Windows
x86-64 web-based installer. They both yielded the same result.
On Tue, 24 Sep 2019 05:46 Cameron Simpson, wrote:
> On 24Sep2019 00:12, Brian Korir wrote:
> >I receive a 'not a valid Win32...' aft
f you want to use such a different language, wouldn't a different
existing language better fit your needs...?
Cheers,
Brian
--
http://mail.python.org/mailman/listinfo/python-list
Paul Rubin wrote:
> Brian Quinlan <[EMAIL PROTECTED]> writes:
>
>>Have those of you who think that the lack of required declarations in
>>Python is a huge weakness given any thought to the impact that adding
>>them would have on the rest of the language? I can
return do_add('http://', node.namespace)
> elif node.namespace == ...
Wouldn't an error be generated because XML_NAMESPACE is not declared?
And I notice that you are not doing any checking that "namespace" is a
valid attribute of the node object. Aren&
he slot names and check them.
How would you find the class definition for the Node object at
compile-time? And by "slots" do you mean the existing Python slots
concept or something new?
> If the Node class doesn't
> declare fixed slots, then they're dynamic and are look
When compiling HPUX for PARISC with the following environemnt variables
I get the following errors.
CFLAGS=+DD64 -fast
CC=aCC
LDFLAGS=+DD64
$ make
aCC -Ae -DD64 -c -DNDEBUG -O -I. -I./Include -DPy_BUILD_CORE -o
Modules/python.o Modules/python.c
Error 119: "./Include/pyport.h", line 612 # #erro
Paul Rubin wrote:
> Brian Quinlan <[EMAIL PROTECTED]> writes:
>
>>OK. The Python compiler would check that the name is declared but it
>>would not check that it is defined before use? So this would be
>>acceptable:
>>
>>def foo():
>> local x
rstanding of Python's existing workings ("The compiler would examine
the other module when it processes the import statement, just like it
does now.").
Without a clear idea of the nature of the proposal, it is impossible to
assess it's costs and benefits. So could a proponent of o
Paul Rubin wrote:
> Brian Quinlan <[EMAIL PROTECTED]> writes:
>
>>Without a clear idea of the nature of the proposal, it is impossible
>>to assess it's costs and benefits. So could a proponent of optional
>>declarations please provide a more clear proposal?
mber when SOX compliant meant they were both the same color?
--
Brian Utterback - OP/N1 RPE, Sun Microsystems, Inc.
Ph:877-259-7345, Em:brian.utterback-at-ess-you-enn-dot-kom
--
http://mail.python.org/mailman/listinfo/python-list
All -
Does anyone have a practical example of a DPX file reader implemented
fully in Python that they would be willing to share?
Thanks!
- Brian
--
http://mail.python.org/mailman/listinfo/python-list
Change -> to ., change this to self, get rid of
"new" and *)
http://neume.sourceforge.net/sizerdemo/
--
Brian
--
http://mail.python.org/mailman/listinfo/python-list
vt):
if evt.Dragging() and evt.LeftIsDown():
x, y = self.ClientToScreen(evt.GetPosition())
fp = (x - self.delta[0], y - self.delta[1])
self.Move(fp)
#v-
--
Brian
--
http://mail.python.org/mailman/listinfo/python-list
/infohost.nmt.edu/tcc/help/pubs/tkinter.pdf.
--
Brian (remove the sport for mail)
http://www.et.web.mek.dtu.dk/Staff/be/be.html
http://www.rugbyklubben-speed.dk
--
http://mail.python.org/mailman/listinfo/python-list
e forms, both geared
towards being input to an search method for your database
I'd be glad to post the code, although I'd probably want to have a last
look at it before I let others see it...
--
Brian Beck
Adventurer of the First Order
--
http://mail.python.org/mailman/listinfo/python-list
ine
where I would start if I were them. Once I get to the BeginnersGuide I
don't see anything immediately useful, and when I look for it I get
frustrated.
--
Brian Beck
Adventurer of the First Order
--
http://mail.python.org/mailman/listinfo/python-list
Thanks. In case anyone else is looking, the recipe is at:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/303440
(which also shows how to make it work with python2.3 and below since
they don't support decorators)
Brian
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] writes:
> python.org = 194.109.137.226
>
> 194 + 109 + 137 + 226 = 666
BUT!
perl -e '$a="194.109.137.226"; @a = reverse split /\./, $a; for $i (0..3) {
$sum += $a[$i]*(256**$i) } print "sum = $sum\n"'
226 + 35072 + 7143424 + 3254779904 = 3261958626
http://3261958626/
Whic
"mr_little" <[EMAIL PROTECTED]> writes:
> Brian Eable wrote:
> > perl -e '$a="194.109.137.226"; @a = reverse split /\./, $a; for $i
> (0..3) { $sum += $a[$i]*(256**$i) } print "sum = $sum\n"'
> >
> > 226 + 35072 + 7143424 + 3
Anyone have any suggestions? The only other thing I looked at was
twisted, which I'm still evaluating.
Might as well check out CherryPy as well. www.cherrypy.org
Might turn out to be simpler for your needs.
--
Brian Beck
Adventurer of the First Order
--
http://mail.python.org/mailman/lis
h
complex APIs that Python will rarely help you.
Of course there are more, like Webware, but you didn't mention that and
I don't have experience with it.
--
Brian Beck
Adventurer of the First Order
--
http://mail.python.org/mailman/listinfo/python-list
ntation: loss of data integrity and
possibly even data itself, or speed and efficiency?
--
Brian Beck
Adventurer of the First Order
--
http://mail.python.org/mailman/listinfo/python-list
> I think this seems to be a problem due to the use of a forbidden word. But I
> have no chance to change the WSDL definition, so: How can I get the
> variable resp.return? Any suggestions?
To get it: getattr(resp, 'return')
To set it: setattr(resp, 'return', value)
101 - 200 of 1138 matches
Mail list logo