When you have a JSON file or an array of objects and need to filter, search, or query them with MongoDB-style syntax - without setting up a database.
import pandas as pd from prophet import Prophet if __name__ == "__main__": prophet_model = Prophet( weekly_seasonality=False, daily_seasonality=False, changepoint ...