from limitly import Limitlylimitly = Limitly(api_key="your_limitly_api_key")# Create a new plannew_plan = limitly.plans.create({ "name": "Basic Plan", "description": "Basic usage plan with 1000 requests per month", "max_requests": 1000, "request_period": "month", "is_active": True})print(f"New plan created: {new_plan.data.id}")