Create, retrieve and track your Glovo orders trough their Business API.
This package requires at least
- requests 2.21.0
- python 3.7
This package was not tested with prior versions of these packages but it can works as well.
You can install via pip. Run the following command:
pip install glovo-api-python
Create an account in Glovo (it can be created from the App). This api needs a credit card associated to your account. You can add one from your app and it will be used automatically for any order. In order to get your API credentials you should login in the desired environment and go to Credentials section on your profile.
Example ApiKey
& ApiSecret
:
api_key = '155761234946286'
api_secret = '767b4e2f48e4412d95a6eb1234bdc78b'
Simple usage looks like:
from glovo_api_python.client import Glovo
api_key = 'sample_api_key'
api_secret = 'sample_api_secret'
client = Glovo(api_key, api_secret)
From glovo docs
woking_areas = client.working_area.list()
print(working_areas)
# Will show this
# {
# 'status': 200,
# 'data': {
# 'workingAreas': [
# {
# 'code': 'ABJ',
# 'polygons': [
# '<ENCODED POLYLINE>',
# '<ENCODED POLYLINE>'
# ],
# 'workingTime': {
# 'from': '09:00',
# 'duration': 120
# }
# }
# <OTHER WORKING AREAS>
# ]
# }
# }
From glovo docs
pickup_address = {
"lat": -12.0563673,
"lon": -76.9733736,
"type": "PICKUP",
"label": "Avenida los Cipreses, 140",
"details": "Edificio Orbes, Piso 3, Oficina de Productos Angel Breña",
"contactPhone": None,
"contactPerson": None
}
delivery_address = {
"lat": -12.055013,
"lon": -77.03845849999999,
"type": "DELIVERY",
"label": "Avenida Inca Garcilaso de la Vega, 1250",
"details": "Oficina 511",
"contactPhone": None,
"contactPerson": None
}
estimates_order_price = client.order.estimate({
"scheduleTime": None,
"description": "Some useful description",
"addresses": [
pickup_address,
delivery_address
]
})
print(estimates_order_price)
# Will show this
# {
# 'status': 200,
# 'data': {
# 'total': {
# 'amount': 1260,
# 'currency': 'PEN'
# }
# }
# }
From glovo docs
pickup_address = {
"lat": -12.0563673,
"lon": -76.9733736,
"type": "PICKUP",
"label": "Avenida los Cipreses, 140",
"details": "Edificio Orbes, Piso 3, Oficina de Productos Angel Breña",
"contactPhone": None,
"contactPerson": None
}
delivery_address = {
"lat": -12.055013,
"lon": -77.03845849999999,
"type": "DELIVERY",
"label": "Avenida Inca Garcilaso de la Vega, 1250",
"details": "Oficina 511",
"contactPhone": None,
"contactPerson": None
}
placed_order = client.order.create({
"scheduleTime": 12344566, # Set to None for immediate order
"description": "Some useful description",
"addresses": [
pickup_address,
delivery_address
]
})
print(placed_order)
# Will show this
# {
# 'status': 200,
# 'data': {
# "id": 123456789,
# "state": "SCHEDULED",
# "scheduleTime": 12344566,
# "description": "A 30cm by 30cm box",
# "addresses": [
# <PICKUP ADDRESS>,
# <DELIVERY ADDRESS>,
# ]
# }
# }
From glovo docs
order_id = 32678866
placed_order = client.order.read(order_id)
print(placed_order)
# Will show this
# {
# 'status': 200,
# 'data': {
# 'scheduleTime': None,
# 'description': 'Necesito enviar una llave',
# 'addresses': [
# <PICKUP ADDRESS>,
# <DELIVERY ADDRESS>,
# ],
# 'id': '32678866',
# 'state': 'DELIVERED',
# 'reference': None
# }
# }
From glovo docs
order_id = 32678866
tracking = client.order.tracking(order_id)
print(tracking)
# Will show this
# {
# "status": 200,
# "data": {
# "lat": -12.0704984,
# "lon": -76.9816546
# }
# }
From glovo docs
order_id = 32678866
glover_info = client.order.glover_info(order_id)
print(glover_info)
# Will show this
# {
# "status": 200,
# "data": {
# "courierName": "Courier names",
# "phone": "+99999999999"
# }
# }
From glovo docs
start=12344566
end=12544566
order_list = client.order.list(data={'from': start, 'to': end})
print(order_list)
# Will show this
# {
# "status": 200,
# "data": [
# {
# "scheduleTime": null,
# "description": "Useful description!",
# "addresses": [
# <PICKUP ADDRESS>,
# <DELIVERY ADDRESS>,
# ],
# "id": "40304538",
# "state": "DELIVERED",
# "reference": null
# },
# <OTHER ORDERS>
# ]
# }
From glovo docs
order_id = 32678866
canceled_order = client.order.cancel(order_id)
print(glover_info)
# Will show this
# {
# status: 200,
# data: {
# "id": 32678866,
# "state": "CANCELED",
# "scheduleTime": 12344566,
# "description": "A 30cm by 30cm box",
# "addresses": [
# <PICKUP ADDRESS>,
# <DELIVERY ADDRESS>,
# ]
# }
# }