Spaces:
Sleeping
Sleeping
File size: 4,632 Bytes
f87b88a |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
from django.shortcuts import render
from rest_framework.response import Response
from rest_framework.decorators import api_view
import http.client
import json
import requests
from bs4 import BeautifulSoup
# Create your views here.
def sessionIdGenrator():
conn = http.client.HTTPSConnection("www.amazon.in")
payload = ''
headers = {}
conn.request("GET", "/", payload, headers)
res = conn.getresponse()
data = res.read()
response = data.decode("utf-8")
ue_sid = response.split("ue_sid =")[1].split(',')[0].split("'")[1]
ue_mid = response.split("ue_mid =")[1].split(',')[0].split("'")[1]
return ue_sid, ue_mid
def searchAPI(ue_sid, ue_mid, query):
conn = http.client.HTTPSConnection("completion.amazon.in")
payload = ''
headers = {}
conn.request("GET", "/api/2017/suggestions?prefix="+query.replace(" ", "+") + "&alias=aps&session-id="+ue_sid+"&mid="+ue_mid, payload, headers)
res = conn.getresponse()
data = res.read()
response = data.decode("utf-8")
return json.loads(response)
def getAllProduct(query, page):
url = "https://api.croma.com/searchservices/v1/search?currentPage="+str(page)+"&query="+query+"%3Arelevance&fields=FULL&channel=WEB&channelCode=382006&spellOpt=DEFAULT"
print(url)
response = requests.request("GET", url)
products = response.json()["products"]
data = []
for product in products:
temp = {}
temp["title"] = product["name"]
temp["link"] = "https://www.croma.com"+product["url"]
try:
temp["price"] = product["price"]["value"]
except:
pass
try:
temp["fullPrice"] = product["mrp"]["value"]
except:
pass
try:
temp["symbol"] = product["price"]["formattedValue"][0]
except:
pass
try:
temp["image"] = product["plpImage"]
except:
pass
try:
temp["stars"] = product["averageRating"]
except:
pass
try:
temp["reviews"] = product["finalReviewRatingCount"]
except:
pass
try:
temp["discount"] = product["discountValue"]
except:
pass
data.append(temp)
return data
@api_view(['GET'])
def getProductsList(request):
query = (request.GET.get('query'))
try:
page = (request.GET.get('page'))
except:
page = 0
if page == None:
page = 0
data = getAllProduct(query, page)
return Response({"data": data})
@api_view(['GET'])
def getProductDetail(request):
productId = request.GET.get('id')
conn = http.client.HTTPSConnection("www.amazon.in")
payload = ''
headers = {}
conn.request("GET", "/dp/"+productId+"/", payload, headers)
res = conn.getresponse()
data = res.read()
response = data.decode("utf-8")
data = {}
soup = BeautifulSoup(response, features="html5lib")
#title = response.split('id="productTitle"')[1].split(">")[1].split("</span")[0].strip()
title = soup.find_all("span", {"class", "a-size-large product-title-word-break"})[0].text.strip()
data['title'] = title
symbol = soup.find_all("span", {"class", "a-price-symbol"})[0].text
data["symbol"] = symbol
savingsPercentage = soup.find_all("span", {"class", "savingsPercentage"})[0].text
data["savingPercentage"] = savingsPercentage
imgs = soup.find_all("img", {"class", "a-dynamic-image"})
imgArr = []
for i in imgs:
imgArr.append("https://m.media-amazon.com/images/I/" +i["src"].split("/I/")[1].split(".")[0]+".jpg")
data["images"] = imgArr
scripts = soup.find_all("script")
tempData = {}
for i in scripts:
try:
temp = str(i).split("<script")[1].split(">")[1].split("</script")[0]
for key, item in json.loads(temp).items():
if item != None or item != "nulll" or item != True or item != False:
tempData[key] = item
except:
pass
data["currencyCode"] = tempData["currencyCode"]
data["productPrice"] = tempData["productPrice"]
data["brand"] = tempData["brand"]
data["category"] = tempData["buyBackCategory"]
return Response({"data": data})
@api_view(['GET'])
def searchQuery(request):
query = request.GET.get('query')
url = "https://api.croma.com/searchservices/v1/autocomplete?term="+query+"&fields=FULL"
response = requests.request("GET", url)
data = []
for i in response.json():
data.append(i["suggestedWord"])
data = {"data": data}
return Response(data)
|