Python 用 connpass API v2 クライアント
pip install connpass
from connpass import Connpass
API_KEY = "<YOUR_API_KEY>"
client = Connpass(api_key=API_KEY)
response = client.get_events()
events = response.events
response = client.get_event_presentations(364)
presentations = response.presentations
This project is licensed under the MIT License - see the LICENSE file for details.