Filtering scraped usernames from active/deleted profiles

Hey everyone I have an older list of usernames and i want to filter and separate the live accounts vs deleted/renamed accounts , is there any tool or a script i can use to run the list thru ? thanks in advance

1 Like

Try it, it should work.

2 Likes

Note that this script does the opposite: it will return OK if the username is available (ie: if the account doesn’t exist).

1 Like

change:
if(check($account)){
to:
if(!check($account)){

:sunglasses: