Popular Posts

Updated Rastof FakeNameGenerator

Hi,

I updated @rastof ’s FakeNameGenerator code for it to work now. Used my phone, so its not gonna be the best method used. (As long as it works :happy:)


Python:
import requests
from bs4 import BeautifulSoup

class FakeNameGenerator:
    def __init__(self, gender="random", name="us", country="us"):
        self.gender = gender
        self.name = name
        self.country = country
        self.soup = BeautifulSoup(self.require_page_source(self.gender, self.name...
Updated Rastof FakeNameGenerator

by Botato via TBN

No comments:

Add Comment