| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/api.hellogtx.com/apihellogtx/flight/ |
Upload File : |
from django.shortcuts import render
import requests
import json
from rest_framework.response import Response
from rest_framework.generics import ListAPIView
from django.http import Http404
from rest_framework import status
from rest_framework.decorators import api_view
from rest_framework.status import (
HTTP_400_BAD_REQUEST,
HTTP_404_NOT_FOUND,
HTTP_200_OK,
HTTP_500_INTERNAL_SERVER_ERROR
)
@api_view(["GET"])
def TripjackFlightSearchResults(request):
headers = {"Content-Type": "application/json", "apikey": "311588105d9884-721f-46d8-9e83-b7a77119c824"}
search_request = {"searchQuery": {"cabinClass": "ECONOMY", "paxInfo": {"ADULT": "2", "CHILD": "1", "INFANT": "0"}, "routeInfos": [{"fromCityOrAirport": {"code": "DEL"}, "toCityOrAirport": {"code": "BOM"}, "travelDate": "2020-10-27"}], "searchModifiers": {"isDirectFlight": False, "isConnectingFlight": False}}}
try:
r = requests.post('https://apitest.tripjack.com/fms/v1/air-search-all', headers=headers, data=json.dumps(search_request))
x = r.text
json_data = json.loads(x)
new_dict = {}
app_list = []
for item in json_data["searchResult"]["tripInfos"]["ONWARD"]:
appdata_dict = {}
appdata_dict = item
app_list.append(appdata_dict)
new_dict['resultSet'] = app_list
# new_json_str = json.dumps(new_dict)
return Response(new_dict)
except Exception as e:
return Response({'error': str(e), "status": False}, status=HTTP_500_INTERNAL_SERVER_ERROR)