Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 13,501 Bytes
61d29fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | """
DBpedia Integration for Autocomplete and Structured Data
DBpedia extracts structured "triples" from Wikipedia infoboxes.
Every Wikipedia page becomes a "resource" with structured data.
LOOKUP API: http://lookup.dbpedia.org/api/search
REST API: https://dbpedia.org/sparql
KEY ADVANTAGES:
β
Completely FREE - no API key required
β
Perfect for autocomplete/type-ahead - Lookup API is designed for this
β
Structured data from Wikipedia - millions of resources
β
Instant access to Mayor, population, school district info
β
Rich context for search results
USE CASES FOR CIVIC ENGAGEMENT:
- Autocomplete in search box (cities, people, organizations)
- Type-ahead suggestions
- Structured data for entities (mayor, population, etc.)
- Linking Wikipedia pages to structured data
- Enriching search results with context
EXAMPLE QUERIES:
- "Tuscaloosa" β Get Mayor, population, school district
- "School Board" β Find all school boards
- "Alabama cities" β Get all cities in Alabama
- Person name β Get positions, affiliations
API DOCUMENTATION:
- Lookup API: http://lookup.dbpedia.org/api/doc/
- SPARQL: https://dbpedia.org/sparql
- Examples: https://wiki.dbpedia.org/develop/datasets
USAGE:
from discovery.dbpedia_integration import DBpediaLookup
dbpedia = DBpediaLookup()
# Autocomplete search
results = await dbpedia.search("Tuscaloosa", max_results=10)
# Get detailed info about a resource
info = await dbpedia.get_resource_info("Tuscaloosa,_Alabama")
# Search for specific types (cities, people, organizations)
cities = await dbpedia.search_by_type("Alabama", type_filter="Place")
"""
import asyncio
from typing import List, Dict, Optional
from datetime import datetime
from pathlib import Path
import httpx
from loguru import logger
try:
from pyspark.sql import SparkSession
from config.settings import settings
SPARK_AVAILABLE = True
except ImportError:
SPARK_AVAILABLE = False
settings = None
class DBpediaLookup:
"""
Query DBpedia for autocomplete and structured data.
DBpedia is completely FREE and perfect for type-ahead search boxes.
"""
LOOKUP_API = "http://lookup.dbpedia.org/api/search"
SPARQL_ENDPOINT = "https://dbpedia.org/sparql"
# Common DBpedia ontology classes
CLASSES = {
"place": "Place",
"city": "City",
"person": "Person",
"organization": "Organisation",
"government": "GovernmentAgency",
"school": "School",
"politician": "Politician",
}
def __init__(self, cache_dir: str = "data/cache/dbpedia"):
"""Initialize DBpedia lookup client."""
self.cache_dir = Path(cache_dir)
self.cache_dir.mkdir(parents=True, exist_ok=True)
async def search(
self,
query: str,
max_results: int = 10,
type_filter: Optional[str] = None
) -> List[Dict]:
"""
Search DBpedia (autocomplete/type-ahead).
Args:
query: Search query (e.g., "Tuscaloosa", "School Board")
max_results: Maximum number of results
type_filter: Filter by type (e.g., "Place", "Person", "Organisation")
Returns:
List of result dicts with URI, label, description, etc.
"""
logger.info(f"Searching DBpedia for: {query}")
params = {
"query": query,
"maxResults": max_results,
"format": "json"
}
if type_filter:
params["type"] = type_filter
async with httpx.AsyncClient(timeout=30.0) as client:
try:
response = await client.get(
self.LOOKUP_API,
params=params,
headers={
"User-Agent": "CivicEngagementBot/1.0 (Educational Research)",
"Accept": "application/json"
}
)
response.raise_for_status()
data = response.json()
# Extract results
results = []
for item in data.get("results", []):
results.append({
"label": item.get("label"),
"uri": item.get("uri"),
"description": item.get("description"),
"classes": item.get("classes", []),
"categories": item.get("categories", []),
"refCount": item.get("refCount", 0), # How many Wikipedia pages link to this
"source": "dbpedia",
"fetched_at": datetime.utcnow().isoformat()
})
logger.info(f"β
Found {len(results)} results for '{query}'")
return results
except Exception as e:
logger.error(f"Error searching DBpedia: {e}")
raise
async def search_by_type(
self,
query: str,
type_filter: str,
max_results: int = 20
) -> List[Dict]:
"""
Search for specific entity types.
Args:
query: Search query
type_filter: Entity type ("Place", "Person", "Organisation", etc.)
max_results: Maximum results
Returns:
Filtered results of that type
"""
logger.info(f"Searching for {type_filter}: {query}")
return await self.search(
query=query,
max_results=max_results,
type_filter=type_filter
)
async def get_resource_info(self, resource: str) -> Dict:
"""
Get detailed information about a DBpedia resource.
Args:
resource: Resource name (e.g., "Tuscaloosa,_Alabama")
Returns:
Dict with resource information
"""
# DBpedia resource URL
if not resource.startswith("http"):
resource_url = f"http://dbpedia.org/resource/{resource}"
else:
resource_url = resource
logger.info(f"Fetching resource info: {resource_url}")
# Query SPARQL endpoint for all properties
query = f"""
SELECT ?property ?value
WHERE {{
<{resource_url}> ?property ?value .
}}
LIMIT 100
"""
async with httpx.AsyncClient(timeout=30.0) as client:
try:
response = await client.get(
self.SPARQL_ENDPOINT,
params={
"query": query,
"format": "json"
},
headers={
"User-Agent": "CivicEngagementBot/1.0",
"Accept": "application/sparql-results+json"
}
)
response.raise_for_status()
data = response.json()
# Parse results into structured dict
info = {
"resource": resource_url,
"properties": {},
"source": "dbpedia",
"fetched_at": datetime.utcnow().isoformat()
}
for binding in data.get("results", {}).get("bindings", []):
prop = binding.get("property", {}).get("value", "")
value = binding.get("value", {}).get("value", "")
# Extract property name from URI
prop_name = prop.split("/")[-1].split("#")[-1]
# Store property
if prop_name not in info["properties"]:
info["properties"][prop_name] = []
info["properties"][prop_name].append(value)
logger.info(f"β
Found {len(info['properties'])} properties for {resource}")
return info
except Exception as e:
logger.error(f"Error fetching resource info: {e}")
raise
async def find_cities(self, state: Optional[str] = None) -> List[Dict]:
"""
Find cities (with optional state filter).
Args:
state: State name to filter by
Returns:
List of city dicts
"""
if state:
query = f"cities in {state}"
else:
query = "city"
return await self.search_by_type(
query=query,
type_filter="City",
max_results=50
)
async def find_people(self, name_query: str) -> List[Dict]:
"""
Find people by name.
Args:
name_query: Name or partial name
Returns:
List of person dicts
"""
return await self.search_by_type(
query=name_query,
type_filter="Person",
max_results=20
)
async def find_organizations(self, org_query: str) -> List[Dict]:
"""
Find organizations.
Args:
org_query: Organization name or keyword
Returns:
List of organization dicts
"""
return await self.search_by_type(
query=org_query,
type_filter="Organisation",
max_results=20
)
def save_to_json(self, data, filename: str):
"""Save data to JSON cache."""
import json
filepath = self.cache_dir / filename
with open(filepath, 'w') as f:
json.dump(data, f, indent=2)
logger.info(f"πΎ Saved data to {filepath}")
# ============================================================================
# Example Usage
# ============================================================================
async def example_usage():
"""Example usage of DBpedia integration."""
dbpedia = DBpediaLookup()
# Example 1: Autocomplete search for "Tuscaloosa"
logger.info("\n" + "="*80)
logger.info("Example 1: Autocomplete search for 'Tuscaloosa'")
logger.info("="*80)
try:
results = await dbpedia.search("Tuscaloosa", max_results=10)
print(f"\nβ
Found {len(results)} results:")
for result in results:
print(f"\n β’ {result['label']}")
if result.get('description'):
print(f" {result['description']}")
print(f" URI: {result['uri']}")
print(f" Reference count: {result['refCount']}")
if results:
dbpedia.save_to_json(results, "tuscaloosa_search.json")
except Exception as e:
logger.error(f"Error: {e}")
# Example 2: Get detailed info about Tuscaloosa, Alabama
logger.info("\n" + "="*80)
logger.info("Example 2: Get detailed info about Tuscaloosa, Alabama")
logger.info("="*80)
try:
info = await dbpedia.get_resource_info("Tuscaloosa,_Alabama")
print(f"\nβ
Found {len(info['properties'])} properties:")
# Show interesting properties
interesting = [
"mayor", "population", "areaCode", "postalCode",
"website", "leaderTitle", "foundingDate"
]
for prop in interesting:
if prop in info['properties']:
print(f" β’ {prop}: {info['properties'][prop]}")
dbpedia.save_to_json(info, "tuscaloosa_info.json")
except Exception as e:
logger.error(f"Error: {e}")
# Example 3: Search for cities in Alabama
logger.info("\n" + "="*80)
logger.info("Example 3: Search for cities in Alabama")
logger.info("="*80)
try:
cities = await dbpedia.find_cities(state="Alabama")
print(f"\nβ
Found {len(cities)} cities in Alabama:")
for city in cities[:10]: # Show first 10
print(f" β’ {city['label']}")
if city.get('description'):
print(f" {city['description']}")
if cities:
dbpedia.save_to_json(cities, "alabama_cities.json")
except Exception as e:
logger.error(f"Error: {e}")
# Example 4: Search for people (politicians)
logger.info("\n" + "="*80)
logger.info("Example 4: Search for Alabama politicians")
logger.info("="*80)
try:
people = await dbpedia.find_people("Alabama mayor")
print(f"\nβ
Found {len(people)} people:")
for person in people[:10]:
print(f" β’ {person['label']}")
if person.get('description'):
print(f" {person['description']}")
if people:
dbpedia.save_to_json(people, "alabama_politicians.json")
except Exception as e:
logger.error(f"Error: {e}")
logger.info("\nβ
Examples complete!")
logger.info("\n" + "="*80)
logger.info("DBpedia Lookup API is perfect for autocomplete!")
logger.info("Use it in your search box for instant suggestions.")
logger.info("="*80)
if __name__ == "__main__":
asyncio.run(example_usage())
|