Kingsley Reuben
Kingsley Reuben

Reputation: 145

Python 3.1.1 for OS X FSEvents

  1. Am working on file / folder event capturing of OS X 10.5 and 10.6 versions. My application is developed using Python 3.1.1. Donno whether FSEvents are supported by Python 3.1.1.
    1. If FSEvents are not supported by Python 3.x, is there any other way to do this using Python 3.x?

regards, Kingsley Reuben

Upvotes: 1

Views: 1135

Answers (2)

pidge
pidge

Reputation: 1035

MacFSEvents supports Python 3 as of version 0.3.

Upvotes: 0

djc
djc

Reputation: 11731

Probably not, there aren't that many libraries for Python 3.x yet. It might be easy to adapt some of the Python 2 libraries, though (http://bitbucket.org/nicdumz/fsevents/, for example).

Upvotes: 1

Related Questions