Files
Azalea (on HyDEV-Daisy) 2cc78c1af9 [+] Readme
2022-04-14 20:45:56 -04:00

11 lines
256 B
Python

from hypy_utils import Timer
import pysenti
if __name__ == '__main__':
timer = Timer()
timer.log(pysenti.get_senti('I love you'))
timer.log(pysenti.get_senti('I hate you'))
timer.log(len(pysenti.get_senti_list(['I love cats'] * 10000)))