A simple nickname generator for Roblox
Project description
BloxNickGenerator
Introduction
BloxNickGenerator is a Python package that allows you to generate available usernames for Roblox. It checks the availability of usernames and ensures that the generated usernames do not contain profanity.
Features
- Generate a specified number of usernames.
- Check for profanity using an external API.
- Verify if usernames are already taken on Roblox.
- Customize generated usernames with optional prefixes, suffixes, and length constraints.
Usage
You can generate nicknames with various customization options. Here are some examples:
Basic Usage
Generate a specified number of nicknames:
from bloxnickgenerator.generator import genNicknames
generated_nicks = genNicknames(3) # Generate 3 nicknames
print("Generated Nicknames:", generated_nicks)
Using Prefixes and Suffixes
You can add prefixes and suffixes to the generated nicknames:
generated_nicks = genNicknames(3, prefix='Cool_', suffix='_2024') # Generate nicknames with a prefix and suffix
print("Generated Nicknames:", generated_nicks)
Length Constraints
Set minimum and maximum lengths for the nicknames:
generated_nicks = genNicknames(3, min_length=5, max_length=16) # Generate nicknames within specific length constraints
print("Generated Nicknames:", generated_nicks)
Example
nicks = genNicknames(3, prefix='Xx_', suffix='_Xx', min_length=5, max_length=16)
print("Generated Nicknames:", nicks)
# Result: Xx_examplee_xX
- Note: Depending on the number of nicknames you want to generate, it may take a while.
Installation
You can install BloxNickGenerator using pip:
pip install bloxnickgenerator
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bloxnickgenerator-0.1.2.tar.gz.
File metadata
- Download URL: bloxnickgenerator-0.1.2.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c169e0fe367efaa4738d11b38bd23302dfb9008b23d88daaf39ccdfac959291a
|
|
| MD5 |
8e54f0b464baa217882a3d6fde311436
|
|
| BLAKE2b-256 |
ae6fafd5ec9e83a721170b42c1061152545e56e641be782a4d469bb2e0b41cac
|
File details
Details for the file bloxnickgenerator-0.1.2-py3-none-any.whl.
File metadata
- Download URL: bloxnickgenerator-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa84bc89c6834d6362b35afcc3eb7a1e82d9937fa2a0f86ae4c30232480ad853
|
|
| MD5 |
df23af05c783003861f8ea34b6e23455
|
|
| BLAKE2b-256 |
30dc7b7d25e9df6134dfdb0e9d362f3f75bed6ece262630eedbd89abae13a5c6
|