diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-19 22:40:03 +0100 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-19 22:40:03 +0100 |
commit | a0e06aba76af1c267fb65421f6589844df8b19cf (patch) | |
tree | 5be75b8832d9f97e2dd2bff88f4b3cac8de7b7c1 /hello.py | |
parent | 74f86ab57f824f4f446d6f102ae8ad0038be5de1 (diff) |
parse aanbiedingen
Diffstat (limited to 'hello.py')
-rw-r--r-- | hello.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/hello.py b/hello.py deleted file mode 100644 index 36b8e05..0000000 --- a/hello.py +++ /dev/null @@ -1,24 +0,0 @@ -import sys -import os -import requests - -from google import genai - - -def main(): - key = os.getenv("API_KEY") - client = genai.Client(api_key=key) - # input = sys.argv[1] - - curl = requests.get("https://www.folderz.nl/") - curl.raise_for_status() - - # print(curl.text) - - response = client.models.generate_content(model="gemini-2.0-flash", contents=input) - - print(response.text) - - -if __name__ == "__main__": - main() |