PythonでIFTTTのWebhookにPOST

Quickstart — Requests 2.21.0 documentation

import requests

# Event Name
event = 'xxxxxx'

# Webhooks - Documentation - Your key isを確認
key = 'xxxxxxxxxxxxxxxx'

url = 'https://maker.ifttt.com/trigger/{}/with/key/{}'.format(event, key)

# Post
requests.post(url, data={'value1': 'テスト', 'value2': 'てすと', 'value3': 'test'})