Because the user should not guess which character is uppercase and lowercase, which is kind of annoying.
For example let's say you want to see if this user have Deviant Art account :
python sherlock.py username --site deviantart ❌
The above will result in error, now the user will change first character to uppercase :
python sherlock.py username --site DeviantArt ❌
And that user still will get an error, because the correct name are "DeviantART"
python sherlock.py username --site DeviantART ✔️
If the parameter for site name are not case sensitive, issue like that can be avoided.
I think I can handle this issue.
Most helpful comment
I think I can handle this issue.