Browse Source

html to python to description

master
zeroth 5 years ago
parent
commit
a2285d6de0
  1. BIN
      __pycache__/contextualise.cpython-35.pyc
  2. 11
      contextualise.py
  3. 28
      static/files/17. George Brecht_event scores/17.blurb.html
  4. 8
      static/files/17. George Brecht_event scores/17.blurb.txt
  5. 1
      static/files/17. George Brecht_event scores/17.json
  6. 4
      templates/description.html
  7. 7
      wordsearch.py

BIN
__pycache__/contextualise.cpython-35.pyc

Binary file not shown.

11
contextualise.py

@ -104,10 +104,17 @@ def description():
# Your browser does not support the audio tag.
# </audio>''')
#if txtfile
if file.lower().endswith(('.txt')):
# if file.lower().endswith(('.txt')):
# # print(thefile)
# with open("static/"+file,"r") as f:
# textfile = f.readlines()
if file.lower().endswith(('.html')):
# print(thefile)
with open("static/"+file,"r") as f:
with open("static/"+file,"r", encoding='utf-8') as f:
textfile = f.read()
textfile = Markup(textfile)
# #ifvid to be added
# elif file.lower().endswith(('.mp4')):

28
static/files/17. George Brecht_event scores/17.blurb.html

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
George Brecht (August 27, 1926 – December 5, 2008), born George Ellis MacDiarmid, was an American conceptual artist and avant-garde composer,
as well as a professional chemist who worked as a consultant for companies including Pfizer, Johnson & Johnson, and Mobil Oil. He was a key member
of, and influence on, Fluxus, the international group of avant-garde artists centred on George Maciunas, having been involved with the group
from the first performances in Wiesbaden 1962 until Maciunas' death in 1978.
One of the originators of 'participatory' art, in which the artwork can only be experienced by the active involvement of the viewer, he is most
famous for his Event Scores such as Drip Music 1962, and is widely seen as an important precursor to conceptual art. He described his own art as a way of “ensuring that the details of everyday life, the random constellations of objects that surround us, stop going unnoticed.”
<a href="zedoakzodkaozd.html">oiqadoqaidpoaizpodia</a>
<h2>SUNDOWN VEHICLE EVENT by GEORGE BRECHT</h2>
Left: George Brecht, 1961, Two Vehicle Events, Detail of a 3.5 " by 4.5. card. One of many similar kinds of instructions that were given to participants.
Right: Vehicles, drivers & interested students gather before sunset for a performance of George Brecht's "Vehicle Sundown Event".
Location: St Vincent College, Latrobe, PA., parking area behind Sportsman's Hall, 1963.
Steve Joy took me to meet George Brecht in his studio when I was in residence at St Michael's in Manhattan (c.1962). We became friends and GB mailed instruction cards to me. I brought Steve Joy to St Vincent College when I returned to the monastery from Paris in 1963. GB agreed to provide instructions for an event at St Vincent. For his "Vehicle Sundown Event", GB published a set of about 50 cards to be given to participants who participated in the event with their vehicles. Each card held an instruction to be performed with a vehicle. Drivers were instructed to assemble at sundown in a parking lot and randomly park their vehicles. Then each driver, with a shuffled deck of instructions, would begin performing at the sound of a signal. Participants performed about 50 events such as "turn on lights", "start engine", "stop engine", "open window". This work was performed at St Vincent College under the direction of Stephen Joy with Roman Verostko assisting. c. 1963 ( I can confirm that Fr Melvin Ruprecht participated. I believe it was before I went to Washington as NCE editor, rv0
</body>
</html>

8
static/files/17. George Brecht_event scores/17.blurb.txt

@ -1,6 +1,10 @@
George Brecht (August 27, 1926 – December 5, 2008), born George Ellis MacDiarmid, was an American conceptual artist and avant-garde composer, as well as a professional chemist who worked as a consultant for companies including Pfizer, Johnson & Johnson, and Mobil Oil. He was a key member of, and influence on, Fluxus, the international group of avant-garde artists centred on George Maciunas, having been involved with the group from the first performances in Wiesbaden 1962 until Maciunas' death in 1978.
George Brecht (August 27, 1926 – December 5, 2008), born George Ellis MacDiarmid, was an American conceptual artist and avant-garde composer,
as well as a professional chemist who worked as a consultant for companies including Pfizer, Johnson & Johnson, and Mobil Oil. He was a key member
of, and influence on, Fluxus, the international group of avant-garde artists centred on George Maciunas, having been involved with the group
from the first performances in Wiesbaden 1962 until Maciunas' death in 1978.
One of the originators of 'participatory' art, in which the artwork can only be experienced by the active involvement of the viewer, he is most famous for his Event Scores such as Drip Music 1962, and is widely seen as an important precursor to conceptual art. He described his own art as a way of “ensuring that the details of everyday life, the random constellations of objects that surround us, stop going unnoticed.”
One of the originators of 'participatory' art, in which the artwork can only be experienced by the active involvement of the viewer, he is most
famous for his Event Scores such as Drip Music 1962, and is widely seen as an important precursor to conceptual art. He described his own art as a way of “ensuring that the details of everyday life, the random constellations of objects that surround us, stop going unnoticed.”
SUNDOWN VEHICLE EVENT by GEORGE BRECHT

1
static/files/17. George Brecht_event scores/17.json

@ -5,6 +5,7 @@
"content": "A sound file.",
"files": [
"files/17. George Brecht_event scores/17.blurb.txt",
"files/17. George Brecht_event scores/17.blurb.html",
"files/17. George Brecht_event scores/Photo/brecht-event1.jpg",
"files/17. George Brecht_event scores/Photo/svc-1966-brecht's sundown event-i.jpg",
"files/17. George Brecht_event scores/Video/Drip Music - George Brecht (Fluxus)-UT5lgaE-qZY.mkv"

4
templates/description.html

@ -32,9 +32,11 @@
{% endfor %}
{% if textfile is defined %}
<p>{{ textfile }}</p>
<pre>{{ textfile }}</pr>e
{% endif %}
</div>
{% endblock %}

7
wordsearch.py

@ -0,0 +1,7 @@
text = open('static/files/17. George Brecht_event scores/17.blurb.txt')
search_words = ['random', 'composer', 'iron', 'car']
for line in text:
if any(word in line for word in search_words):
Loading…
Cancel
Save