LightCurve is a module that creates light curves of a similar field of stars. This is useful in time domain astronomy in search of transient events and studies of variable stars, i.e. eclipsing binaries.
from lightcurator import lightcurve as lc
object_table = lc.makelist('')
# parallelized alignment
object_table = lc.paralign(object_table)
# or serial alignment
object_table = lc.align(object_table)
# All-in-one
object_table = lc.do_lightcurve(object_table)
The process follows:
astrometery