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