tw.endpoints.auto_forecast
class tw.endpoints.auto_forecast
Low-level HTTP client for the ``/auto-forecast`` API section. Each method maps directly to one API endpoint.
Methods
auto_forecast.post() | Submit an auto-forecast job. |
auto_forecast.status() | Retrieve the current status of a job. |
auto_forecast.results() | Retrieve forecast results for a finished job. |
auto_forecast.model() | Retrieve the trained model for a finished job. |
auto_forecast.delete() | Delete a job and its associated resources. |
Example Usage
import tangent_works
tw = tangent_works.API(
server = "https://api.tangent.works/",
token = TANGENT_LICENSE_TOKEN
)
tw_endpoints_auto_forecast = tw.endpoints.auto_forecast