Python client for the Diffbot Knowledge Graph API.
pip install diffbot-kg
from diffbot_kg import DiffbotSearchClient, DiffbotEnhanceClient
search_client = DiffbotSearchClient('your_api_key')
enhance_client = DiffbotEnhanceClient('your_api_key')
# Search for entities
search_results = search_client.search({query='type:Organization name:Diffbot'})
# Enhance an entity
enhanced_entity = enhance_client.enhance({query='type:Organization name:Diffbot'})
Contributions to this project are welcome. - see the CONTRIBUTING.md file for details.
This project is licensed under the MIT License - see the LICENSE file for details.