{"id":27055,"library":"icsneopy","title":"icsneopy","description":"A Python client for interacting with the ICS (Industrial Control Systems) network protocol. Version 1.2.2. Release cadence is irregular, as it is a small niche library.","status":"active","version":"1.2.2","language":"python","source_language":"en","source_url":"https://github.com/icsneopy/icsneopy","tags":["ics","industrial control","protocol","client"],"install":[{"cmd":"pip install icsneopy","lang":"bash","label":"Install from PyPI"}],"dependencies":[],"imports":[{"note":"The only public API is ICSClient. No other submodules.","wrong":"","symbol":"ICSClient","correct":"from icsneopy import ICSClient"}],"quickstart":{"code":"from icsneopy import ICSClient\n\n# Replace with actual endpoint and credentials\nclient = ICSClient(endpoint='https://example.com/api', api_key=os.environ.get('ICS_API_KEY', ''))\nresponse = client.send_command('status')\nprint(response)","lang":"python","description":"Create an ICS client and send a command."},"warnings":[{"fix":"Upgrade to Python 3.9 or higher.","message":"The library requires Python 3.9+. Using older Python versions will fail.","severity":"gotcha","affected_versions":"all"},{"fix":"Use `from icsneopy import ICSClient` instead of `from icsneopy.client import ICSClient`.","message":"In version 1.0.0, the import path changed from `icsneopy.client` to `icsneopy`. Old imports will break.","severity":"breaking","affected_versions":"<1.0.0"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run `pip install icsneopy`.","cause":"icsneopy is not installed.","error":"ModuleNotFoundError: No module named 'icsneopy'"},{"fix":"Ensure you have version >=1.0.0: `pip install -U icsneopy`. Import: `from icsneopy import ICSClient`.","cause":"Wrong import path or very old version.","error":"ImportError: cannot import name 'ICSClient' from 'icsneopy'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}