We have begun development on a parallel Python package, named PyStormTracker, which locates cyclone centers from model outputs and compiles a list of cyclone tracks. In the PyStormTracker's initial implementation, we define cyclones as local minima of the mean sea level pressure field. The cyclones are detected using SciPy's multi-dimensional image processing library. Cyclone center detection is accelerated using the MPI4Py message passing library, parallelizing over time steps in the input dataset. The tracks are generated by linking cyclone centers together, in time, using the nearest neighborhood method. We have evaluated the performance of the package on NCAR's Yellowstone cluster. The source code is available at GitHub, and is designed to be extensible such that new detection and linking algorithms can be independently implemented.