Python Final – A Textual Feminist Orgy
I wanted to play with feminist texts, and how women express themselves.
I.
Source Text: Maya Angelou’s 1993 Inaugural Poem
Hosts to species long since departed,
Of their sojourn here
Plant yourself beside me, here beside the river.
Each of you, descendant of some passed on
the mastodon
the gloom
the Rock
the wall
the world
the songs
the tree
the wise
the Asian
the Hispanic
the Jew
the Sioux
the Muslim
the French
the Greek
the Rabbi
the Priest
the Sheikh
the Straight
the Preacher
the homeless
the teacher
the tree
the first
the river
the river
the employment
the Turk
the Swede
the German
the Scot
the Ashanti
the Yoruba
the Kru
the tree
the river
the rock
the river
the tree
the dream
the palms
the shape
the pulse
the courage
the river
the tree
the mendicant
the mastodon
the pulse
the grace
In hope.py, I spell out the word “HOPE” with Angelou’s poem
import urllib import sys import re printed = [r'^[Hh]', r'^[Oo]', r'^[Pp]', r'^[Ee]'] for exp in printed: for line in sys.stdin: line = line.strip() if re.search(exp, line): print line break
and then I use a second program, maya.py, to pull out where exactly we can find hope in Angelou’s text.
import urllib import sys import re for line in sys.stdin: line = line.strip() for matching_string in re.findall(r' \b[Tt]he \w+', line): print matching_string
II.
Source Text: Dorothy Allison’s Interview for the Smith College Voices of Feminism Oral History Project
They get so nervous about touching lesbians.
panicking, because I was a lesbian and it was — oh my God, it was
and panicking because of the lesbian issue.
They were not comfortable with lesbians, and so I could have lost my
scholarship just to have been revealed as a lesbian, especially since I
with a woman I fell in love with who died, and bad things happened.
junkies were not a good idea to fall in love with.
Yeah, yeah. I loved her a lot. She was profoundly self-destructive, and
looking for it. And my hidden agenda was to find the other lesbians,
It was more about the lesbian piece, is what I’m hearing, instead of –
Oh yes. Early lesbian magazines; so The Furies. There was a good
called? The first lesbian magazine was the one those girls were doing
The consciousness-raising group — two things. I fell in love
flannel shirt, who was the classic 70s lesbian. She even had the duckbill
as strictly 70s flannel lesbian, without any secretaries.
completely uninteresting to me. Flannel lesbians were not where my
boy, I loved militant non-monogamy.
lesbian feminist collective which we founded.
for women’s-movement lesbians. You know, You girls. And it was
– a lot of women’s-movement lesbians presented androgynously —
movement lesbians of being prejudiced against genuine, real lesbians,
we went up to Sagaris [Institute], and by that time, our lesbian collective
lesbian feminists, and we were all separatists — our distance from the
when lesbians and queers were — you were crazy. And it was still that
identify as a lesbian, you become a pervert.
then, when there was so much fear around lesbianism?
trying to respect women’s rights. They’re uncomfortable with lesbians,
Here, in dyke.py, I search for and pull out the lines that mention “lesbian” and “love.”
import sys searchstr = "lesbian" for line in sys.stdin: line = line.strip() if searchstr in line: print line offset = line.find("love") if offset != -1: print line
III.
Source Text: Audre Lorde’s speech at the 1977 Lesbian and Literature Panel in Chicago
I am the because I am Black
I am the because I am lesbian
I am the because I am myself
I am a because I am Black
I am a because I am lesbian
I am a because I am myself
I am Black because I am Black
I am Black because I am lesbian
I am Black because I am myself
I am lesbian because I am Black
I am lesbian because I am lesbian
I am lesbian because I am myself
I am myself because I am Black
I am myself because I am lesbian
I am myself because I am myself
I am afraid because the transformation of
I told her because the transformation of
iamlorde.py
import sys import re everything = list() for line in sys.stdin: line = line.strip() for audre in re.findall(r'\b[Ii] \w+ \w+', line): for lorde in re.findall(r'\bbecause \w+ \w+ \w+', line): poem = audre + " " + lorde everything.append(poem) for line in everything: print line
Switching things around a little bit, here is Maya on Dorothy
home in Guerneville, on November 18th, and we’re doing an oral
One of the things that I like best that you said — and again, that’s kind
panicking, because I was a lesbian and it was — oh my God, it was
employed person.
and Maya on Lorde
the risk
the speaking
the transformation
the time
the other
the final
the words
the tyrannies
the face
the transformation
the mouth
the inside
the cause
the face
the visibility
the source
the machine
the power
the reclaiming
the transformation
the truth
the truth
the harsh
the time
the same
the weight
and Lorde on Allison
I was a because I was a
I got hysterical because I got hysterical
I tried to because I tried to
I had been because I had been
I did not because I did not
I had been because I did not
I had a because I had a
I was fascinated because I was fascinated