Core Concepts
Understanding these two concepts is key to building with Datallog.
Automations
A Datallog automation runs a single, independent process.
- Each automation is defined by a single Python function decorated with
@automation. - The
@automationdecorator marks the entry point of your script. - Automations can receive data via a
seedargument, which is a serializable JSON object.
Deployment
To deploy your automation to the cloud, use the datallog login and datallog push commands. Check the command help (datallog <command> --help) for more details. Happy coding! ✨