mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
10 lines
229 B
Python
Executable File
10 lines
229 B
Python
Executable File
import requests
|
|
import os
|
|
|
|
def main(
|
|
my_value: str
|
|
):
|
|
headers={'Authorization': "Bearer: {}".format(os.environ.get("WM_TOKEN"))}
|
|
r = requests.post('https://httpbin.org/post', data={'key': my_value})
|
|
return r.text
|