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

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 jayryan.thomp...@gmail.comwrote: Hello everyone, I'm trying

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

Re: 64 bit offsets?

2010-10-07 Thread jay thompson
to manage is us. ...Bill Ballantine, marine biologist. On 2010-10-07 8:42 AM, MRAB pyt...@mrabarnett.plus.com 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 version of Python would have 64-bit offsets

Re: ctypes

2010-09-23 Thread jay thompson
this struct and be exposed to ctypes. jt On Thu, Sep 23, 2010 at 12:28 AM, Simon Brunning si...@brunningonline.netwrote: On 22 September 2010 21:13, jay thompson jayryan.thomp...@gmail.com wrote: Hello, I posted in regard to this in the past but it didn't go very far, no ones fault, but I'm

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