A new package that transforms raw ISBN data into structured, visualizable formats. Users input a list of ISBNs, and the package returns a well-organized, machine-readable output that can be easily vis
Project description
ISBN-Transformer
ISBN-Transformer is a Python package that transforms raw ISBN data into structured, visualizable formats. It is designed for librarians, book retailers, or anyone managing large book inventories, enabling quick insights and efficient data handling.
Features
- Transforms raw ISBN data into structured, machine-readable output
- Ensures consistent formatting and reliable data extraction
- Supports visualization of book inventory data
- Integrates seamlessly with LangChain's LLM ecosystem
Installation
pip install isbn_transformer
Usage
Basic Usage
from isbn_transformer import isbn_transformer
user_input = "Your raw ISBN data here"
response = isbn_transformer(user_input)
print(response)
Using a Custom LLM
You can use any LLM compatible with LangChain. Here are examples using different LLMs:
Using OpenAI
from langchain_openai import ChatOpenAI
from isbn_transformer import isbn_transformer
llm = ChatOpenAI()
response = isbn_transformer(user_input, llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from isbn_transformer import isbn_transformer
llm = ChatAnthropic()
response = isbn_transformer(user_input, llm=llm)
print(response)
Using Google
from langchain_google_genai import ChatGoogleGenerativeAI
from isbn_transformer import isbn_transformer
llm = ChatGoogleGenerativeAI()
response = isbn_transformer(user_input, llm=llm)
print(response)
Using LLM7 API Key
By default, the package uses the LLM7 API. You can pass your API key via an environment variable or directly in the function call.
Using Environment Variable
import os
from isbn_transformer import isbn_transformer
os.environ["LLM7_API_KEY"] = "your_api_key"
response = isbn_transformer(user_input)
print(response)
Directly Passing API Key
from isbn_transformer import isbn_transformer
response = isbn_transformer(user_input, api_key="your_api_key")
print(response)
Parameters
user_input(str): The user input text to process.llm(Optional[BaseChatModel]): The LangChain LLM instance to use. If not provided, the defaultChatLLM7will be used.api_key(Optional[str]): The API key for LLM7. If not provided, the package will use the default or the one set in the environment variableLLM7_API_KEY.
Rate Limits
The default rate limits for LLM7's free tier are sufficient for most use cases of this package. If you need higher rate limits, you can pass your own API key via the environment variable LLM7_API_KEY or directly in the function call.
Getting an API Key
You can get a free API key by registering at LLM7.
Issues
If you encounter any issues, please report them on the GitHub issues page.
Author
- Eugene Evstafev
- Email: hi@eugene.plus
- GitHub: chigwell
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file isbn_transformer-2025.12.21113324.tar.gz.
File metadata
- Download URL: isbn_transformer-2025.12.21113324.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43dadf98ad428f6b895e24a4a59f1f60998a00c922bb0fefef441bc473d8eeba
|
|
| MD5 |
31673c2c7e20460e9c00ec90d3ea7a46
|
|
| BLAKE2b-256 |
9e9c3dde64c9a2820d531cbaaa3499d60fe75a0484c895b6c8e0667b87c68bed
|
File details
Details for the file isbn_transformer-2025.12.21113324-py3-none-any.whl.
File metadata
- Download URL: isbn_transformer-2025.12.21113324-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efc66d989b538c2c5974e2f2556266370d9af61250328c06f7ba528a2ed06cd7
|
|
| MD5 |
b34e9093fee362557aee563aadb3210d
|
|
| BLAKE2b-256 |
48844febea837884009b08f59d04a04a3f7248ceb5076877261196b2df88cfab
|