Frauenthal castle

Frauenthal castle is an historic building in Frauental an der Laßnitz in the district of Deutschlandsberg in Styria. Its history goes back to the 16th century. These days it is owned by the House of Liechtenstein and used as a high school.

Frauenthal castle in July 2011

History

1542 the castle was built as a residence for aristocrats and extended in 1675. Originally it was named after Saint Ulrich. The castle chapel is named after Saint Joseph. From 1812 to 1820 it saw its economic high und the owner Moritz von Fries.[1] 1820 the ownership was transferred to the House of Liechtenstein.[2] In 1969 and 1970 it was renovated.

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()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.

References

  1. Gunther Riedlsperger: Schlösser und Herrensitz im Paradies der Steiermark, Bezirk Deutschlandsberg. Deutschlandsberg 1996, published by Simadruck. Pages 100–108.
  2. Bezirkstopographie, Page 94.

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