A seamless Python remote bridge to Cadence's Skill in Virtuoso
Project description
Python-Skill Bridge
Prerequisites
- Python 3.6 or higher
- pip
- IC 6.1.7 or ICADV/M or higher
Features
- Run Virtuoso's Skill functions from Python
- Automatically translate all Skill objects to Python
- Automatically translate Python numbers, booleans, strings, lists and dictionaries to Skill
- Retrieve Skill function documentation in Python
- Convenient tab-completion (+ jupyter support)
- object attributes
- global function list
- methods
Read more in the full documentation.
Installation
pip install skillbridge
Add the --user
option if you don't want to install it systemwide.
Before you can use the Skill bridge you must generate the function definitions from Virtuoso via the Skill console.
- Type
skillbridge path
into your shell to acquire the correctPATH-TO-IPC-SERVER
- Open Virtuoso
- Type these commands into the Skill console
load("PATH-TO-IPC-SERVER")
After that you can also generate the static completion stub files. This is useful for code completion in certain IDEs (e.g. PyCharm)
- Type
skillbridge generate
into your shell.
Updating
In order to update the python package type this
pip install skillbridge --upgrade
Examples
Note: All these examples assume that the Skill server is running. You can start it by typing the following command into the Skill console.
load("PATH-TO-IPC-SERVER")
pyStartServer
Connecting to the server
from skillbridge import Workspace
ws = Workspace.open()
Accessing the currently open edit cell view
cell_view = ws.ge.get_edit_cell_view()
Inspecting available properties
>>> dir(cell_view)
['DBUPerUU', 'any_inst_count', 'area_boundaries', 'assoc_text_displays', 'b_box', ...]
or type cell_view.<TAB>
in jupyter/ipython
Reading properties
>>> print(cell_view.b_box)
[[0, 10], [2, 8]]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file skillbridge-1.2.7.tar.gz
.
File metadata
- Download URL: skillbridge-1.2.7.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcea8804edd82de790ba9bb437e2cd98653895ea2b5814ec979dea1473772a7f |
|
MD5 | 8eb7b17291740fc457e6944235a65dc4 |
|
BLAKE2b-256 | 070abd57361fca82a7ad4a5dcf44b89a0806da2208d717176d53ea38c6f8440d |
File details
Details for the file skillbridge-1.2.7-py3-none-any.whl
.
File metadata
- Download URL: skillbridge-1.2.7-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81ce79670c824967d6bcb02f51e05f35a8b43179b902a3dae9c6036ef1e9a6bd |
|
MD5 | 241c1c5b6fd8ab69117d73e88029751f |
|
BLAKE2b-256 | dbbd2026fffba041cec366e12cd2379f7f7fc0e32a9bcadbc5372575230fb1ee |