-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
26 lines (19 loc) · 712 Bytes
/
main.py
File metadata and controls
26 lines (19 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# snapWONDERS OpenAPI Specification
# API version: 1.0
#
# Copyright (c) snapWONDERS.com, All rights reserved 2023
#
# Author: Kenneth Springer (https://kennethbspringer.au)
#
# All the snapWONDERS API services is available over the Clearnet / **Web** and Dark Web **Tor** and **I2P**
# Read details: https://snapwonders.com/snapwonders-openapi-specification
#
#
from api_jobs import ApiJobs
from constants_helper import ConstHelper
# NOTE: see constants_helper.py for constants you MUST setup
print("snapWONDERS Client OpenAPI v3 Python Example!")
print("You must set your API key and media path/filename")
# Create an analyse job and display results
ApiJobs.analyseJob(ConstHelper.MEDIA_PATH_FILENAME)