Registry / devops / robotcode-robot

robotcode-robot

JSON →
library2.5.1pypypiunverified

Provides language server protocol (LSP) support classes for Robot Framework projects in VS Code and other editors via RobotCode. Version 2.5.1, active development. Released ~monthly.

pip install robotcode-robot
INSTALL
IMPORT
SIG · ROBOTCODE-ROBOT
R
robotcode-robot
devopspythonv2.5.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

RobotCodeRobot
from robotcode import RobotCodeRobot
from robotcode_robot import RobotCodeRobot

Basic usage to analyze a Robot Framework file for issues.

from robotcode_robot import RobotCodeRobot # Initialize with a Robot Framework project path robot = RobotCodeRobot("/path/to/project") # Run analysis on a Robot file issues = robot.analyze("tests/suite.robot") print(issues)
Debug
Known issues
gotchaThe package name on PyPI uses a hyphen (robotcode-robot), but the Python import path uses underscores (robotcode_robot). Using the hyphen in import statements will fail with ModuleNotFoundError.
fix
Always use underscores in import statements: from robotcode_robot import ...
affects: all
gotcharobotcode-robot is a support package for the robotcode VS Code extension. It is not meant to be used directly by end users; the public API may change without notice. Avoid hardcoding dependencies on internal classes.
fix
Use the official RobotCode extension in VS Code instead of programmatic usage.
affects: all
breakingIn version 2.0.0, the package was restructured. The old import from robotcode_robot.robot is now obsolete; use robotcode_robot import directly.
fix
Update imports: from robotcode_robot import RobotCodeRobot
affects: >=2.0.0
gotchaRequires Python >=3.10. Older Python versions are not supported.
fix
Ensure your environment uses Python 3.10 or newer.
affects: all
Upgrade
Version history
2.5.1latest on PyPI · released Apr 1, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
robotcode-robot — pip install robotcode-robot · libregistry