import { CodeBracketIcon, RocketLaunchIcon, BookOpenIcon, CubeIcon, ServerIcon, CircleStackIcon } from '@heroicons/react/24/outline'; export default function Developers() { return (
Build civic tech solutions with open data and open source tools
Open Navigator is 100% open source. Join developers worldwide building tools for transparency, accountability, and community empowerment.
{`# Search meeting transcripts
import requests
response = requests.get(
'http://localhost:8000/api/search/',
params={
'q': 'dental health',
'state': 'AL',
'limit': 10
}
)
for result in response.json()['results']:
print(f"{result['title']} - {result['date']}")
print(f"Score: {result['score']}")
print(result['snippet'])
print()`}