Skip to content

Instantly share code, notes, and snippets.

@shks
shks / read_tsv_csv.py
Last active January 2, 2021 18:30
read_tsv_csv.py
#tsv, csvファイルからデータの読み込み
def readFile(filePath):
#TSVの場合#delimiter="\t"
#CSVの場合","
_d= "\t"#","
#skiprows=1 : 最初の行を無視する
_data = np.loadtxt(filePath,delimiter = _d,skiprows=1)
@shks
shks / OSC-Python.py
Created June 19, 2020 17:21
Touchdesigner - python communication via OSC
#python
'''
setup instruction
for Install pythonosc
pip install python-osc
'''
from pythonosc import dispatcher