Skip to main content

Python package for playing with strings

Project description

string-decorator

Python Module to have fun with strings. The module also makes use of python decorators
PyPI version Downloads Downloads License: MIT

Usage

Example 1 -> Calculating expression from given string

from string_decorator import calculate
print(calculate("(123+23) * 23 / 32"))

Output

104.9375

Example 2 -> Validating text based on given conditions

from string_decorator import validate_text
print(validate_text("imEternity1234@strings", length = 13, uppercase = 1, lowercase = 5, numbers = 4, special_characters=1))

Output

True

Example 3 -> Converting the string to random cases

from string_decorator import randcase
print(randcase("hello"))

Output

hELlO

Example 4 -> Extracting numbers from the given string

from string_decorator import num_extract
print(num_extract("hello123 23,211 42.23 -134 g00d"))

Output

['123', '23,211', '42.23', '-134', '00']

Example 5 -> Changing string to CONSTANT_CASE

from string_decorator import constantcase
print(constantcase("hello there"))

Output

HELLO_THERE

Using String Decorators

Example 1 -> Calculating Expression From String

from string_decorator.decorators import calculate
@calculate
def calc():
  print("The answer is:", end = " ")

print(calc("843 + sin(32)"))

Output

The answer is: 843.5514266812417

Example 2 -> Validating text based on given conditions

@validate_text
def validate():
    return

print(validate("imEternity1234@strings", length = 13, uppercase = 1, lowercase = 5, numbers = 4, special_characters=1))

Output

True

Documentation

text is a common parameter for all the functions

Name Description
randcase Changes the given text to random cases (upper or lower)
snakecase Changes the given text to snake_case
constantcase Changes the given text to CONSTANT_CASE
kebabcase Changes the given text to kebab-case
headercase Changes the given text to PascalCase
camelcase Changes the given text to camelCase
dotcase Changes the given text to dot.case
pathcase Changes the given text to path/case
swapcase Changes each upper characters to lower and vice versa
scramble_sentence Returns the sentence in random order Eg: 'Hello my friend' might change to 'my friend Hello'
sentence_reverse Reverses given sentence Eg: 'Hello world' changes to 'world Hello'
random_string Generates a random string comprising of lower cased or upper cased characters, numbers, symbols
str_encode Encodes the given text into bytes format
bytes_decode Decodes bytes back to string
num_extract Extracts numbers from the given strings
parameters:
- string: Set it to True to return numbers in a list of strings
validate_email Validates the text to check if the email format is correct
validate_text Validates the text to check if it is right according to the conditions specified
parameters:
- length: The minimum length of the text
- uppercase: The minimum number of uppercase letters in the text. Set to 'all' if all letters have to be in uppercase.
- lowercase: The minimum number of lowercase letters in the text. Set to 'all' if all letters have to be in lowercase.
- numbers: The minimum number of numbers (positive integers) in the text. Set to 'all' if all are numbers.
- special_characters: The minimum number of special characters in the text. Set to 'all' if all are special characters.
calculate Evaluates the given string
Eg: "5+2" gives 7

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

string_decorator-1.0.0.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

string_decorator-1.0.0-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file string_decorator-1.0.0.tar.gz.

File metadata

  • Download URL: string_decorator-1.0.0.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for string_decorator-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7e5d637431fb008b44f88d81706dc80a90931111969067373505a5338945457d
MD5 fc290b13b22804d550114345b3484f9a
BLAKE2b-256 125c4d654a1400c2a7ee67f340aefd198f6aa9bc7396fea28d85fde7d593915a

See more details on using hashes here.

File details

Details for the file string_decorator-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for string_decorator-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 76a4751735b0133ccaa31922d7f300278d167e9364386beb5fc704b70381b0b2
MD5 87e66e2518dd60c12afefdddd9fbb082
BLAKE2b-256 a26e828e11c6c0ccbf8cfcdc7217d6a7bf7fca5be81017782bf0b35a0b58581a

See more details on using hashes here.

Supported by

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