Good news is you don't need to import any modules in ATK 11.2.
Bad news is that the changes made in going from 2008.10 to 11.2 (10.8 originally) mean most old scripts will require some minor changes (in some cases major changes) in order to function with the new Python interface.
Moreover, on the positive side, you can import XYZ files directly in ATK:
config = nlread('file.xyz')[0]
will make "config" a molecule with the relevant elements and coordinates, which can then be further manipulated (you can just extract the coordinates and elements using the methods "config.cartesianCoordinates()" and "config.elements()").