Skip to content

Toolsed is a lightweight Python library that provides simple, reusable, and practical utility functions for everyday programming tasks. It’s designed to reduce boilerplate code and make common operations more readable and expressive. No magic. No bloat. Just useful tools you'd write yourself — but already tested, documented, and ready to use

License

Notifications You must be signed in to change notification settings

Frokich/Toolsed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

toolsed — Simple, Practical Utilities for Python

toolsed is a lightweight library that provides practical, reusable functions for everyday Python programming. It eliminates common boilerplate and makes code more readable.

No magic. No dependencies. Just useful tools you'd write yourself — but already tested and ready to use.


🚀 Why toolsed?

You've probably written these helpers dozens of times:

  • Get the first item from a list (or return None)
  • Safely access nested dicts
  • Flatten a list of lists
  • Truncate long strings
  • Handle optional values gracefully

toolsed collects them into one clean, reliable package.


📦 Installation

pip install toolsed

Or install locally for development:

pip install -e .

🧩 Quick Example

from toolsed import Functions

# init
ft = Functions()

ft.first([1, 2, 3])    # → 1
ft.last([1, 2, 3])     # → 3

📚 Full Documentation

See detailed docs for each module:


🛠️ Development

To contribute:

git clone https://github.com/your-username/toolsed
cd toolsed
pip install -e .
pytest

📄 License

MIT


---

About

Toolsed is a lightweight Python library that provides simple, reusable, and practical utility functions for everyday programming tasks. It’s designed to reduce boilerplate code and make common operations more readable and expressive. No magic. No bloat. Just useful tools you'd write yourself — but already tested, documented, and ready to use

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages