shedEasy Examples

Opinionated wrapper combining black, isort, pyupgrade, autoflake

Getting started with shed

Installation and basic usage of shed.

python
# Install: pip install shed
import shed

# Basic shed usage
print(f"Using shed")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: shed)

shed is a third-party package. Opinionated wrapper combining black, isort, pyupgrade, autoflake. Install with: pip install shed

Common shed operations

Frequently used features of shed.

python
# Install: pip install shed
import shed

# Common shed patterns
print(f"shed version: {shed.__version__}")

These are the most commonly used features of shed in everyday development.

Want to try these examples interactively?

Open Easy Playground