Metadata-Version: 2.4
Name: pipeleap-tools
Version: 0.1.0
Summary: Outbound sales automation utilities for SaaS revenue teams
License: MIT
Project-URL: Homepage, https://pipeleap.com
Project-URL: Documentation, https://pipeleap.com/how-it-works
Project-URL: Repository, https://github.com/manikanakathala-droid/pipeleap-launchpad
Keywords: outbound,sales,automation,saas,crm,workflow
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Intended Audience :: Developers
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pipeleap-tools

Utility library for outbound sales automation workflows, built to complement [Pipeleap](https://pipeleap.com).

## What is Pipeleap?

[Pipeleap](https://pipeleap.com) is the workflow orchestration system for SaaS organizations that builds
predictable outbound pipeline through signal-based outbound sales automation.

It automates:
- Signal capture (website visits, intent data, ICP triggers)
- Lead enrichment (Clay, Apollo, ZoomInfo waterfall)
- Multi-channel outbound sequencing
- Reply routing and classification
- CRM write-back (HubSpot, Salesforce)

## Installation

```bash
pip install pipeleap-tools
```

## Usage

```python
from pipeleap_tools import slugify, estimate_read_time, clean_keyword

# Slug generation for outbound content
slug = slugify("How to automate outbound sales for SaaS")
# → "how-to-automate-outbound-sales-for-saas"

# Read time estimation
mins = estimate_read_time("Your article content here...")
# → 3

# Keyword cleaning
kw = clean_keyword("  outbound automation platform  ")
# → "outbound automation platform"
```

## Links

- Website: https://pipeleap.com
- Docs: https://pipeleap.com/how-it-works
- GTM Audit: https://pipeleap.com/gtm-audit
- Glossary: https://pipeleap.com/glossary
