cold-outreach-pro 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: cold-outreach-pro
3
+ Version: 1.0.0
4
+ Summary: AI-powered cold outreach toolkit with templates and generators
5
+ Home-page: https://github.com/meridian_mind/cold-outreach-pro
6
+ Author: Meridian Mind
7
+ Author-email: contact@meridianmind.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # Cold Outreach Pro
23
+
24
+ AI-powered cold outreach toolkit with templates and generators.
25
+
26
+ Generate personalized cold emails instantly with professional templates for:
27
+
28
+ - Cold email campaigns
29
+ - Warm follow-ups
30
+ - LinkedIn outreach
31
+ - Industry-specific cold emails
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ pip install cold-outreach-pro
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```bash
42
+ cold-outreach-pro cold_email --company=Acme --name=John --industry=SaaS
43
+ ```
44
+
45
+ ## Available Templates
46
+
47
+ - cold_email: Professional cold email
48
+ - warm_reachout: Warm reach-out message
49
+ - cold_linkedin: Cold LinkedIn message
50
+ - follow_up: Follow-up message
51
+ - industry_specific: Industry-specific templates
52
+
53
+ ## License
54
+
55
+ MIT
@@ -0,0 +1,34 @@
1
+ # Cold Outreach Pro
2
+
3
+ AI-powered cold outreach toolkit with templates and generators.
4
+
5
+ Generate personalized cold emails instantly with professional templates for:
6
+
7
+ - Cold email campaigns
8
+ - Warm follow-ups
9
+ - LinkedIn outreach
10
+ - Industry-specific cold emails
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pip install cold-outreach-pro
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ```bash
21
+ cold-outreach-pro cold_email --company=Acme --name=John --industry=SaaS
22
+ ```
23
+
24
+ ## Available Templates
25
+
26
+ - cold_email: Professional cold email
27
+ - warm_reachout: Warm reach-out message
28
+ - cold_linkedin: Cold LinkedIn message
29
+ - follow_up: Follow-up message
30
+ - industry_specific: Industry-specific templates
31
+
32
+ ## License
33
+
34
+ MIT
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="cold-outreach-pro",
5
+ version="1.0.0",
6
+ author="Meridian Mind",
7
+ author_email="contact@meridianmind.com",
8
+ description="AI-powered cold outreach toolkit with templates and generators",
9
+ long_description=open("README.md").read(),
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/meridian_mind/cold-outreach-pro",
12
+ package_dir={"": "src"},
13
+ packages=find_packages(where="src"),
14
+ python_requires=">=3.8",
15
+ classifiers=[
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ],
20
+ entry_points={
21
+ "console_scripts": [
22
+ "cold-outreach-pro=cold_outreach_pro.__main__:main",
23
+ ],
24
+ },
25
+ )
@@ -0,0 +1,3 @@
1
+ """Cold Outreach Pro - AI-powered cold outreach toolkit."""
2
+ __version__ = "1.0.0"
3
+ __all__ = ["generator", "templates"]
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env python3
2
+ """CLI entry point for cold-outreach-pro - generate cold outreach emails."""
3
+
4
+ import json
5
+ import sys
6
+
7
+ def main():
8
+ """Parse args and generate cold emails."""
9
+ from cold_outreach_pro.generator import generate, list_templates
10
+
11
+ if len(sys.argv) < 2:
12
+ print("Usage: cold-outreach-pro [template] --field value ...")
13
+ print(f"Available templates: {list_templates()}")
14
+ return
15
+
16
+ template = sys.argv[1]
17
+
18
+ # Parse --key value pairs
19
+ kwargs = {}
20
+ args = sys.argv[2:]
21
+
22
+ i = 0
23
+ while i < len(args):
24
+ if args[i].startswith("--"):
25
+ key = args[i][2:]
26
+ if i + 1 < len(args) and not args[i + 1].startswith("--"):
27
+ kwargs[key] = args[i + 1]
28
+ i += 2
29
+ else:
30
+ kwargs[key] = "true"
31
+ i += 1
32
+ else:
33
+ i += 1
34
+
35
+ try:
36
+ result = generate(template, **kwargs)
37
+ print(json.dumps(result, indent=2))
38
+ except Exception as e:
39
+ print(f"Error: {e}", file=sys.stderr)
40
+ sys.exit(1)
41
+
42
+ if __name__ == "__main__":
43
+ main()
@@ -0,0 +1,46 @@
1
+ """Cold outreach email generator - create personalized cold emails instantly."""
2
+
3
+ from cold_outreach_pro.templates import TEMPLATES
4
+ import json
5
+
6
+ def generate(template_name: str, **kwargs) -> dict:
7
+ """Generate a cold email using the specified template.
8
+
9
+ Args:
10
+ template_name: Key from TEMPLATES dict
11
+ **kwargs: Template variables (e.g., company, name, industry)
12
+
13
+ Returns:
14
+ dict with 'subject' and 'body' keys
15
+ """
16
+ template = TEMPLATES.get(template_name)
17
+ if not template:
18
+ raise ValueError(f"Unknown template: {template_name}. Available: {list(TEMPLATES.keys())}")
19
+
20
+ def fill(text):
21
+ for k, v in kwargs.items():
22
+ text = text.replace("{{" + k + "}}", str(v))
23
+ return text
24
+
25
+ result = {
26
+ "subject": fill(template.get("subject", "")),
27
+ "body": fill(template.get("body", ""))
28
+ }
29
+ return result
30
+
31
+ def list_templates() -> list:
32
+ """List all available templates."""
33
+ return list(TEMPLATES.keys())
34
+
35
+ if __name__ == "__main__":
36
+ # Demo usage
37
+ email = generate("cold_email",
38
+ company="Acme Corp",
39
+ name="John",
40
+ industry="SaaS",
41
+ metric="lead generation",
42
+ result="300%",
43
+ method="AI automation",
44
+ sender="Jane"
45
+ )
46
+ print(json.dumps(email, indent=2))
@@ -0,0 +1,62 @@
1
+ """Template library for cold outreach campaigns."""
2
+
3
+ TEMPLATES = {
4
+ "cold_email": {
5
+ "subject": "Quick question about {{company}}",
6
+ "body": """Hi {{name}},
7
+
8
+ I noticed {{company}} is doing interesting work in {{industry}}.
9
+
10
+ I help companies like {{company}} increase {{metric}} by {{result}} using {{method}}.
11
+
12
+ Would you be open to a 15-minute call to explore if this could work for {{company}}?
13
+
14
+ Best,
15
+ {{sender}}"""
16
+ },
17
+ "warm_reachout": {
18
+ "subject": "Loved your post about {{topic}}",
19
+ "body": """Hi {{name}},
20
+
21
+ Great post about {{topic}}. I've been exploring similar challenges in {{industry}} and found that {{insight}}.
22
+
23
+ Would love to connect and share more about how we helped {{similar_company}} achieve {{outcome}}.
24
+
25
+ {{sender}}"""
26
+ },
27
+ "cold_linkedin": {
28
+ "body": """Hi {{name}},
29
+
30
+ I saw your post about {{topic}} and wanted to share something relevant.
31
+
32
+ We've helped {{company_type}} in {{industry}} boost {{metric}} by {{result}}.
33
+
34
+ Would be happy to share more if you're interested.
35
+
36
+ {{sender}}"""
37
+ },
38
+ "follow_up": {
39
+ "subject": "Following up on my previous message",
40
+ "body": """Hi {{name}},
41
+
42
+ Wanted to follow up on my last note about {{topic}}.
43
+
44
+ I know you're busy, so here's the quick pitch: we help {{company}} do {{action}}.
45
+
46
+ Would a quick call work for you this week?
47
+
48
+ {{sender}}"""
49
+ },
50
+ "industry_specific": {
51
+ "subject": "For {{company}} - {{industry}} cold email templates",
52
+ "body": """Hi {{name}},
53
+
54
+ {{company}} is in {{industry}} — I see you're focused on {{focus}}.
55
+
56
+ We've helped similar companies increase {{metric}} by {{result}}.
57
+
58
+ Want to see how?
59
+
60
+ {{sender}}"""
61
+ }
62
+ }
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: cold-outreach-pro
3
+ Version: 1.0.0
4
+ Summary: AI-powered cold outreach toolkit with templates and generators
5
+ Home-page: https://github.com/meridian_mind/cold-outreach-pro
6
+ Author: Meridian Mind
7
+ Author-email: contact@meridianmind.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # Cold Outreach Pro
23
+
24
+ AI-powered cold outreach toolkit with templates and generators.
25
+
26
+ Generate personalized cold emails instantly with professional templates for:
27
+
28
+ - Cold email campaigns
29
+ - Warm follow-ups
30
+ - LinkedIn outreach
31
+ - Industry-specific cold emails
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ pip install cold-outreach-pro
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```bash
42
+ cold-outreach-pro cold_email --company=Acme --name=John --industry=SaaS
43
+ ```
44
+
45
+ ## Available Templates
46
+
47
+ - cold_email: Professional cold email
48
+ - warm_reachout: Warm reach-out message
49
+ - cold_linkedin: Cold LinkedIn message
50
+ - follow_up: Follow-up message
51
+ - industry_specific: Industry-specific templates
52
+
53
+ ## License
54
+
55
+ MIT
@@ -0,0 +1,11 @@
1
+ README.md
2
+ setup.py
3
+ src/cold_outreach_pro/__init__.py
4
+ src/cold_outreach_pro/__main__.py
5
+ src/cold_outreach_pro/generator.py
6
+ src/cold_outreach_pro/templates.py
7
+ src/cold_outreach_pro.egg-info/PKG-INFO
8
+ src/cold_outreach_pro.egg-info/SOURCES.txt
9
+ src/cold_outreach_pro.egg-info/dependency_links.txt
10
+ src/cold_outreach_pro.egg-info/entry_points.txt
11
+ src/cold_outreach_pro.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cold-outreach-pro = cold_outreach_pro.__main__:main
@@ -0,0 +1 @@
1
+ cold_outreach_pro