{"id":15009372,"url":"https://github.com/bbaovanc/libnamegen","last_synced_at":"2026-02-08T21:04:45.147Z","repository":{"id":114420809,"uuid":"247571047","full_name":"BBaoVanC/libnamegen","owner":"BBaoVanC","description":"Generate silly names such as MrEarmuffsifier742! CLI: https://pypi.org/project/pynamegen/","archived":false,"fork":false,"pushed_at":"2022-01-13T16:38:26.000Z","size":62,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-12T14:45:41.907Z","etag":null,"topics":["name-generation","name-generator","namegenerator","pip","pip3","pypi","pypi-package","pypi-source","python","python-3","python-3-6","python-3-7","python-3-8","python-library","python3","python36","python37","python38"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/libnamegen/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BBaoVanC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-15T23:42:24.000Z","updated_at":"2023-04-14T05:46:28.000Z","dependencies_parsed_at":"2023-03-24T01:46:22.308Z","dependency_job_id":null,"html_url":"https://github.com/BBaoVanC/libnamegen","commit_stats":{"total_commits":34,"total_committers":5,"mean_commits":6.8,"dds":"0.38235294117647056","last_synced_commit":"1ec6a440265b9a9fad30eec1637e675b5e4968b5"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/BBaoVanC/libnamegen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BBaoVanC%2Flibnamegen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BBaoVanC%2Flibnamegen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BBaoVanC%2Flibnamegen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BBaoVanC%2Flibnamegen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BBaoVanC","download_url":"https://codeload.github.com/BBaoVanC/libnamegen/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BBaoVanC%2Flibnamegen/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270359272,"owners_count":24570454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-14T02:00:10.309Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["name-generation","name-generator","namegenerator","pip","pip3","pypi","pypi-package","pypi-source","python","python-3","python-3-6","python-3-7","python-3-8","python-library","python3","python36","python37","python38"],"created_at":"2024-09-24T19:24:46.235Z","updated_at":"2026-02-08T21:04:45.039Z","avatar_url":"https://github.com/BBaoVanC.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libnamegen\n\n[![Build Status](https://drone.bbaovanc.com/api/badges/bbaovanc/libnamegen/status.svg)](https://drone.bbaovanc.com/bbaovanc/libnamegen)\n\n![PyPI](https://img.shields.io/pypi/v/libnamegen)\n![PyPI - License](https://img.shields.io/pypi/l/libnamegen)\n\nPackage containing various name generation methods. Originally on my [NameGenerator](https://github.com/BBaoVanC/NameGenerator) project.\n\n## Features\n\n* Easy to use\n* Imported as module\n* Always tested before release\n* Officially supports latest two versions of Python 3\n\n---\n\n## How to Install\n\nRun the command `pip install libnamegen`. If you want to specify a specific Python version to use for pip, use a command such as `pip3` or `pip3.8`.\n\nlibnamegen requires the package [libprogress](https://pypi.org/project/libprogress/), but it will automatically be installed by pip.\n\n---\n\n## Documentation\n\n### API\n\nGenerate one classic name without debug:\n\n``` python\nfrom libnamegen import classic\n\n# this uses the defaults which are one name, debug disabled, and classic generator\nprint(classic.gen())\n```\n\nGenerate seven classic names with debug:\n\n``` python\nfrom libnamegen import classic\n\nprint(classic.gen(count=7, debug=True))\n# print(classic.gen(7, True))  # also valid\n```\n\nPrompt the user for the amount of names, enable debug, and generate classic names:\n\n``` python\nfrom libnamegen import classic\n\namt = input(\"Amount of names to generate \u003e\u003e \")\ncount = int(amt)\n\nnames = classic.gen(count, true)\nfor name in names:\n  print(name)\n```\n\nGenerate one random name without debug:\n\n``` python\nfrom libnamegen import random\n\nprint(random.gen())\n```\n\nGenerate one name using the random method 15 characters long:\n\n``` python\nfrom libnamegen import random\n\nprint(random.gen(length=15))\n```\n\nYou can also import the entire libnamegen package, which will import all generation methods:\n\n``` python\nimport libnamegen\n\nprint(libnamegen.classic.gen())\n```\n\n---\n\n## License\n\n_libnamegen_ is licensed under the GPLv3 license. For more information, please refer to [`LICENSE`](https://git.bbaovanc.com/bbaovanc/libnamegen/src/branch/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbaovanc%2Flibnamegen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbbaovanc%2Flibnamegen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbaovanc%2Flibnamegen/lists"}