Dolls of Death

Dolls of Death (German: Puppen des Todes) is a 1920 German silent crime film directed by Reinhard Bruck and starring Albert Bassermann, Elsa Bassermann, and Bernhard Goetzke.[1]

Dolls of Death
Directed byReinhard Bruck
Produced byJules Greenbaum
Written by
Starring
CinematographyMutz Greenbaum
Production
company
Release date
  • 14 November 1920 (1920-11-14)
CountryGermany
Language

Cast

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()```
gollark: It doesn't require classes. Hold on.

References

Bibliography

  • Bock, Hans-Michael; Bergfelder, Tim, eds. (2009). The Concise Cinegraph: Encyclopaedia of German Cinema. New York: Berghahn Books. ISBN 978-1-57181-655-9.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.