Name | fakexy JSON |
Version |
0.0.1
JSON |
| download |
home_page | None |
Summary | A simple scraper for fakexy.com |
upload_time | 2025-07-22 05:22:24 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | GPLv3 |
keywords |
fake-data
scraper
api
fakexy
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# fakexy
Tool for getting results from fakexy.com
# Usage
```bash
fakexy <URL> <COUNT>
```
outputs json in each line.
fakexy has aggressive cloudflare protection so browser might be necessary to solve captchas. You can then use `--browser` option to get cookies from browser or pass them directly with `--header`. You can also use `--wait` to wait in between requests, although cloudflare seems to trigger only after time of inactivity.
```bash
fakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 10 --browser firefox --wait 0.8
fakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 10 -w 0.2 -H 'Cookie: cf_clearance=LybymVQ3ndsXXwa8Q7fkMWvIEfdr6vzkuZnXVmOnhSI-1753001875-1.2.1.1-8Q.LhRHXQV4EhrUx6j3BvZ7B8AIMjJ2EpdwcNcNToLnOTIVIoaJ1aaKkI4c4Q91.88xR0cyndUbGTuJb2XpjQnBegVi0dekwpfIeo5GbN8PKUzpCvDc9z57yaupYVegaiYVPUn7ONOue5d.ZemaHTR73xGUZYQdRyg3pzGX_pE8_6KfB_XjhAI4vIOClihjXn33bS4dDsE_.Pyd2Kwsb7Pfa3EvAR3Ulw1SZDAqBsfFwQF6NXX7WxwhkqyPPXKoT' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0'
```
The tool supports all generators on site as long as they are passed by url.
```bash
fakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 1
```
```json
{
"street": "Forest Rd",
"city": "Loughborough",
"region": "Leicestershire",
"zipcode": "LE11 3HU",
"phone": "01509 214624",
"country": "United Kingdom",
"latitude": "52.762695",
"longitude": "-1.221896",
"person": {
"name": "Isabella Martin",
"gender": "female",
"birthday": "1993-01-31",
"ssn": "ZZ 06 48 57 T"
},
"creditcard": {
"brand": "Mastercard",
"number": "5578297755756643",
"expire": "2028/2",
"cvv": "520"
}
}
```
```bash
fakexy 'https://www.fakexy.com/random-animal-generator' 1
```
```json
{
"name": "Beaver",
"image": "https://www.fakexy.com/random-animal-generator"
}
```
```bash
fakexy 'https://www.fakexy.com/us-fake-name-generator-mi' 1
```
```json
{
"name": "Dr. Georgiana Berge",
"gender": "female",
"birthday": "1991-09-01",
"ssn": "377-37-6204",
"address": {
"street": "5388 Lapeer Rd",
"city": "Kimball",
"region": "Michigan",
"zipcode": "48074",
"phone": "(810) 987-6390",
"country": "United States",
"latitude": "42.98765",
"longitude": "-82.539308"
},
"creditcard": {
"brand": "Mastercard",
"number": "5421293142231977",
"expire": "2028/1",
"cvv": "361"
}
}
```
```bash
fakexy 'https://www.fakexy.com/fake-creditcard-generator-visa' 1
```
```json
{
"brand": "Visa",
"number": "4485995438410356",
"expire": "2030/6",
"cvv": "660"
}
```
```bash
fakexy 'https://www.fakexy.com/fake-zipcode-generator-us' 1
```
```json
{
"zipcode": "74136",
"abbrev": "OK",
"city": "Tulsa"
}
```
```bash
fakexy 'https://www.fakexy.com/fake-phonenumber-generator-us' 1
```
```json
{
"phone": "(512) 339-9922",
"abbrev": "TX",
"city": "Austin"
}
```
Raw data
{
"_id": null,
"home_page": null,
"name": "fakexy",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "fake-data, scraper, api, fakexy",
"author": null,
"author_email": "Dominik Stanis\u0142aw Suchora <hexderm@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/11/50/be4b52c6b0c40d039e90bd08f5544d4f5bcda3078d6270631e4bbc53bb2d/fakexy-0.0.1.tar.gz",
"platform": null,
"description": "# fakexy\n\nTool for getting results from fakexy.com\n\n# Usage\n\n```bash\nfakexy <URL> <COUNT>\n```\n\noutputs json in each line.\n\nfakexy has aggressive cloudflare protection so browser might be necessary to solve captchas. You can then use `--browser` option to get cookies from browser or pass them directly with `--header`. You can also use `--wait` to wait in between requests, although cloudflare seems to trigger only after time of inactivity.\n\n```bash\nfakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 10 --browser firefox --wait 0.8\n\nfakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 10 -w 0.2 -H 'Cookie: cf_clearance=LybymVQ3ndsXXwa8Q7fkMWvIEfdr6vzkuZnXVmOnhSI-1753001875-1.2.1.1-8Q.LhRHXQV4EhrUx6j3BvZ7B8AIMjJ2EpdwcNcNToLnOTIVIoaJ1aaKkI4c4Q91.88xR0cyndUbGTuJb2XpjQnBegVi0dekwpfIeo5GbN8PKUzpCvDc9z57yaupYVegaiYVPUn7ONOue5d.ZemaHTR73xGUZYQdRyg3pzGX_pE8_6KfB_XjhAI4vIOClihjXn33bS4dDsE_.Pyd2Kwsb7Pfa3EvAR3Ulw1SZDAqBsfFwQF6NXX7WxwhkqyPPXKoT' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0'\n```\n\nThe tool supports all generators on site as long as they are passed by url.\n\n```bash\nfakexy 'https://www.fakexy.com/uk-fake-address-generator-south-humberside' 1\n```\n\n```json\n{\n \"street\": \"Forest Rd\",\n \"city\": \"Loughborough\",\n \"region\": \"Leicestershire\",\n \"zipcode\": \"LE11 3HU\",\n \"phone\": \"01509 214624\",\n \"country\": \"United Kingdom\",\n \"latitude\": \"52.762695\",\n \"longitude\": \"-1.221896\",\n \"person\": {\n \"name\": \"Isabella Martin\",\n \"gender\": \"female\",\n \"birthday\": \"1993-01-31\",\n \"ssn\": \"ZZ 06 48 57 T\"\n },\n \"creditcard\": {\n \"brand\": \"Mastercard\",\n \"number\": \"5578297755756643\",\n \"expire\": \"2028/2\",\n \"cvv\": \"520\"\n }\n}\n```\n\n```bash\nfakexy 'https://www.fakexy.com/random-animal-generator' 1\n```\n\n```json\n{\n \"name\": \"Beaver\",\n \"image\": \"https://www.fakexy.com/random-animal-generator\"\n}\n```\n\n```bash\nfakexy 'https://www.fakexy.com/us-fake-name-generator-mi' 1\n```\n\n```json\n{\n \"name\": \"Dr. Georgiana Berge\",\n \"gender\": \"female\",\n \"birthday\": \"1991-09-01\",\n \"ssn\": \"377-37-6204\",\n \"address\": {\n \"street\": \"5388 Lapeer Rd\",\n \"city\": \"Kimball\",\n \"region\": \"Michigan\",\n \"zipcode\": \"48074\",\n \"phone\": \"(810) 987-6390\",\n \"country\": \"United States\",\n \"latitude\": \"42.98765\",\n \"longitude\": \"-82.539308\"\n },\n \"creditcard\": {\n \"brand\": \"Mastercard\",\n \"number\": \"5421293142231977\",\n \"expire\": \"2028/1\",\n \"cvv\": \"361\"\n }\n}\n```\n\n```bash\nfakexy 'https://www.fakexy.com/fake-creditcard-generator-visa' 1\n```\n\n```json\n{\n \"brand\": \"Visa\",\n \"number\": \"4485995438410356\",\n \"expire\": \"2030/6\",\n \"cvv\": \"660\"\n}\n```\n\n```bash\nfakexy 'https://www.fakexy.com/fake-zipcode-generator-us' 1\n```\n\n```json\n{\n \"zipcode\": \"74136\",\n \"abbrev\": \"OK\",\n \"city\": \"Tulsa\"\n}\n```\n\n```bash\nfakexy 'https://www.fakexy.com/fake-phonenumber-generator-us' 1\n```\n\n```json\n{\n \"phone\": \"(512) 339-9922\",\n \"abbrev\": \"TX\",\n \"city\": \"Austin\"\n}\n```\n",
"bugtrack_url": null,
"license": "GPLv3",
"summary": "A simple scraper for fakexy.com",
"version": "0.0.1",
"project_urls": {
"Homepage": "https://github.com/TUVIMEN/fakexy"
},
"split_keywords": [
"fake-data",
" scraper",
" api",
" fakexy"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "22b0f2debe9f0385aef6dec50e2b1d7887db210b0b188a38a81fe2f5ed11cbcc",
"md5": "1c03adaba4e4766d63592faecc0f900d",
"sha256": "542e5887c933f82f0f06b15b7f1ca202be3b6dd060a701649b64a215ed6b2467"
},
"downloads": -1,
"filename": "fakexy-0.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1c03adaba4e4766d63592faecc0f900d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18280,
"upload_time": "2025-07-22T05:22:23",
"upload_time_iso_8601": "2025-07-22T05:22:23.511274Z",
"url": "https://files.pythonhosted.org/packages/22/b0/f2debe9f0385aef6dec50e2b1d7887db210b0b188a38a81fe2f5ed11cbcc/fakexy-0.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1150be4b52c6b0c40d039e90bd08f5544d4f5bcda3078d6270631e4bbc53bb2d",
"md5": "9039882cb0f305a9edd51a1a8a40e451",
"sha256": "edde2f34d4a5283ed9ad3e84f2c83467d5d446d0982884193efb579add2f1fc1"
},
"downloads": -1,
"filename": "fakexy-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "9039882cb0f305a9edd51a1a8a40e451",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 17501,
"upload_time": "2025-07-22T05:22:24",
"upload_time_iso_8601": "2025-07-22T05:22:24.718287Z",
"url": "https://files.pythonhosted.org/packages/11/50/be4b52c6b0c40d039e90bd08f5544d4f5bcda3078d6270631e4bbc53bb2d/fakexy-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 05:22:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "TUVIMEN",
"github_project": "fakexy",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "fakexy"
}