partnershipparser extracts and structures key info from tech partnership news for easy analysis of companies, focus areas, and impacts
Project description
PartnershipParser
PartnershipParser is a Python package designed to extract and structure key information from news articles or press releases about strategic partnerships in the technology sector. It processes unstructured text inputs to produce a standardized output that includes the collaborating companies, the focus area of their collaboration, and the potential impact or goals mentioned. This facilitates quick analysis and comparison of multiple partnership announcements, helping business analysts, investors, and researchers identify industry trends, competitive advantages, and market opportunities.
Features
- Extracts key partnership details from free-text sources
- Outputs structured, consistent data for easier downstream analysis
- Utilizes advanced language models with flexible options
- Easy to integrate into larger data processing pipelines
Installation
Install PartnershipParser via pip:
pip install partnershipparser
Usage
Below is an example of how to use the package in your Python code:
from partnershipparser import partnershipparser
user_input = "Apple and Google announced a collaboration to develop sustainable AI chips."
response = partnershipparser(user_input)
print(response)
Parameters:
user_input(str): The text content of the article or press release to analyze.llm(Optional[BaseChatModel]): An instance of a language model to use for processing. Defaults toChatLLM7fromlangchain_llm7.api_key(Optional[str]): API key forChatLLM7. If not provided, it will attempt to read from environment variableLLM7_API_KEY. You can also pass it directly.
Supported Language Models
The package defaults to ChatLLM7 from langchain_llm7 ( https://pypi.org/project/langchain-llm7/ ). Users can pass custom language model instances such as:
from langchain_openai import ChatOpenAI
from partnershipparser import partnershipparser
llm = ChatOpenAI()
response = partnershipparser(user_input, llm=llm)
You can also use other supported models by importing and instantiating them similarly, such as ChatAnthropic, ChatGoogleGenerativeAI, etc. Refer to their respective documentation for setup.
Rate Limits and API Keys
The default rate limits for LLM7's free tier are suitable for most uses of this package. To obtain higher limits, you can:
- Set
LLM7_API_KEYenvironment variable - Pass your API key directly in
partnershipparser():
response = partnershipparser(user_input, api_key="your_api_key")
Register for a free API key at https://token.llm7.io/
Contributing
Contributions are welcome! Please open issues or pull requests on our GitHub repository.
License
This project is licensed under the MIT License.
Contact
Author: Eugene Evstafev
Email: hi@euegne.plus
GitHub: chigwell
Issues: https://github.com/yourrepo/partnershipparser/issues
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 partnershipparser-2025.12.21231803.tar.gz.
File metadata
- Download URL: partnershipparser-2025.12.21231803.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5094a30e26e8b1e26de4e51ca9f67e92b24ae177f1148be0ea55057d0ce9acef
|
|
| MD5 |
4cc34f21a64cb17003f0198dce83631f
|
|
| BLAKE2b-256 |
f429c2afac0be81ddf8bdddd7ad42a6dfaec0a41c45e42b21d800678e4df9e26
|
File details
Details for the file partnershipparser-2025.12.21231803-py3-none-any.whl.
File metadata
- Download URL: partnershipparser-2025.12.21231803-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a205953064ad2315e6733a59cf1f12f0c6cbb0f38c8f7efc9490cb7beed4946
|
|
| MD5 |
d08eeb466f9324a202a7b12de28f0530
|
|
| BLAKE2b-256 |
3f73f28e08a3355cf57bffb8451d35bebb61ef5931d6ae961ac12803ca16995e
|