A new package that transforms free‑form software release announcements into a concise, machine‑readable summary. By feeding the raw textual description of a release (e.g., “GDB 17.1 Released with shad
Project description
Release Info Extractor
A Python package that transforms free-form software release announcements into a concise, machine-readable summary.
Overview
This package extracts key attributes such as version number, new features, architectural changes, and compatibility notes from raw textual descriptions of software releases. The extracted information is returned in a structured format (e.g., JSON or XML), enabling downstream tools to consume the information reliably without manual parsing.
Installation
pip install release-info-extractor
Usage
Basic Usage
from release_info_extractor import release_info_extractor
response = release_info_extractor("GDB 17.1 Released with shadow and guard stack support")
print(response)
Using a Custom LLM
By default, the package uses ChatLLM7 from langchain_llm7. However, you can pass your own LLM instance if you want to use another LLM.
Using OpenAI
from langchain_openai import ChatOpenAI
from release_info_extractor import release_info_extractor
llm = ChatOpenAI()
response = release_info_extractor("GDB 17.1 Released with shadow and guard stack support", llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from release_info_extractor import release_info_extractor
llm = ChatAnthropic()
response = release_info_extractor("GDB 17.1 Released with shadow and guard stack support", llm=llm)
print(response)
Using Google
from langchain_google_genai import ChatGoogleGenerativeAI
from release_info_extractor import release_info_extractor
llm = ChatGoogleGenerativeAI()
response = release_info_extractor("GDB 17.1 Released with shadow and guard stack support", llm=llm)
print(response)
Using a Custom API Key
The default rate limits for LLM7 free tier are sufficient for most use cases. If you need higher rate limits, you can pass your own API key via an environment variable or directly in the function call.
Using Environment Variable
export LLM7_API_KEY="your_api_key"
Directly in Function Call
from release_info_extractor import release_info_extractor
response = release_info_extractor("GDB 17.1 Released with shadow and guard stack support", api_key="your_api_key")
print(response)
You can get a free API key by registering at LLM7.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
Eugene Evstafev
- Email: hi@eugene.plus
- LinkedIn: Eugene Evstafev
Issues
If you encounter any issues or have suggestions, please open an issue on GitHub.
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 release_info_extractor-2025.12.20173916.tar.gz.
File metadata
- Download URL: release_info_extractor-2025.12.20173916.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cd93164254cbd02cae87d7249f12b352f477721bf1738073fe7d6aee9178419
|
|
| MD5 |
57283f8e8570416b08f384d4a6d901c4
|
|
| BLAKE2b-256 |
ec6b8abd97c47aa835f3278fe98dbe52553ae159297bc08f921a8cd7b506cc39
|
File details
Details for the file release_info_extractor-2025.12.20173916-py3-none-any.whl.
File metadata
- Download URL: release_info_extractor-2025.12.20173916-py3-none-any.whl
- Upload date:
- Size: 5.3 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 |
fde5f4510ebf9909beebaea78bf95657bca1da82252233bd3251210fc0ce21bc
|
|
| MD5 |
8f929cf2a21b6a68763a8466a44ab29d
|
|
| BLAKE2b-256 |
e95469e426daa20b929c9786142753be97b5978ffd393566082ba635930bc4b9
|