Metadata-Version: 2.4
Name: soandso
Version: 1.0.0
Summary: A collection of delightfully arbitrary utilities
Author-email: Kohan Mathers <mathers.kohan@gmail.com>
License: MIT
Keywords: utilities,tools,fun,arbitrary
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# soandso

A delightfully arbitrary collection of Python utilities that do things, other things, and something else entirely.

## Installation
```bash
pip install soandso
```

## Usage
```python
from soandso import do_a_thing, do_another_thing, do_something_else
from soandso import make_it_fancy, count_stuff, generate_nonsense

# Do a thing
result = do_a_thing("laundry")
print(result)  # "Successfully did laundry! ✨"

# Do another thing with intensity
result = do_another_thing(8)
print(result)  # {'thing_done': True, 'intensity_level': 8, ...}

# Do something else with a list
items = ["apple", "banana", "cherry"]
result = do_something_else(items)
print(result)  # ["🎭 apple (processed)", ...]

# Make text fancy
fancy = make_it_fancy("hello world", "sparkles")
print(fancy)  # "✨ ⭐ HELLO WORLD ⭐ ✨"

# Count stuff
counts = count_stuff("hello world")
print(counts)  # {'total': 11, 'without_spaces': 10, ...}

# Generate nonsense
nonsense = generate_nonsense(5)
print(nonsense)  # "flibber jabberwocky snurfle blimp woosh"
```

