Paseo Pizarro

Paseo Pizarro is pedestrian walk located on the main street of Trujillo city, in Peru. Pizarro street in blocks 5,6,7 and 8 becomes exclusively a pedestrian and joins the Plaza de Armas with the Plazuela El Recreo, along its four blocks are numerous landmarks like the Palace Iturregui, the Emancipation House, etc. and businesses such as supermarkets, souvenir shops, cafes and bars, etc.

Colonial and republican architecture of the Paseo Pizarro one of the highest-traffic streets in the Historic Centre of Trujillo, at background is the historical and traditional Plazuela El Recreo and its high trees.

Description

Typical balconies in the Paseo Pizarro

It is located in the Historic Centre of Trujillo 5th block of Pizarro street. In this street of Trujillo's historic centre are also major banks and private and state institutions in the region as the office of the Ombudsman in block 3 and the Reserve Central Bank branch in block 4, among others.[1]

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

See also

Multimedia

References

  1. "(spanish) Paseo Peatonal Pizarro - Trujillo". Archived from the original on June 29, 2012. Retrieved March 19, 2012.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.