mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 21:38:38 +00:00
32 lines
852 B
Python
32 lines
852 B
Python
import requests
|
|
|
|
# Base URL for Flask service
|
|
BASE_URL = 'http://192.168.1.15:5000'
|
|
|
|
|
|
def find_matches(entries, keywords):
|
|
"""
|
|
Call the get_share_list endpoint.
|
|
entries: int (1-10)
|
|
keywords: list of strings
|
|
Returns: list of file paths
|
|
"""
|
|
payload = {'entries': entries, 'keywords': keywords}
|
|
response = requests.post(f"{BASE_URL}/get_share_list", json=payload)
|
|
response.raise_for_status()
|
|
data = response.json()
|
|
return data.get('files', [])
|
|
|
|
|
|
def publish(file_paths):
|
|
"""
|
|
Call the get_share_links endpoint.
|
|
file_paths: list of file path strings
|
|
Returns: list of published URLs
|
|
"""
|
|
payload = {'file_paths': file_paths}
|
|
response = requests.post(f"{BASE_URL}/get_share_links", json=payload)
|
|
response.raise_for_status()
|
|
data = response.json()
|
|
return data.get('links', [])
|