This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- code for https://youtu.be/tp_5c6jaNQE | |
| create table users ( | |
| id serial primary key, | |
| first_name varchar(255) not null, | |
| last_name text, | |
| age int, | |
| email text unique not null | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Rhino | |
| import scriptcontext | |
| # for accesssing GH classes | |
| import clr | |
| clr.AddReference("Grasshopper") | |
| from Grasshopper.Kernel.Data import GH_Path | |
| from Grasshopper import DataTree |