- Joined
- Jul 15, 2020
- Messages
- 707
- Reaction score
- 476
Hi there
This little script is what i used to get 100,000 unique profile images from thispersondoesnotexist.
Create a folder in c:\people (or change the script below)
Run the following in PowerShell on Windows.
That's it - have a great day.
This little script is what i used to get 100,000 unique profile images from thispersondoesnotexist.
Create a folder in c:\people (or change the script below)
Run the following in PowerShell on Windows.
Code:
#200 from BHW little script
$url = "https://www.thispersondoesnotexist.com/image"
$i = 0
For ($i=0; $i -le 1000000; $i++) {
$wc = New-Object System.Net.WebClient
$wc.DownloadFile($url, "C:\people\200 from BHW is not a bot _" + $i + ".jpg")
Start-Sleep -Seconds 2.1
Write-Host $i
}