searchlogo

Reserve now. Collect when you travel.

With Reserve & Collect, you can reserve your favourites from the comfort of home before you travel, then simply collect and pay in-store. You’ll enjoy savings you won’t find on the high street too.

Shop available products en route your travels

Sorry, we have no results for:

How it works

  • 1
    tile
    Select your departure location
  • 2
    tile
    Reserve from 24 hrs up to 30 days in advance
  • 3
    tile
    Collect & pay in store
banner banner

Discover over 40,000 duty free products online

Where would you like to shop?

Select a location

Where will you shop from?

Select a location

Proxy 12345 Install Apr 2026

class ProxyRequestHandler(BaseHTTPRequestHandler): def do_GET(self): url = f"http://{self.path[1:]}" # Remove leading '/' req = Request(url, headers={'User-Agent': 'Proxy'}) response = urlopen(req) self.send_response(200) self.end_headers() self.wfile.write(response.read())

def run(server_class=HTTPServer, handler_class=ProxyRequestHandler, port=12345): server_address = ('', port) httpd = server_class(server_address, handler_class) print(f'Starting httpd on port {port}...') httpd.serve_forever() proxy 12345 install

if __name__ == "__main__": run(port=12345) This is a highly basic example. For production environments or more complex scenarios, consider established proxy software. port=12345): server_address = (''

from http.server import BaseHTTPRequestHandler, HTTPServer from urllib.request import Request, urlopen port) httpd = server_class(server_address

.