With antares-craft you can interact with studies using AntaresWeb API or in local mode. To interact with AntaresWeb you need a token.
api_config = APIconf(api_host=antares_web.url, token=your_token, verify=False)
study = create_study_api("antares-craft-test", "880", api_config)
Not handled yet
study = create_study_local("your_name", 880, {"local_path": "your_path", "study_name": "your_name"})
study = read_study_local(study_path)
area_properties = AreaProperties()
area_properties.energy_cost_unsupplied = 10
study.create_area("fr", area_properties)
area_list = study.read_areas()