{"id":21300,"library":"esdd-client","title":"ESDD Client","description":"API client for the online platform ESDD (evaluation, standardization, and derived data). Latest version 0.1.9.0, supports Python >=3.11. Active development.","status":"active","version":"0.1.9.0","language":"python","source_language":"en","source_url":"https://github.com/ESDD/esdd-client","tags":["ESDD","API client","data evaluation"],"install":[{"cmd":"pip install esdd-client","lang":"bash","label":"pip install"}],"dependencies":[],"imports":[{"note":"Main client class","symbol":"ESDDClient","correct":"from esdd_client import ESDDClient"}],"quickstart":{"code":"import os\nfrom esdd_client import ESDDClient\n\napi_key = os.environ.get('ESDD_API_KEY', '')\nclient = ESDDClient(api_key=api_key)\nprojects = client.get_projects()\nprint(projects)","lang":"python","description":"Initialize client with API key from environment variable and fetch projects."},"warnings":[{"fix":"Ensure Python 3.11+ is installed before installing esdd-client.","message":"The client requires Python >=3.11. Using older Python versions causes installation failure.","severity":"gotcha","affected_versions":">=0.1.0"},{"fix":"Set the ESFD_API_KEY environment variable before using the client.","message":"All requests use the API key; if not provided, the client may raise an authentication error. The API key must be set as environment variable 'ESDD_API_KEY' or passed directly.","severity":"gotcha","affected_versions":">=0.1.0"}],"env_vars":null,"last_verified":"2026-04-27T00:00:00.000Z","next_check":"2026-07-26T00:00:00.000Z","problems":[{"fix":"Use 'from esdd_client import ESDDClient' (underscore, not hyphen).","cause":"Incorrect import path. The package name uses hyphen, but the module uses underscore.","error":"ModuleNotFoundError: No module named 'esdd_client'"},{"fix":"Pass the API key: ESDDClient(api_key='your_key') or set ESFD_API_KEY environment variable.","cause":"API key not provided when initializing ESDDClient.","error":"TypeError: __init__() missing 1 required positional argument: 'api_key'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}