Re: the best online course

2016-07-06 Thread Jay Thompson
There are a ton of great resources on https://wiki.python.org/moin/BeginnersGuide . The resource I generally recommend to people first is "Learn Python The Hard Way" @ http://learnpythonthehardway.org/ . The course is $29.95 and worth every penny but if you can't afford it the author has made the c

Re: 64 bit offsets?

2010-10-07 Thread jay thompson
us. What we are having to manage is us." ...Bill Ballantine, marine biologist. On 2010-10-07 8:42 AM, "MRAB" wrote: On 06/10/2010 22:41, jay thompson wrote: > > Hello everyone, > > I'm trying to extract some data fro... I would've thought that a 64-bit ver

64 bit offsets?

2010-10-07 Thread jay thompson
Hello everyone, I'm trying to extract some data from a large memory mapped file (the largest is ~30GB) with re.finditer() and re.start(). Pythons regular expression module is great but the size of re.start() is 32bits (signed so I can really only address 2GB). I was wondering if any here had some

Re: 64 bit offsets?

2010-10-07 Thread jay thompson
As nice as it would be to use 64bit offsets I am instead mmapping the file in 1GB chunks and getting the results I need. I would still be interested in a 64bit solution though. jt On Wed, Oct 6, 2010 at 2:41 PM, jay thompson wrote: > Hello everyone, > > I'm trying to extract so

Re: ctypes

2010-09-23 Thread jay thompson
? Alternatively I could also write a new function in libraw that can access this struct and be exposed to ctypes. jt On Thu, Sep 23, 2010 at 12:28 AM, Simon Brunning wrote: > On 22 September 2010 21:13, jay thompson > wrote: > > Hello, > > > > I posted in regard to this

ctypes

2010-09-22 Thread jay thompson
Hello, I posted in regard to this in the past but it didn't go very far, no ones fault, but I'm again atempting to make this work and could use some help. I would like to use libraw.dll (http://www.libraw.org/ version 0.10) from python and can access all the functions fine and produce images but