Skip to main content

Basic async requester

Project description

Welcome to StackEdit!

Hi! I'm your first Markdown file in StackEdit. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the file explorer on the left corner of the navigation bar.

def  getAsyncRequests(urls,maxConnections,timeDelay,headers):
	startTime = time.time()
	pageCount = len(urls)
	print("Total web page count:", pageCount)
	responseSuccesCount = 0
	responseFailCount = 0
	responses = []

	for x in  range(0, pageCount+1, maxConnections):
	rs = (grequests.get(u, headers=headers, stream=False)

	for u in urls[x:x+maxConnections])
	time.sleep(timeDelay)

	responses.extend(grequests.map(rs))
	print(x, "Waiting")
	index = 0

	for response in responses:
	index += 1

	if  str(response) == "<Response [200]>":
	responseSuccesCount += 1
	else:
	responseFailCount += 1

	print("Succes: {} , Fail: {}".format(responseSuccesCount, responseFailCount))
	endTime = time.time()
	print("It took", endTime-startTime, "seconds to retrieve",pageCount,"webpages.")

return responses

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncrequester-0.0.4.tar.gz (2.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page