https://github.com/david-lor/thispersondoesnotexistapi
Unofficial "API" for the ThisPersonDoesNotExist webpage, that returns a random fictional person picture generated by AI
https://github.com/david-lor/thispersondoesnotexistapi
ai human people person python python-requests python3 requests thispersondoesnotexist
Last synced: 5 months ago
JSON representation
Unofficial "API" for the ThisPersonDoesNotExist webpage, that returns a random fictional person picture generated by AI
- Host: GitHub
- URL: https://github.com/david-lor/thispersondoesnotexistapi
- Owner: David-Lor
- License: apache-2.0
- Created: 2019-02-17T22:10:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-25T18:08:01.000Z (about 1 year ago)
- Last Synced: 2024-12-10T05:42:47.781Z (5 months ago)
- Topics: ai, human, people, person, python, python-requests, python3, requests, thispersondoesnotexist
- Language: Python
- Size: 9.77 KB
- Stars: 129
- Watchers: 2
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ThisPersonDoesNotExistAPI
Unofficial "API" for the [ThisPersonDoesNotExist](https://thispersondoesnotexist.com/) website.
## What is ThisPersonDoesNotExist?
A page that returns a JPEG picture of a person that does not exist, because it has been generated using an AI.
When opening the webpage, a image is returned directly, and refreshing the page will return a new image (although they can be repeated because the repository is limited and images are not generated on real time).Some articles about it:
- [This Person Does Not Exist - Computer generated people Refresh to get a new one | Product Hunt](https://www.producthunt.com/posts/this-person-does-not-exist)
- [Thispersondoesnotexist.com is face-generating AI at its creepiest](https://thenextweb.com/artificial-intelligence/2019/02/13/thispersondoesnotexist-com-is-face-generating-ai-at-its-creepiest/)## Why creating/using an "API"?
Why not? Use your imagination!
## Requirements
* Python 3.6
* requests library
* free time## Install it with pip
```bash
pip install git+https://github.com/David-Lor/ThisPersonDoesNotExistAPI
```## Usage
### Get a person using function
```python
from thispersondoesnotexist import get_online_person
picture = get_online_person() # bytes representation of the image# Save to a file
from thispersondoesnotexist import save_picture
save_picture(picture, "a_beautiful_person.jpeg")
# If no filename is provided, one will be generated using the checksum of the picture
save_picture(picture)```
### Get a person using class
```python
from thispersondoesnotexist import Person
# Initialize with True to automatically get a person from the webpage
person = Person(fetch_online=True)# Save to a file
person.save("a_beautiful_person.jpeg")
# If no filename is provided, one will be generated using the checksum of the picture
person.save()```
### Generate checksums
This can be useful if you want to create a scraper of fictional persons. You would be calling the methods to get random pictures, and to avoid repeating them, you can use their checksum - or just save with the auto-generated filename.
```python
from thispersondoesnotexist import get_online_person, get_checksum_from_picture, Person# Using object
person = Person(fetch_online=True)
checksum = person.get_checksum("md5")# Using function
picture = get_online_person()
checksum2 = get_checksum_from_picture(picture) # Method is optional, defaults to "md5"```