Page 1 of 1

Bulk updates of accounts with CSV

Posted: Thu Aug 04, 2022 10:40 am
by rbman
Hi Martin,

First of all I want to say thank you for the massive work you did with twitterdub and constant support your provide to community and users around it for years.

I've been using it for a week now and still exploring new functionality and learn something new from your videos.

I've been struggling with bulk updates of accounts with CSV.

Can you help me / share format how shall I add avatar/header to CSV? Does it need to be just a simple location of the file on my PC?

Would appreciate if you can attach a simple example of CSV file here, so I can use it as a template.

Thanks!

Re: Bulk updates of accounts with CSV

Posted: Thu Aug 04, 2022 8:56 pm
by martin@rootjazz
ok so there are two ways

specify a CSV with the username to update

Code: Select all

username,name,website,new_username, avatar,header,bio
example to just update avatar and header

Code: Select all

rootjazz,,,c:\images\av,jpg,c:\images\headers\rootjazz.jpg,
then if you don't care which set of updates go to which accounts, as above but without username

Code: Select all

name,website,new_username, avatar,header,bio
so to update 4 accounts

Code: Select all

,,c:\images\av1.jpg,c:\images\headers\1.jpg,
,,c:\images\av2.jpg,c:\images\headers\2.jpg,
,,c:\images\av3.jpg,c:\images\headers\3.jpg,
,,c:\images\a4,jpg,c:\images\headers\4.jpg,

then one line applies to one selected account randomly




Regards,
Martin

Re: Bulk updates of accounts with CSV

Posted: Fri Aug 05, 2022 12:41 pm
by rbman
Thank you Martin, much appreciated!