Best Python code snippet using localstack_python
views.py
Source:views.py
...3from .config import *4import pandas as pd5import requests6from io import BytesIO as IO7def get_geo_location(address):8 try:9 response = requests.get(get_geo_info(address))10 result = response.json().get('results')[0].get('locations')[0].get('displayLatLng')11 except: 12 result = {}13 return str(result)14def home(request):15 if request.POST:16 try:17 df = pd.read_excel(request.FILES.get('xl_file'))18 except Exception as e:19 return render(request, 'home_page.html', {'error': 'Upload valid excel file'})20 df['Geo location'] = df['Address Data'].map(lambda address: get_geo_location(address))21 excel_file = IO()22 xlwriter = pd.ExcelWriter(excel_file, engine='xlsxwriter')23 df.to_excel(xlwriter, 'Sheetname1', index=False)24 xlwriter.save()25 xlwriter.close()26 excel_file.seek(0)27 response = HttpResponse(excel_file.read(), content_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')28 response['Content-Disposition'] = 'attachment; filename=GeoLocation_updated.xlsx'29 return response30 ...
message.py
Source:message.py
...4 response = requests.get('https://api.ipify.org')5 6 return response.text7 8def get_geo_location(ip_address):9 '''Return geolocation of given IP address'''10 response = requests.get(f'http://ipinfo.io/{ip_address}')11 data = response.json()12 return [float(coord) for coord in data['loc'].split(',')]13def get_weather_data(coords):14 '''Return weather data for given geolocation'''15 url = (f'http://www.7timer.info/bin/api.pl?lon={coords[0]}&lat={coords[1]}&product=astro&output=json')16 response = requests.get(url)17 data = response.json()18 return data['dataseries'][0]['temp2m']19def greet(ip_address):20 coords = get_geo_location(ip_address)21 temp = get_weather_data(coords)22 23 return f'Hello, tempeature is {temp} deg C'24if __name__=='__main__':...
ip2geo.py
Source:ip2geo.py
2# -*- coding: utf-8 -*-3import geoip2.database4import pprint5import uuid6def get_geo_location(host_ip):7 reader = geoip2.database.Reader('/data/webaccess-analysis/kinesis-kcl/weblog/GeoLite2-City.mmdb') # FIXME:8 location = ""9 try:10 response = reader.city(host_ip)11 location = "{lat}, {lon}".format(lat=response.location.latitude, lon=response.location.longitude)12 except Exception as e:13 sys.stderr.write("get_geo_localtion({host}). Exception was {e}\n".format(host=host_ip, e=e))14 return location15if __name__ == '__main__':16 #print get_geo_location('128.101.101.101')17 #print get_geo_location('172.16.200.8')...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!