michaelshumshum / r-placer

bot for 2022 r/place
MIT License
93 stars 20 forks source link

Why do you complicate things with google sheets? #3

Closed omar2205 closed 2 years ago

omar2205 commented 2 years ago

why not drop the accounts into a .txt file?

michaelshumshum commented 2 years ago

idk. in the future, when you get hundreds of accounts, putting them into a CSV is preffered, at least for me. if you put it into a text file, you would have to deal with string parsing a little bit.

michaelshumshum commented 2 years ago

there is also the issue with opening files on the drive directly. either you leave it open for the entire time your script runs or open it every time you edit it. the first is that if there were any problems that caused the script to stop, the text would not save. the latter is that it takes more time to open files. an API request is relatively faster and safer.

omar2205 commented 2 years ago

Okay