id stringlengths 14 16 | text stringlengths 44 2.73k | source stringlengths 49 114 |
|---|---|---|
fb6acfe2e82a-2 | <!DOCTYPE html>\n<html lang="en">\n<head>\n <meta charset="UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <style>\n @import url(\'https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;700&family=Inter:wght@600&display=swap\');\n\n body {\n margin... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/figma.html |
fb6acfe2e82a-3 | font-weight: 700;\n margin: 0;\n }\n\n .header nav {\n display: flex;\n align-items: center;\n }\n\n .header nav a {\n font-size: 14px;\n font-weight: 500;\n text-decoration: none;\n color: #000;\n margin... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/figma.html |
fb6acfe2e82a-4 | Ipsum</a>\n <a href="#">Lorem Ipsum</a>\n <a href="#">Lorem Ipsum</a>\n </nav>\n </header>\n</body>\n</html> | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/figma.html |
fb6acfe2e82a-5 | previous
Facebook Chat
next
GCS Directory
By Harrison Chase
© Copyright 2023, Harrison Chase.
Last updated on Apr 25, 2023. | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/figma.html |
3a6817abf3f2-0 | .ipynb
.pdf
s3 File
s3 File#
This covers how to load document objects from an s3 file object.
from langchain.document_loaders import S3FileLoader
#!pip install boto3
loader = S3FileLoader("testing-hwc", "fake.docx")
loader.load()
[Document(page_content='Lorem ipsum dolor sit amet.', lookup_str='', metadata={'source': '... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/s3_file.html |
fb29d60ea563-0 | .ipynb
.pdf
IMSDb
IMSDb#
This covers how to load IMSDb webpages into a document format that we can use downstream.
from langchain.document_loaders import IMSDbLoader
loader = IMSDbLoader("https://imsdb.com/scripts/BlacKkKlansman.html")
data = loader.load()
data | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-1 | [Document(page_content='\n\r\n\r\n\r\n\r\n BLACKKKLANSMAN\r\n \r\n \r\n \r\n \r\n Written by\r\n\r\n Charlie Wachtel & David Ra... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-2 | FADE IN:\r\n \r\n SCENE FROM "GONE WITH THE WIND"\r\n \r\n Scarlett O\'Hara, played by Vivian Leigh, walks through the\r\n Thousands of injured Confederate Soldiers pulling back to\r\n reveal the Famous Shot of the tattered Confederate ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-3 | Battle but they didn\'t lose The War.\r\n Yes, Friends, We are under attack.\r\n \r\n CUT TO:\r\n \r\n A 1960\'S EDUCATIONAL STYLE FILM\r\n \r\n... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-4 | him. Very\r\n Official. He is not a Southerner and speaks with articulation\r\n and intelligence.\r\n \r\n BEAUREGARD- KLAN NARRATOR\r\n You\'ve read about it in your Local\r\n Newspapers or seen it o... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-5 | CUT TO:\r\n \r\n FOOTAGE OF THE LITTLE ROCK NINE\r\n \r\n being escorted into CENTRAL HIGH SCHOOL, Little Rock,\r\n Arkansas by The National Guard.\r\n \r\n BEAUREGARD- KLAN NARRATOR\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-6 | Jewish controlled Puppets on the\r\n U.S. Supreme Court compelling White\r\n children to go to School with an\r\n Inferior Race is The Final Nail in a\r\n Black Coffin towards America becoming\r\n a Mongrel Nat... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-7 | Shoes and working\r\n as Butlers, Porters and Maids.\r\n BEAUREGARD- KLAN NARRATOR (V.O.)\r\n (CONT\'D)\r\n We had a great way of Life before The\r\n Martin Luther Coon\'s of The World... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-8 | of Dr. Martin Luther King Jr. sitting in the\r\n front row of a Classroom it reads: Martin Luther King in a\r\n Communist Training School.\r\n \r\n BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n ...and their Army of Commies start... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-9 | BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n Do you really want your precious\r\n White Child going to School with\r\n Negroes?\r\n \r\n Footage of Black and White Children playing together,\r\n innocent.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-10 | They are Lying, Dirty Monkeys...\r\n \r\n FOOTAGE and STILLS of Stereotype Blacks Coons, Bucks and\r\n shining Black Mammies. Black Soldiers in D. W. Griffith\'s\r\n "Birth of a Nation" pushing Whites around on the Street.\r\n \r\n CLOS... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-11 | \r\n Images and Scientific charts of Blacks compared to Apes and\r\n Monkeys.\r\n \r\n CLOSE - BEAUREGARD - KLAN NARRATOR\r\n \r\n BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n ...Rapists, Murder... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-12 | CUT TO:\r\n \r\n LYNCH, The MULATTO, lusting after our LILLIAN GISH in "Birth\r\n of a Nation." Other Lusting Images of Craving Black\r\n Beasts!!! SEXUAL PREDATORS!!!\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-13 | \r\n CUT TO:\r\n \r\n CLOSE - BEAUREGARD - KLAN NARRATOR\r\n \r\n A Stereotype illustration of Jews controlling Negroes.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-14 | of High Ranking\r\n Blood Sucking Jews! Using an Army of\r\n outside...\r\n \r\n Beauregard continues.\r\n \r\n CUT TO:\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-15 | Footage of The March on Washington.\r\n \r\n CUT TO:\r\n \r\n CLOSE - BOUREGARD - KLAN NARRATOR.\r\n \r\n BOUREGARD- KLAN NARRATO... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-16 | \r\n CUT TO:\r\n \r\n An image of an All-American White Nuclear Family.\r\n \r\n CUT TO:\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-17 | BOUREGARD-KLAN NARRATOR (CONT\'D)\r\n It\'s an International... Jewish...\r\n Conspiracy.\r\n WE HEAR and end with the Corny Stinger of Music that goes\r\n with these Education and Propaganda Films!\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-18 | SHOT\r\n \r\n Superimposed: Early 70s\r\n \r\n An amazing contrast. The beautiful landscape of Colorado\r\n Springs, the City sits nestled within the rugged Mountain\r\n terrain. The majestic Pikes Peak, the jagged beauty of The\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-19 | sporting a\r\n good sized Afro, rebellious but straight laced by most 1970\'s\r\n standards.\r\n \r\n Ron stares at an Ad attached to a bulletin board.\r\n \r\n CLOSE - THE AD READS:\r\n \r\n JOIN THE CO... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-20 | - COLORADO SPRINGS POLICE DEPT -\r\n DAY\r\n \r\n A drab, white-walled office. Ron sits across the table from\r\n The Assistant City Personnel Manager, MR. TURRENTINE, Black,\r\n 40\'s, business like but progressive and CHIEF BRIDGES, White,\r\n... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-21 | \r\n RON STALLWORTH\r\n I went to College.\r\n \r\n MR. TURRENTINE\r\n How do you feel about Vietnam?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-22 | Would you call yourself a Womanizer?\r\n RON STALLWORTH\r\n No Sir, I would not.\r\n \r\n MR. TURRENTINE\r\n Do you frequent Night Clubs?\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-23 | CHIEF BRIDGES\r\n Do you drink?\r\n \r\n RON STALLWORTH\r\n On Special occasions, Sir.\r\n \r\n MR. TURRENTINE\r\n Have you... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-24 | Only those prescribed by My Doctor,\r\n Sir.\r\n \r\n Turrentine looks at Chief Bridges.\r\n \r\n MR. TURRENTINE\r\n That\'s kind of rare these days for a\r\n youn... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-25 | but my Father was in The\r\n Military and I was raised up the\r\n Right way, Sir.\r\n \r\n CHIEF BRIDGES\r\n How are you with people, generally?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-26 | raised...\r\n \r\n CHIEF BRIDGES\r\n ...Have you ever had any negative...\r\n \r\n Mr. Turrentine jumps in, impatient.\r\n \r\n MR. TU... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-27 | RON STALLWORTH\r\n Would that happen...\r\n \r\n MR. TURRENTINE\r\n ...Sheeeeeeettt!!!\r\n Bridges looks at him. Turrentine waits, Ron doesn\'t know how\r\n to respond, finally. Turrentine leans forwa... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-28 | this City. If we make you an Officer,\r\n you would, in effect, be the Jackie\r\n Robinson of the Colorado Springs\r\n Police force.\r\n \r\n Mr. Turrentine lets this sink in.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-29 | his fellow\r\n Teammates, from Fans, other Teams,\r\n and The Press.\r\n \r\n RON STALLWORTH\r\n I know Jackie\'s Story, Sir.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-30 | \r\n Ron evaluates the hard reality of the question. Decides.\r\n \r\n RON STALLWORTH\r\n If I need to, yes, Sir.\r\n \r\n MR. TURRENTINE\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-31 | Bridges.\r\n \r\n CHIEF BRIDGES\r\n I\'ll have your back but I can only do\r\n so much. The Weight of this is on\r\n You...and You alone.\r\n \r\n R... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-32 | \r\n INT. RECORDS ROOM - CSPD - DAY\r\n \r\n Ron sorts a file cabinet of records as OFFICER CLAY MULANEY,\r\n 60\'s, White, sits on a stool, reading a Magazine clearly\r\n looking at a Photo of something good.\r\n Ron looks at the Photo of the Actress... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-33 | \r\n OFFICER MULANEY\r\n Never saw it but what you think?\r\n \r\n RON STALLWORTH\r\n She\'s a very good Actress.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-34 | \r\n Ron ignores it.\r\n \r\n OFFICER MULANEY (CONT\'D)\r\n Truth be told when I see one of your\r\n kind with a White Woman it turns my\r\n Stomach.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-35 | OFFICER MULANEY\r\n He could only want one thing.\r\n \r\n RON STALLWORTH\r\n What would that be?\r\n \r\n OFFICER MULANEY\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-36 | RON STALLWORTH\r\n No, I just like my questions to be\r\n answered.\r\n \r\n A VOICE of UNIFORMED COP WHEATON calls from the other side of\r\n the Counter.\r\n \r\n WHEATON (O.... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-37 | Ron walks to the Counter to see The White and sleep-deprived\r\n Cop impatiently leaning on his elbows.\r\n \r\n WHEATON (CONT\'D)\r\n Get me the record for this Toad named\r\n Tippy Birdsong.\r... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-38 | While you\'re at it, why don\'t you\r\n grab another Toad... Steven Wilson.\r\n \r\n Ron pulls the File... another young Black Male, ANOTHER\r\n SEXUAL PREDATOR!\r\n \r\n INT. CSPD HALLWAY - DAY\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-39 | RON STALLWORTH\r\n While I\'ve got you both here. Sirs,\r\n I\'d like to be an Undercover\r\n Detective.\r\n \r\n Chief Bridges and Sgt. Trapp both stop.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-40 | RON STALLWORTH\r\n Whatever Department works, Sir.\r\n \r\n SGT. TRAPP\r\n You just joined The Force, Rookie.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-41 | SGT. TRAPP\r\n Is that right?\r\n \r\n RON STALLWORTH\r\n Well, I\'m young. I think there\'s a\r\n niche for me. Get In where I can Fit\r\n In.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-42 | Sgt. Trapp sees the logic, looks to Chief Bridges, who stops,\r\n considering.\r\n \r\n CHIEF BRIDGES\r\n Think a lot of yourself, don\'t cha?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-43 | Sgt. Trapp reacts knowing Ron shouldn\'t have said that about\r\n the Records Room. CHIEF BRIDGES looks at Ron, matter of fact.\r\n \r\n CHIEF BRIDGES\r\n Well, I think Records is a good place\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-44 | \r\n CHIEF BRIDGES\r\n Keep it. I like the look.\r\n \r\n Chief Bridges walks off without another word. SGT. TRAPP\r\n gives a knowing look to Ron, who watches them walk away.\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-45 | \r\n LANDERS\r\n Need a File on a Toad.\r\n \r\n Ron doesn\'t respond.\r\n \r\n LANDERS (CONT\'D)\r\n You Deaf? I said I ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-46 | RON STALLWORTH\r\n No Toads here.\r\n \r\n LANDERS\r\n Excuse me?\r\n \r\n RON STALLWORTH\r\n I said, I don... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-47 | \r\n Landers scowls. Ron stares back at him, Eye to Eye.\r\n \r\n LANDERS\r\n Heard you think you Hot Shit but you\r\n ain\'t nuthin\' but a Cold Fart. Name\'s\r\n Maurice,... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-48 | The File, throws it down on the Counter as Landers\r\n snatches The File and storms off.\r\n INT. RON\'S APARTMENT - BEDROOM - MORNING\r\n \r\n As Ron sleeps, a phone rings. Ron snaps awake and grabs at\r\n the phone on the night table.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-49 | \r\n RON STALLWORTH\r\n Yes, Chief, I was. Just worked a\r\n Night Shift.\r\n \r\n CHIEF BRIDGES (O.S.)\r\n I changed my mind, you\'re gonna ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-50 | Sharp. Narcotics Division. Wear\r\n Street clothes.\r\n \r\n RON STALLWORTH\r\n Yes Sir, see you then. Thank You.\r\n Thank You.\r\n \r\n Ron si... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-51 | dressed in Bell-Bottoms and a Hip Italian Knit Shirt,\r\n Marshmallow Shoes steps inside the Narcotics office, which is\r\n literally The Basement of The Station. He looks around at The\r\n Area Buzzing with Activity and sees\r\n \r\n ANGLE - UNDERCOVER COPS\r... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-52 | \r\n CLOSE - CHIEF BRIDGES\r\n \r\n waves Ron back to the rear of The Room for privacy.\r\n \r\n CLOSE - FLIP ZIMMERMAN\r\n \r\n FLIP\r\n Rookie, yo... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-53 | again.\r\n \r\n Flip, late 30\'s, long hair, looks like anything but a Cop, he\r\n however is somewhat of a closed-off guy, all business, Ron\r\n sits across from him. Chief Bridges steps before them.\r\n CHIEF BRIDGES (CONT\'D)\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-54 | Ron is surprised at this.\r\n \r\n RON STALLWORTH\r\n The Nightclub?\r\n \r\n CHIEF BRIDGES\r\n No, Emmanuel Missionary Baptist\r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-55 | CHIEF BRIDGES (CONT\'D)\r\n Carmichael is a former High Muckity-\r\n Muck with The Black Panthers and as\r\n far as I\'m concerned, FBI Director J.\r\n Edgar Hoover was dead right when he\r\n said The Black Pan... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-56 | Good\r\n Speaker and we don\'t want this\r\n Carmichael getting into The Minds of\r\n the Black People here in Colorado\r\n Springs and stirring them up.\r\n \r\n Ron\'s face cringes at Chief Bridges... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-57 | Bunch of Subversives and monitor The\r\n Audience reaction to Carmichael. You\r\n ready?\r\n \r\n Flip and Chief Bridges stare at Ron.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-58 | off, as Flip wires a Wireless\r\n Transmitter and Microphone to his body. Another Narcotics\r\n Cop, JIMMY CREEK, 30\'s, observes the installation.\r\n \r\n RON STALLWORTH\r\n Any chance this thing Fucks Up?... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-59 | Then what?\r\n \r\n JIMMY\r\n Just stick to The Game Plan.\r\n \r\n RON STALLWORTH\r\n Which is?\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-60 | some\r\n Big Bust. We just want some Intel,\r\n that\'s it.\r\n \r\n JIMMY\r\n What happens if someone offers you a\r\n Marijuana Cigarette?\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-61 | JIMMY\r\n Yeah.\r\n \r\n RON STALLWORTH\r\n "Soul Brother, I\'m already High on\r\n Life. Can you Dig It?"\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-62 | \r\n Ron is caught off guard.\r\n \r\n RON STALLWORTH\r\n You expecting that?\r\n \r\n Flip pulls his Gun.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-63 | \r\n RON STALLWORTH\r\n Blood, get that Gun out my face.\r\n Peace Love and Soul.\r\n \r\n FLIP\r\n Gun is still in your face.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-64 | I de-escalate. Talk calmly, firmly.\r\n Find a way out of there, A-Sap.\r\n \r\n Jimmy nods, satisfied. Flip is finished with The Wiring. Ron\r\n takes a deep breath.\r\n \r\n FLIP\r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-65 | RON STALLWORTH\r\n Can I order a Drink at The Bar?\r\n \r\n Flip steps away, no comment.\r\n \r\n JIMMY\r\n That\'s fine, just don\'t get Shit\r\n F... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-66 | \r\n RON STALLWORTH\r\n I got it. I\'m gone.\r\n \r\n Jimmy laughs, Slaps Ron on the back.\r\n \r\n EXT. CITY STREET - OUTSKIRTS OF DOWNTOWN - NIGHT\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-67 | that Bottlenecks into The Club with the Sign: \r\n \r\n CLOSE SIGN - BELL\'S NIGHTINGALE\r\n \r\n ANGLE - TONIGHT: KWAME TURE SPEAKS\r\n \r\n Ron walks to the back of the line. He becomes an Every\r\n Brother slo... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-68 | a Hip array of\r\n Militant wear, Black Leather Jacket, Love Beads but on her it\r\n looks fantastic. Ron is taken by her Beauty, he watches as\r\n she monitors the door, clearly in charge.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-69 | I\'m doing fine, my Brother. This is\r\n going to be an Amazing Night.\r\n \r\n RON STALLWORTH\r\n Indeed it is.\r\n \r\n PATRICE\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-70 | RON STALLWORTH\r\n Who?\r\n \r\n PATRICE\r\n Kwame Ture.\r\n \r\n RON STALLWORTH\r\n Actually, I haven\'t,... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-71 | PATRICE\r\n Yes, after he moved to Africa. He\r\n took the names of Kwame Nkrumah of\r\n Ghana and his Mentor Sekou Toure of\r\n Guinea to honor The Great Leaders.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-72 | \r\n PATRICE\r\n The Colorado College Black Student\r\n Union invited Brother Ture.\r\n \r\n RON STALLWORTH\r\n I can dig it. I can ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-73 | I\'m The President.\r\n \r\n RON STALLWORTH\r\n Right On. Right On.\r\n \r\n INT. BELL\'S NIGHTINGALE - NIGHT\r\n \r\n The Club is PACKED, a Sea of Black Faces... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-74 | to The Bar and signals The BARTENDER JABBO, 60\'s,\r\n Black.\r\n RON STALLWORTH\r\n Rum and Coke with Lime.\r\n \r\n As Jabbo makes his Drink, something catches Ron\'s Eye.\r\n Patrice exits throug... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-75 | Ron on his feet, Black Fist in the air with The Crowd.\r\n Patrice on Stage with Kwame Ture with her Fist raised too.\r\n The Shouting and Chanting finally cease, as Patrice speaks.\r\n \r\n PATRICE\r\n The ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-76 | some Black\r\n Love to The One and Only, The Former\r\n Prime Minister of The Black Panther\r\n Party, The Brother Man with The Plan\r\n who\'s stickin\'it to the Man, put your\r\n Hands together my People... f... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-77 | as Patrice and Kwame hug. Patrice sits on Stage with Odetta\r\n and Hakeem.\r\n \r\n Kwame soaks in the Crowd\'s reaction, until...\r\n \r\n KWAME TURE\r\n Thank you all for coming o... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-78 | \r\n towering at Six Feet-Four with an infectious smile and\r\n Flawless Dark Skin, he\'s oozing Charisma out of every pore.\r\n He stands behind a small podium.\r\n \r\n KWAME TURE (CONT\'D)\r\n ...I\'m here to t... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-79 | (CONT\'D)\r\n It is time for you to understand that\r\n you as The growing Intellectuals of\r\n this Country, you must define Beauty\r\n for Black People, Now that\'s Black\r\n Power.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-80 | \r\n KWAME TURE\r\n Is Beauty defined by someone with a\r\n Narrow Nose? Thin Lips? White Skin?\r\n You ain\'t got none of that. If your\r\n Lips are Thick, Bite them in. Hold\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-81 | \r\n KWAME TURE (CONT\'D)\r\n Your Nose is Boss, your Lips are\r\n Thick, your skin is Black, you are\r\n Black and you are Beautiful!\r\n \r\n Everyone cheers including Ron!\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-82 | since they hate us, we hate\r\n ourselves. You dig Tarzan? I remember\r\n that when I was a Boy I used to go\r\n see Tarzan Movies on Saturdays. I\r\n loved me some Jane too. Jane was A\r\n Fine White Woman. Wh... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-83 | I was saying: "Kill Me." It was as if\r\n a Jewish Boy watched Nazis taking\r\n Jews off to Concentration Camps and\r\n cheered them on. Today, I want The\r\n Chief to beat The Hell out of Tarzan\r\n and send h... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-84 | Lie:\r\n that Black People inherently can\'t do\r\n the same things White People can do\r\n unless White People help them.\r\n The Audience laughing, overwhelmed, shouting back support! A\r\n ROAR from The Crowd. Ron finds himself clapp... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-85 | \r\n KWAME TURE (CONT\'D)\r\n If a White Man wants to Lynch Me,\r\n that\'s his Problem. If he\'s got The\r\n Power to Lynch Me, that\'s My Problem.\r\n Racism is not a question of At... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-86 | KWAME TURE (CONT\'D)\r\n The vast majority of Negroes in this\r\n Country live in Captive Communities\r\n and must endure their conditions of\r\n Oppression because and only because\r\n they are ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-87 | without retribution. The War in\r\n Vietnam is Illegal and Immoral. I\'d\r\n rather see a Brother Kill a Cop than\r\n Kill a Vietnamese. At least he\'s got\r\n a reason for Killing The Cop. When\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-88 | a reason.\r\n \r\n Another Applause Break.\r\n \r\n CLOSE - RON\r\n \r\n Ron listens, challenged, torn.\r\n \r\n INT. BELL\'S NIGHTINGALE - NIGHT\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-89 | \r\n sits, claps vigorously, as if forgetting he is Undercover...\r\n \r\n CLOSE - KWAME\r\n KWAME TURE (CONT\'D)\r\n In closing I know it\'s getting late,\r\n may I leave you Sista\'s and Broth... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-90 | when? And if not you, who?" We need\r\n an Undying Love for Black People\r\n wherever We may be. Good Night and\r\n POWER TO THE PEOPLE, POWER TO THE\r\n PEOPLE.\r\n \r\n The BLACK MASS STA... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-91 | ALL POWER TO ALL THE PEOPLE\r\n ALL POWER TO ALL THE PEOPLE\r\n \r\n Caught up in the moment, Ron gathers himself, as if\r\n remembering why he is here. Kwame takes Patrice\'s Hand and\r\n raises it in Celebration and Unity!\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-92 | smitten.\r\n \r\n Ron watches as he finally reaches Kwame, shaking his hand.\r\n \r\n RON STALLWORTH\r\n Brother Ture, do you really think a\r\n War between The B... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-93 | \r\n Flip and Jimmy wearing Headphones listening react to ear-\r\n splitting Audio feedback.\r\n \r\n INT. BELL\'S NIGHTINGALE - NIGHT\r\n \r\n Ron stands mid-grip with Kwame. Nerves pinballing. Kwame\r\n lowers his voi... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
fb29d60ea563-94 | The Revolution is coming. We must\r\n pick up a Gun and prepare\r\n ourselves...Trust me, it is coming.\r\n \r\n Kwame pulls back. Returns to his normal speaking voice.\r\n KWAME TURE (CONT\'D)\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.