{"id":27538,"library":"wbcore","title":"WB Core","description":"WB Core is a Python library providing core utilities and services for Wolfram|Alpha Notebook Edition and other Wolfram products. It includes tools for data processing, networking, and cloud interactions. The current version is 1.63.17, with frequent releases.","status":"active","version":"1.63.17","language":"python","source_language":"en","source_url":"https://github.com/WolframResearch/wbcore","tags":["wolfram","utilities","core"],"install":[{"cmd":"pip install wbcore","lang":"bash","label":"PyPI"}],"dependencies":[],"imports":[{"note":"Direct import of module does not expose WBCore class; use explicit import.","wrong":"import wbcore","symbol":"WBCore","correct":"from wbcore import WBCore"},{"note":"WBCrypto is not a submodule; it's imported directly from wbcore.","wrong":"from wbcore.crypto import WBCrypto","symbol":"WBCrypto","correct":"from wbcore import WBCrypto"}],"quickstart":{"code":"from wbcore import WBCore\n\n# Initialize core\ncore = WBCore()\nprint(core.version)","lang":"python","description":"Initialize and check version of WB Core."},"warnings":[{"fix":"Set WOLFRAM_API_KEY environment variable if using cloud services.","message":"WBCore initialization may require authentication or environment variables for cloud features.","severity":"gotcha","affected_versions":"all"},{"fix":"Check documentation for correct import paths; prefer direct imports from wbcore.","message":"Importing from submodules like wbcore.utils may not work; most classes are directly under wbcore.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Use: from wbcore import WBCrypto","cause":"Trying to import WBCrypto from wrong submodule.","error":"ImportError: cannot import name 'WBCrypto' from 'wbcore'"},{"fix":"Use: from wbcore import WBCore; core = WBCore(); core.version","cause":"Direct import of wbcore doesn't expose version; need to import WBCore class.","error":"AttributeError: module 'wbcore' has no attribute 'version'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}