
The code:
from deutschland import jobsuche
from pprint import pprint
from deutschland.jobsuche.api import default_api
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
configuration = jobsuche.Configuration(
host = "https://api-con.arbeitsagentur.de/prod/jobboerse/jobsuche-service",
)
configuration.verify_ssl = False
# Enter a context with an instance of the API client
with jobsuche.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = default_api.DefaultApi(api_client)
try:
api_response = api_instance.pc_v4_app_jobs_get(size=10, page=1)
pprint(api_response)
except jobsuche.ApiException as e:
print("Exception when calling DefaultApi->pc_v4_app_jobs_get: %s\n" % e)