Metadata-Version: 2.4
Name: sheetbase-langchain
Version: 1.0.0
Summary: Simple HTTP client for SheetBase - Use Google Sheets as a database
Home-page: https://github.com/surprise-dev/sheetbase-langchain
Author: Surprise Dev
Author-email: charleslepoittevin34@gmail.com
Keywords: sheetbase google-sheets database http-client langchain ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SheetBase LangChain

🤖 **Simple HTTP client for SheetBase** - Use Google Sheets as a database with Python and AI agents.

## 🚀 Installation

```
pip install sheetbase-langchain
```

## 📖 Quick Start

```
from sheetbase_langchain import SheetBaseClient

# Initialize with your Apps Script URL
client = SheetBaseClient("https://script.google.com/macros/s/YOUR_ID/exec")

# Search for data
results = client.search("Wireless Mouse", limit=10)
print(results)

# Get all data
all_data = client.get_all(limit=100)
print(f"Found {all_data['count']} items")
```

## ✨ Features

- ✅ **No API Key Required** - Works with public Google Sheets URLs
- ✅ **Simple HTTP Interface** - Easy to use Python client
- ✅ **Fuzzy Search** - Smart keyword-based search
- ✅ **Full CRUD** - Create, Read, Update, Delete operations
- ✅ **LangChain Compatible** - Use with AI agents

## 🔗 Related Projects

- [n8n-nodes-sheetbase](https://www.npmjs.com/package/n8n-nodes-sheetbase) - n8n node for workflow automation
- [SheetBase Demo Sheet](https://docs.google.com/spreadsheets/d/1qqVkstHyAWsLXpjs2fJ-mHhLS_rItTrszsXtptKZNks/)

## 📧 Contact

**Author:** Surprise Dev  
**Email:** charleslepoittevin34@gmail.com

## 📄 License

MIT License - Copyright (c) 2025 Surprise Dev
