solargraph-utils.py

solargraph-utils for python


Keywords
solargraph
License
MIT
Install
pip install solargraph-utils.py==1.1.0

Documentation

solargraph-utils.py

A utilities of solargraph for python inspired by solargraph-utils.

Current supported APIs

  • /prepare
  • /update
  • /suggest
  • /define
  • /resolve
  • /signify

solargraph API docs.

Example

import solargraph_utils

text = "String."
line = 0
column = 7

server = solargraph_utils.Server(command='solargraph')
client = solargraph_utils.Client(server.url)

result = client.suggest(text=text, line=line, column=column)
print(result)

server.stop()