Metadata-Version: 2.4
Name: langchain-asimov
Version: 0.0.2
Summary: LangChain integration with the ASIMOV platform.
Project-URL: Homepage, https://github.com/asimov-platform
Project-URL: Repository, https://github.com/asimov-platform/langchain-asimov
Project-URL: Changelog, https://github.com/asimov-platform/langchain-asimov/blob/master/CHANGES.md
Project-URL: Releases, https://github.com/asimov-platform/langchain-asimov/releases
Project-URL: Issues, https://github.com/asimov-platform/langchain-asimov/issues
Author-email: ASIMOV Protocol <support@asimov.so>
License-Expression: Unlicense
License-File: UNLICENSE
Requires-Python: >=3.9
Requires-Dist: langchain-core>=0.3
Requires-Dist: pyld>=2
Description-Content-Type: text/markdown

# langchain-asimov

[![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
[![Compatibility](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fasimov-platform%2Flangchain-asimov%2Frefs%2Fheads%2Fmaster%2Fpyproject.toml)](https://pypi.python.org/pypi/langchain-asimov)
[![Package](https://img.shields.io/pypi/v/langchain-asimov.svg)](https://pypi.python.org/pypi/langchain-asimov)
[![Documentation](https://img.shields.io/readthedocs/langchain-asimov.svg)](https://langchain-asimov.readthedocs.io)

## 👉 Examples

### Fetching DuckDuckGo Results

```bash
export SERPAPI_KEY="..."
```

```python
from langchain_asimov import AsimovLoader

search = AsimovLoader(
    module="serpapi",
    url="https://duckduckgo.com/?q=Isaac+Asimov"
)

for result in search.lazy_load():
    print(result)
```
