Python - job()
This is reference documentation for the Nitric Python SDK. To learn about Batch Services in Nitric start with the Batch docs.
Creates a new Batch Job.
from nitric.resources import jobanalyze = job("analyze")
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The unique name of this Batch Job within the app. Subsequent calls to
job
with the same name will return the same object.
Examples
Create a Job
from nitric.resources import jobanalyze = job("analyze")
Create a Job with permissions to submit jobs
from nitric.resources import jobanalyze = job("analyze").allow("submit")
Last updated on Apr 3, 2025