FakesUsers


NameFakesUsers JSON
Version 3.7 PyPI version JSON
download
home_page
SummaryFakesUsers - Python library that regenerates random names, phone numbers, addresses, email and much more.
upload_time2024-03-15 09:36:35
maintainer
docs_urlNone
authorfilcher2011
requires_python>=3.7
license
keywords fakesusers
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # FakesUsers
FakesUsers - Python library that regenerates random names, phone numbers, addresses, email and much more.

## Content
- [About the project](#About-the-project)
- [New version](#New-vesion)
- [Install and Import](#Install-and-Import)
- [Basic Concepts](#Basic-Concept)
- [Example code](#Example-Code)
- [Information on creator](#Information-on-creator)

## About the project
FakesUsers -- is a project designed to generate random information from its database. It can be used for any purpose, as well as modified and improved in some way. filcher2011 is working on the project. He works hard on the project and tries to release updates more often.

## New vesion
New version FakesUsers 3.7. The fake_job() function was added, and the genRegion() function was also removed

## Install and Import
In order to import the library, you need to install it :)
Enter the cmd command to install this library
```sh
pip install FakesUsers
```
After that, in your file with the .py extension, write . . .
```sh
from FakesUsers import Fu
fu = Fu("ru/en/de")
```
PS:If you put Fu('ru'), then all names, numbers and addresses will be regenerated as relevant for Russia. otherwise, if you specify Fu('en'), all names, phone numbers, and addresses will be regenerated to the US. Otherwise, if you specify Fu('de'), all names, phone numbers and addresses will be regenerated for Germany.

Displaying a random name
```sh
fake_name('gender')
```
PS:If you write 'male' in brackets, then only male names will be generated, the opposite if you put 'female' in brackets

Displaying a random name
```sh
fake_lastname('gender')
```
PS:If you write 'male' in brackets, then only male lastnames will be generated, the opposite if you put 'female' in brackets

Displaying a random phone number
```sh
fake_number()
```

Displaying a random addres
```sh
fake_addres(True/False)
```
PS:True means that the address will be generated along with the city. Opposite with False

Displaying a random email
```sh
fake_email()
```

Displaying a random password
```sh
fake_pass()
```

Displaying a random city
```sh
fake_city()
```

Displaying a random Cart's number
```sh
fake_banknumber()
```

Displaying a random date of birth
```sh
fake_dob()
```

Displaying a random login
```sh
fake_login()
```

Displaying a random auto number
```sh
fake_autonumber()
```

Displaying a random website(link)
```sh
fake_link()
```

Displaying a random text
```sh
fake_text()
```

And displaying a random job
```sh
fake_job()
```

## Example Code
Let's look at a simple code that will output a random man's and woman's name, phone number and address
Code
```sh
from FakesUsers import Fu

fu = Fu('en')

print(fu.fake_name('male'))
print(fu.fake_name('female'))
print(fu.fake_city())
print(fu.fake_addres(True))
print(fu.fake_addres(False))
print(fu.fake_number())
print(fu.fake_email())
print(fu.fake_autonum())
print(fu.fake_pass())
print(fu.fake_link())
print(fu.fake_banknumber())
print(fu.fake_dob())
print(fu.fake_lastname('male'))
print(fu.fake_lastname('female'))
print(fu.fake_text())
print(fu.fake_job())
```
Result
```sh
Justin Cashman
Trinity Blare
San-Antonio city
Chicago City, 106 San-Alnaser Streed
42 Red Streed
+10069997590
beebag@outlook.qq
MBD-537
25246fu4516553225246
kitstant.com
1094 1940 4237 3418
18.3.1972
Absher
Bishop
You gone on a visit
Police Officer
```

## Information on creator
filcher2011 == I've been a Python programmer for about 2 years now. He does small projects :)
Telegram-channel: https://t.me/filchercode \
Financial support: https://www.donationalerts.com/r/filcher2011 

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "FakesUsers",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "FakesUsers",
    "author": "filcher2011",
    "author_email": "filcher2011@mail.ru",
    "download_url": "https://files.pythonhosted.org/packages/c2/db/dd0fdaaa72265da3731656bd8a654f72d070010ae4c555f265285dd1d0ed/FakesUsers-3.7.tar.gz",
    "platform": null,
    "description": "# FakesUsers\r\nFakesUsers - Python library that regenerates random names, phone numbers, addresses, email and much more.\r\n\r\n## Content\r\n- [About the project](#About-the-project)\r\n- [New version](#New-vesion)\r\n- [Install and Import](#Install-and-Import)\r\n- [Basic Concepts](#Basic-Concept)\r\n- [Example code](#Example-Code)\r\n- [Information on creator](#Information-on-creator)\r\n\r\n## About the project\r\nFakesUsers -- is a project designed to generate random information from its database. It can be used for any purpose, as well as modified and improved in some way. filcher2011 is working on the project. He works hard on the project and tries to release updates more often.\r\n\r\n## New vesion\r\nNew version FakesUsers 3.7. The fake_job() function was added, and the genRegion() function was also removed\r\n\r\n## Install and Import\r\nIn order to import the library, you need to install it :)\r\nEnter the cmd command to install this library\r\n```sh\r\npip install FakesUsers\r\n```\r\nAfter that, in your file with the .py extension, write . . .\r\n```sh\r\nfrom FakesUsers import Fu\r\nfu = Fu(\"ru/en/de\")\r\n```\r\nPS:If you put Fu('ru'), then all names, numbers and addresses will be regenerated as relevant for Russia. otherwise, if you specify Fu('en'), all names, phone numbers, and addresses will be regenerated to the US. Otherwise, if you specify Fu('de'), all names, phone numbers and addresses will be regenerated for Germany.\r\n\r\nDisplaying a random name\r\n```sh\r\nfake_name('gender')\r\n```\r\nPS:If you write 'male' in brackets, then only male names will be generated, the opposite if you put 'female' in brackets\r\n\r\nDisplaying a random name\r\n```sh\r\nfake_lastname('gender')\r\n```\r\nPS:If you write 'male' in brackets, then only male lastnames will be generated, the opposite if you put 'female' in brackets\r\n\r\nDisplaying a random phone number\r\n```sh\r\nfake_number()\r\n```\r\n\r\nDisplaying a random addres\r\n```sh\r\nfake_addres(True/False)\r\n```\r\nPS:True means that the address will be generated along with the city. Opposite with False\r\n\r\nDisplaying a random email\r\n```sh\r\nfake_email()\r\n```\r\n\r\nDisplaying a random password\r\n```sh\r\nfake_pass()\r\n```\r\n\r\nDisplaying a random city\r\n```sh\r\nfake_city()\r\n```\r\n\r\nDisplaying a random Cart's number\r\n```sh\r\nfake_banknumber()\r\n```\r\n\r\nDisplaying a random date of birth\r\n```sh\r\nfake_dob()\r\n```\r\n\r\nDisplaying a random login\r\n```sh\r\nfake_login()\r\n```\r\n\r\nDisplaying a random auto number\r\n```sh\r\nfake_autonumber()\r\n```\r\n\r\nDisplaying a random website(link)\r\n```sh\r\nfake_link()\r\n```\r\n\r\nDisplaying a random text\r\n```sh\r\nfake_text()\r\n```\r\n\r\nAnd displaying a random job\r\n```sh\r\nfake_job()\r\n```\r\n\r\n## Example Code\r\nLet's look at a simple code that will output a random man's and woman's name, phone number and address\r\nCode\r\n```sh\r\nfrom FakesUsers import Fu\r\n\r\nfu = Fu('en')\r\n\r\nprint(fu.fake_name('male'))\r\nprint(fu.fake_name('female'))\r\nprint(fu.fake_city())\r\nprint(fu.fake_addres(True))\r\nprint(fu.fake_addres(False))\r\nprint(fu.fake_number())\r\nprint(fu.fake_email())\r\nprint(fu.fake_autonum())\r\nprint(fu.fake_pass())\r\nprint(fu.fake_link())\r\nprint(fu.fake_banknumber())\r\nprint(fu.fake_dob())\r\nprint(fu.fake_lastname('male'))\r\nprint(fu.fake_lastname('female'))\r\nprint(fu.fake_text())\r\nprint(fu.fake_job())\r\n```\r\nResult\r\n```sh\r\nJustin Cashman\r\nTrinity Blare\r\nSan-Antonio city\r\nChicago City, 106 San-Alnaser Streed\r\n42 Red Streed\r\n+10069997590\r\nbeebag@outlook.qq\r\nMBD-537\r\n25246fu4516553225246\r\nkitstant.com\r\n1094 1940 4237 3418\r\n18.3.1972\r\nAbsher\r\nBishop\r\nYou gone on a visit\r\nPolice Officer\r\n```\r\n\r\n## Information on creator\r\nfilcher2011 == I've been a Python programmer for about 2 years now. He does small projects :)\r\nTelegram-channel: https://t.me/filchercode \\\r\nFinancial support: https://www.donationalerts.com/r/filcher2011 \r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "FakesUsers - Python library that regenerates random names, phone numbers, addresses, email and much more.",
    "version": "3.7",
    "project_urls": null,
    "split_keywords": [
        "fakesusers"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2dbdd0fdaaa72265da3731656bd8a654f72d070010ae4c555f265285dd1d0ed",
                "md5": "4ed0c1fa28b20a90a2fe106b4f6f23f1",
                "sha256": "424644653a2118034adce6d5bc78225e33c97edbceefee62c59be1479565e89d"
            },
            "downloads": -1,
            "filename": "FakesUsers-3.7.tar.gz",
            "has_sig": false,
            "md5_digest": "4ed0c1fa28b20a90a2fe106b4f6f23f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 11652,
            "upload_time": "2024-03-15T09:36:35",
            "upload_time_iso_8601": "2024-03-15T09:36:35.297994Z",
            "url": "https://files.pythonhosted.org/packages/c2/db/dd0fdaaa72265da3731656bd8a654f72d070010ae4c555f265285dd1d0ed/FakesUsers-3.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 09:36:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fakesusers"
}
        
Elapsed time: 0.23206s