Import CSV and make table in rhino

Hello ,
I made a script to place table in rhino.
It’s simple but maybe can help.

Work with Excel , OpenOffice , Google Sheets

I made some few modifications of the script , i had problems with Excels csv file :

Import-csv-r5_v2.py (3.7 KB)

6 Likes

Thanks for sharing!

I think it won’t work for me whilst I’m in Rhino 5 as it uses the csv module but I’m sure plenty of people will find it useful.

Thanks again

Graham

1 Like

I found a way to make it work without the csv module.
I uploaded it.

2 Likes

This works great. Thanks for posting.

1 Like

Merci Sylvain !!

J’ai ajouté

# encoding=utf8
from __future__ import unicode_literals
import sys
reload(sys)
sys.setdefaultencoding('utf8')

au début du code pour forcer l’encodage des caractères sans lequel on obtient des “é” au lieu de nos célébres “é”.