Skip to main content

A package for character sets

Project description

CHARS

chars is a simple Python package that provides functions to get different sets of characters including uppercase letters, lowercase letters, numbers, and special characters.

Features

  • Retrieve uppercase letters
  • Retrieve lowercase letters
  • Retrieve numbers
  • Retrieve special characters
  • Retrieve a combination of all character sets

Installation

You can install the package using pip3:

pip3 install chars

Usage

Importing the Package

To use the functions provided by the package, you first need to import the chars module:

from mypackage import chars

Retrieving Uppercase Letters

You can retrieve all uppercase letters using the uppercase function:

uppercase_chars = chars.uppercase()
print(uppercase_chars)
# Output: ABCDEFGHIJKLMNOPQRSTUVWXYZ

Retrieving Lowercase Letters

To get all lowercase letters, use the lowercase function:

lowercase_chars = chars.lowercase()
print(lowercase_chars)
# Output: abcdefghijklmnopqrstuvwxyz

Retrieving Numbers

If you need all numeric characters, use the numbers function:

numbers = chars.numbers()
print(numbers)
# Output: 1234567890

Retrieving Special Characters

For special characters, use the specialchars function:

special_chars = chars.specialchars()
print(special_chars)
# Output: ~`!@#$%^&*()-_=+|[]\{|};':",./<> ?

Retrieving All Characters

To get a combination of uppercase letters, lowercase letters, numbers, and special characters, use the all function:

all_chars = chars.all()
print(all_chars)
# Output: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~`!@#$%^&*()-_=+|[]\{|};':",./<>? 1234567890

You can install the package using pip3:

pip3 install chars

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chars-0.1.2.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

chars-0.1.2-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page