Skip to content

Instantly share code, notes, and snippets.

@tomoyanonymous
Last active October 2, 2018 17:30
Show Gist options
  • Save tomoyanonymous/d7eaf491479b85147f32f6f22da5cf95 to your computer and use it in GitHub Desktop.
Save tomoyanonymous/d7eaf491479b85147f32f6f22da5cf95 to your computer and use it in GitHub Desktop.
Scrapism Week3
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Dictionary\n",
"## Create Dictionary"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"# create dictionary\n",
"person = { #pair of key(string) and value\n",
" \"first_name\":\"Karl\",\n",
" \"last_name\":\"Marx\",\n",
" \"age\":235,\n",
" \"favorite_books\":[\"Ethics by Spinoza\",\"Twilight\"], # For value, any type, also list is capable\n",
" \"pet\":{ # Also dictionary can be nestted\n",
" \"name\":\"Proleterry\",\n",
" \"species\":\"parrot\",\n",
" \"age\":12\n",
" }\n",
" \n",
" }"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Get keys"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Karl\n"
]
}
],
"source": [
"# get keys\n",
"print(person.get(\"first_name\"))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Access to Values"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Karl Marx is 235 years old.\n",
"His pet isparrot Proleterry, 12 years old. \n",
"His favorite books areEthics by Spinoza and Twilight\n"
]
}
],
"source": [
"#access inside\n",
"print(person[\"first_name\"]+\" \"+person[\"last_name\"]+\" is \"+ str(person[\"age\"])+\" years old.\" + \"\\nHis pet is\"+\n",
" person[\"pet\"][\"species\"]+\" \"+person[\"pet\"][\"name\"]+\", \"+str(person[\"pet\"][\"age\"])+\n",
" \" years old. \\nHis favorite books are\"+ \" and \".join(person[\"favorite_books\"]) )"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Overwrite Value, Create new key"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'first_name': 'K@rl', 'last_name': 'Marx', 'age': 235, 'favorite_books': ['Ethics by Spinoza', 'Twilight'], 'pet': {'name': 'Proleterry', 'species': 'parrot', 'age': 12}, 'middle_name': 'Terry'}\n"
]
}
],
"source": [
"person[\"first_name\"] = \"K@rl\"\n",
"person[\"middle_name\"] = \"Terry\"\n",
"print(person)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Iterate"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"first_name K@rl\n",
"last_name Marx\n",
"age 235\n",
"favorite_books ['Ethics by Spinoza', 'Twilight']\n",
"pet {'name': 'Proleterry', 'species': 'parrot', 'age': 12}\n",
"middle_name Terry\n"
]
}
],
"source": [
"for key in person:\n",
" print(key,person[key]) # take care to order(they are usually unsorted)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# HTML and Python\n",
"## test inside browser inspector\n",
"```js\n",
"//at console in inspector(This is Javascript code!)\n",
"var tags = document.querySelectorAll(\".csstag\");\n",
"//or\n",
"var tags = document.getElementsByClassName(\"classname\");\n",
"for(var i=0;i<tag.length();i++){tags[i].innerText}\n",
"//...\n",
"```\n",
"## Requests-HTML\n",
"```bash\n",
"pip3 install requests-html\n",
"#sometimes permission error occurs\n",
"pip3 install --user requests-html\n",
"#or\n",
"sudo -H pip3 install --user requests-html\n",
"```\n",
"## Import library"
]
},
{
"cell_type": "code",
"execution_count": 54,
"metadata": {},
"outputs": [],
"source": [
"from requests_html import HTMLSession\n",
"import time #to use sleep function"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<Response [200]>\n"
]
}
],
"source": [
"session = HTMLSession();\n",
"r= session.get(\"https://newyork.craigslist.org/d/missed-connections/search/mis\")\n",
"print(r)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Response 200 means that download is correctly finished."
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"new york missed connections - craigslist\n",
"<!-- var areaCountry = \"US\"; var areaID = \"3\"; var areaRegion = \"NY\"; var catAbb = \"mis\"; var countOfTotalText = \"image {count} of {total}\"; var currencySymbol = \"&#x0024;\"; var defaultView = \"list\"; var expiredFavIDs = null; var imageConfig = {\"1\":{\"hostname\":\"https://images.craigslist.org\",\"sizes\":[\"50x50c\",\"300x300\",\"600x450\",\"1200x900\"]},\"0\":{\"hostname\":\"https://images.craigslist.org\",\"sizes\":[\"50x50c\",\"300x300\",\"600x450\"]},\"2\":{\"hostname\":\"https://images.craigslist.org\",\"sizes\":[\"50x50c\",\"300x300\",\"600x450\",\"1200x900\"]}}; var lessInfoText = \"less info\"; var maptileBaseUrl = \"//map{s}.craigslist.org/t09/{z}/{x}/{y}.png\"; var maxResults = 3000; var noImageText = \"no image\"; var pID = null; var postalLat = null; var postalLon = null; var purveyorCategories = null; var searchDistance = null; var sectionAbb = \"ccc\"; var sectionBase = \"ccc\"; var showInfoText = \"show info\"; var showMapTabs = 1; var showingBanished = 0; var showingFavorites = 0; var starHint = \"save this post in your favorites list\"; var subarea = null; var zoomToPosting = null; -->\n",
"<!-- function C(k){return(document.cookie.match('(^|; )'+k+'=([^;]*)')||0)[2]} var pagetype, pagemode; (function(){ var h = document.documentElement; h.className = h.className.replace('no-js', 'js'); var b = document.body; var bodyClassList = b.className.split(/\\s+/);; pagetype = bodyClassList[0]; // dangerous assumption var fmt = C('cl_fmt'); if ( fmt === 'regular' || fmt === 'mobile' ) { pagemode = fmt; } else if (screen.width <= 480) { pagemode = 'mobile'; } else { pagemode = 'regular'; } pagemode = pagemode === 'mobile' ? 'mobile' : 'desktop'; bodyClassList.push(pagemode); if (C('hidesearch') === '1' && pagemode !== 'mobile') { bodyClassList.push('hide-search'); } var width = window.innerWidth || document.documentElement.clientWidth; if (width > 1000) { bodyClassList.push('w1024'); } if (typeof window.sectionBase !== 'undefined') { var mode = (decodeURIComponent(C('cl_tocmode') || '').match(new RegExp(window.sectionBase + ':([^,]+)', 'i')) || {})[1] || window.defaultView; if (mode) { bodyClassList.push(mode); } } b.className = bodyClassList.join(' '); }()); -->\n",
"CL\n",
"new york\n",
"new york\n",
"albany, NY\n",
"allentown\n",
"altoona\n",
"annapolis\n",
"baltimore\n",
"binghamton\n",
"boston\n",
"cape cod\n",
"catskills\n",
"central NJ\n",
"cumberland val\n",
"delaware\n",
"eastern CT\n",
"eastern shore\n",
"eastern WV\n",
"elmira\n",
"finger lakes\n",
"frederick\n",
"glens falls\n",
"harrisburg\n",
"hartford\n",
"hudson valley\n",
"ithaca\n",
"jersey shore\n",
"lancaster, PA\n",
"long island\n",
"new haven\n",
"north jersey\n",
"northwest CT\n",
"oneonta\n",
"philadelphia\n",
"poconos\n",
"reading\n",
"rhode island\n",
"scranton\n",
"south coast\n",
"south jersey\n",
"southern MD\n",
"state college\n",
"syracuse\n",
"utica\n",
"washington, DC\n",
"western mass\n",
"williamsport\n",
"worcester\n",
"york, PA\n",
">\n",
"all new york\n",
"bronx\n",
"brooklyn\n",
"fairfield\n",
"long island\n",
"manhattan\n",
"new jersey\n",
"queens\n",
"staten island\n",
"westchester\n",
">\n",
"community\n",
"events\n",
"for sale\n",
"gigs\n",
"housing\n",
"jobs\n",
"resumes\n",
"services\n",
">\n",
"all\n",
"activity partners\n",
"artists\n",
"childcare\n",
"general\n",
"groups\n",
"local news and views\n",
"lost & found\n",
"missed connections\n",
"musicians\n",
"pets\n",
"politics\n",
"rants & raves\n",
"rideshare\n",
"volunteers\n",
"missed connections >\n",
"post\n",
"account\n",
"0 favorites\n",
"0 hidden\n",
"CL\n",
"new york > missed connections\n",
"...\n",
"«»\n",
"press to search craigslist\n",
"save search\n",
"optionsclose\n",
"missed connections\n",
"search titles only\n",
"has image\n",
"posted today\n",
"bundle duplicates\n",
"include nearby areas\n",
"albany, NY (alb)\n",
"altoona-johnstown (aoo)\n",
"annapolis, MD (anp)\n",
"baltimore, MD (bal)\n",
"belleville, ON (bel)\n",
"binghamton, NY (bgm)\n",
"boston (bos)\n",
"buffalo, NY (buf)\n",
"cape cod / islands (cap)\n",
"catskills (cat)\n",
"central NJ (cnj)\n",
"charlottesville, VA (uva)\n",
"chautauqua, NY (chq)\n",
"cornwall, ON (ycc)\n",
"cumberland valley (cbg)\n",
"delaware (dlw)\n",
"eastern CT (nlo)\n",
"eastern panhandle (ewv)\n",
"eastern shore (esh)\n",
"elmira-corning (elm)\n",
"finger lakes, NY (fgl)\n",
"frederick, MD (fdk)\n",
"fredericksburg, VA (ezf)\n",
"glens falls, NY (gfl)\n",
"harrisburg, PA (hrs)\n",
"harrisonburg, VA (shd)\n",
"hartford, CT (htf)\n",
"hudson valley, NY (hud)\n",
"ithaca, NY (ith)\n",
"jersey shore (jys)\n",
"kingston, ON (kng)\n",
"lancaster, PA (lns)\n",
"lehigh valley (alt)\n",
"long island, NY (isp)\n",
"new hampshire (nhm)\n",
"new haven, CT (hvn)\n",
"norfolk / hampton roads (nfk)\n",
"north jersey (njy)\n",
"northwest CT (nct)\n",
"oneonta, NY (onh)\n",
"philadelphia (phi)\n",
"plattsburgh-adirondacks (plb)\n",
"poconos (poc)\n",
"potsdam-canton-massena (ptd)\n",
"reading, PA (rea)\n",
"rhode island (prv)\n",
"richmond, VA (ric)\n",
"rochester, NY (rcs)\n",
"scranton / wilkes-barre (avp)\n",
"south coast, MA (sma)\n",
"south jersey (snj)\n",
"southern maryland (smd)\n",
"state college, PA (psu)\n",
"syracuse, NY (syr)\n",
"twin tiers NY/PA (tts)\n",
"utica-rome-oneida (uti)\n",
"vermont (brl)\n",
"washington, DC (wdc)\n",
"watertown, NY (wtn)\n",
"western maryland (wmd)\n",
"western massachusetts (wma)\n",
"williamsport, PA (wpt)\n",
"winchester, VA (okv)\n",
"worcester / central MA (wor)\n",
"york, PA (yrk)\n",
"+ show 65 more...\n",
"miles from zip\n",
"reset update search\n",
"list\n",
"thumb\n",
"gallery\n",
"map\n",
"newest\n",
"displaying ... postings << << < prev < prev 1 - 120 / 292 next > next >\n",
"see in map view\n",
"No mappable items found\n",
"close fullscreen\n",
"close map\n",
"favorite this post Oct 2 Dad/psychologist in coffee shop this morning (East Village) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 If You Are Missing The Connections Made Thru Casu al En counters map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Open House M4M (Midtown East) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Freddie in Marble Hill (Marble Hill) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Lord and Taylor (Stamford) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Looking for That Female who Gave Great Massages Lost Contact (bronx) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Hey Jeff map hide this posting restore restore this posting\n",
"favorite this post Oct 2 beautiful girl with green top on the A (Brooklyn) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Beautiful Black Female Cyclist (Coney Island Boardwalk) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 John in the Avalon Valley Apartments (Danbury Connecticut) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Mature male seeking to meet same (Lindenhurst) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Construction Worker at Myrtle m4m map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Looking for African Senegal guy-We met before (Brooklyn) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Kaffe 1668 Around 4PM - You had a Team USA pack + holding pillows (Gramercy) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 gym fun (Midtown East) map hide this posting restore restore this posting\n",
"favorite this post Oct 2 Skater going towards F Train York Street map hide this posting restore restore this posting\n",
"favorite this post Oct 1 \"Adventurous Discreets\" (Uniondale/Hempstead) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 tonight in chelsea - crosswalk in front of lowes (Chelsea) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 hoping to reconnect w/ital str8 dude w/gf: u live right near Ast. Park (Astoria Park) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Mennen/Menan/Menin from High School (Yonkers) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Airplane / flight to chicago - Liz (airplane) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 I thought you and your rhinestone pin were cute (m4m) (2/3 train, Boro Hall to Wall St.) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 plaid shirt walking on 70th street (Upper West Side) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Beautiful girl in Artichoke Pizza BK (Park slope BK) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Bike Riding/Museum Visiting/City Exploration (Battery Park) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 M4m Chris with size 12 feet (Penn station) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Bubby's (TriBeCa) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Sonia Rivera (Bronx) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 same flight, twice in one weekend (NYC) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Looking for KLove (Flushing) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Equinox map hide this posting restore restore this posting\n",
"favorite this post Oct 1 VERG 4th Ave (Park Slope) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 White Mustang Florida plates, blonde (Deer Park) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Sonia Rivera (Bronx) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Man on the 7 train this afternoon map hide this posting restore restore this posting\n",
"favorite this post Oct 1 skater boy (cooper park) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 w4m Art Students League / G to E Train crush :) (G Train to Court Sq) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 w4m Art Students League / G to E Train crush :) (Midtown) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Corner of metropolitan ave and ...... m4m (williamsburg , Graham ave) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Curly Red Head head with mother map hide this posting restore restore this posting\n",
"favorite this post Oct 1 CVS MCLEAN AVE (YONKERS) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Ella from flight to jfk (Midtown) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Flatiron equinox (Flatiron) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Jahira map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Target - orange (Orange) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Cunningham Park (Queens) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 M/M We Met at E59-Lex (Midtown East) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Columbia University Women. (Upper East Side) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 manhattan teacher on cam site map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Jayme Riding Uber (Upper east side) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Saw you at Home Depot m4m (Yonkers) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Black top white shorts (Brooklyn output) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Starbucks myrtle &wycoff m4m map hide this posting restore restore this posting\n",
"favorite this post Oct 1 John with size 13 feet (m4m) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 For \"Lisa D\" who was seeking...M4W (NY) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Sassy and Classy Boot Wearing Woman in Brooklyn M4W (NYC) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 J.P. M4M (East Village) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 LIRR Huntington branch (9/15) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 711/Laundromat - E Tremont (m4m) (Throggs Neck) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 R train this morning female who made eye contact I had grey yankee (Brookkyn) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 cute brunette on A train at 14th street (manhattan) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Saturday at Belmont Park (Elmont) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 stacey in west village. we used to get high and fool around (manhattan) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 John 390 wythe- w4m (Williamsburg) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 John 390 wythe - w4m (Williamsburg) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 I noticed you (New York) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Landscaper in a white Ford transit (Yaphank) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Korean woman in black/ Pratt student? (Classon g train) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 I know you notice me noticing you (Upper East Side) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Asian? Filipino? (63rd ave) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Megan, Anthology Film Archives (East Village) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Looking For Alexandra From Coop City (bronx) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 Mature Black Guy from East Harlem (East Harlem) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 F TRAIN Carroll St (brooklyn) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 BERGEN ST F TRAIN (BROOKLYN) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 To the woman I walked halfway home (m4w) (Kensington) map hide this posting restore restore this posting\n",
"favorite this post Oct 1 walking our dogs across Bedford Ave at night (Crown Heights) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Cindy Where Did You Go? (Eastchester) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 ODEON m4m 9/29 map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Beautiful brunette Amoco on Northern/Nassau Rd You held the door forme (Queens) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Crunch Locker Room (Chelsea) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Brandon? Downtown 1 train getting off at Houston to meet a friend (Greenwich Village) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Stuck in Traffic (Canal Street) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Why can't I find.... (Nassau) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Dollar Tree map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Music Recording and Photography Studio (Queens) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 72nd street stop, uptown 1 (Upper West Side) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 🎼What Were You Singing 🎶 (24th Street Sunset Park) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 M15 downtown bus, Sunday afternoon (w4m) (Midtown East) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 64th st and Grand Ave (Maspeth) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Grey T-shirt black Herschel bag downtown 6 (New York) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Shane on the Amtrak from Hudson. (Penn Station) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 AUNTIE ANNE'S Atlantic Mall 5:55PM ish (ATLANTIC MALL) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Cute, attractive woman at the Empire Diner in Chelsea yesterday (m4w) (Chelsea) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Danielle C (Queens) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 It's a natural thing (Shelton) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Construction Worker at Myrtle m4m (Brooklyn) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Richard from Equinox (TriBeCa) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Uptown 4, Bronx confusion, red suitcase! (Moshulu pk) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Crown Fried Chicken (Malcom X / Hancock) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 English processor of last winter (Upper West Side) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Barcelona to JFK flight chat by the BR (I'm Astoria, You are Bayside) (Bayside) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 lisa in east village....we used to get high and hook up (manhattan) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 cute brunette on A train at 14th street (manhattan) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Yellow tank, blonde dude (Starbucks Kaufman Astoria) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Emma Kihi? map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Miami to JFK map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Cute Bartender at Bar None on 3rd (East Village) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Your young California straight boy (Greenwich Village) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Chi-quita (Bronx) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Boardwalk (Long beach) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 CUTE BLONDE UNION SQUARE (m4w) (Union Square) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Looking for an old friend (Mapes Ave) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Dragcon bathroom saturday (Midtown West) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Young woman on Flatbush ave. (Prospect heights) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 looking for Patrick and Dominick from CL (Chelsea) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Park Slope on 7th avenue (m4w) (Park Slope) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 you very nice man in the Q train (Union Square) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 At NYSC IN MAHOPAC (Mahopac) map hide this posting restore restore this posting\n",
"favorite this post Sep 30 Met you in china town (SoHo) map hide this posting restore restore this posting\n",
"^ back to top\n",
"^ back to top\n",
"displaying ... postings << << < prev < prev 1 - 120 / 292 next > next >\n",
"favorited no longer favorited hidden no longer hidden\n",
"RSS (?)\n",
"\n",
"© craigslistCL\n",
"help\n",
"safety\n",
"privacy\n",
"feedback\n",
"cl jobs\n",
"termsnew\n",
"about\n",
"mobile\n",
"desktop\n",
"<\n",
">\n",
"<!-- var iframe = document.createElement('iframe'); iframe.style.display = 'none'; iframe.src = '//www.' + CL.url.baseDomain + '/static/localstorage.html?v=51a29e41f8e978141e4085ed4a77d170'; document.body.insertBefore(iframe, null); --> <li class=\"posting {visited}\" data-pid=\"{PostingID}\"> <img src=\"{ImageThumb}\"> <div class=\"housing_bubble_banner\"> <span class=\"{hasPrice}price\">{currencySymbol}{Ask}</span> <span class=\"bedrooms\">{BedroomsContent}</span> <span class=\"postingtitle\"><a>{PostingTitle}</a></span> <span class=\"js-only map-banish-unbanish\" data-pid=\"{PostingID}\"> <span class=\"banish\"> <span class=\"icon icon-trash\" role=\"button\"></span> <span class=\"screen-reader-text\">hide this posting</span> </span> <span class=\"unbanish\"> <span class=\"icon icon-trash red\" role=\"button\"></span> unhide </span> </span> </div> </li> <div class=\"viewcontainer pics loading\"> <div class=\"backtolist\"> &laquo; back to posting list </div> <div class=\"title\"> <span class=\"icon icon-star\" data-pid=\"{PostingID}\" role=\"button\"> <span class=\"screen-reader-text\">favorite this post</span> </span> <span class=\"postingtitle\"> <a href=\"{PostingURL}\" target=\"_blank\">{PostingTitle}</a> </span> <div> <span class=\"{hasPrice}price\">{currencySymbol}{Ask}</span> <span class=\"bedrooms\">{BedroomsContent}</span> <span class=\"js-only map-banish-unbanish\" data-pid=\"{PostingID}\"> <span class=\"banish\"> <span class=\"icon icon-trash\" role=\"button\"></span> <span class=\"screen-reader-text\">hide this posting</span> </span> <span class=\"unbanish\"> <span class=\"icon icon-trash red\" role=\"button\"></span> <span class=\"screen-reader-text\">unhide</span> unhide </span> </span> </div> </div> <hr style=\"clear:both\"> <div class=\"picscontainer gallery\"> <span class=\"slider-back arrow\">&lt;</span><span class=\"slider-info\"></span><span class=\"slider-forward arrow\">&gt;</span> <div class=\"swipe\"> <div class=\"swipe-wrap\"> <img class=\"loading\" src=\"//www.craigslist.org/images/animated-spinny.gif\" alt=\"\"> </div> </div> </div> <div class=\"infocontainer\"></div> <hr style=\"clear:both\"> <div class=\"timecontainer\"></div> <a class=\"viewpostinglink\" href=\"{PostingURL}\" target=\"_blank\">view posting</a> <div class=\"contenttoggle\"> <a class=\"moreinfo\">more info</a> <a class=\"showpics\">show images</a> </div> </div> <div id=\"mapbubble\" class=\"posting\"> <ul id=\"clusterbubble\"></ul> <div id=\"postbubble\"></div> </div>\n"
]
}
],
"source": [
"# see html inside\n",
"print(r.html.text)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Scrape it!"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Dad/psychologist in coffee shop this morning https://newyork.craigslist.org/mnh/mis/d/dad-psychologist-in-coffee/6712852882.html\n",
"If You Are Missing The Connections Made Thru Casu al En counters https://newyork.craigslist.org/mnh/mis/d/if-you-are-missing-the/6712831595.html\n",
"Open House M4M https://newyork.craigslist.org/mnh/mis/d/open-house-m4m/6712820738.html\n",
"Freddie in Marble Hill https://newyork.craigslist.org/brx/mis/d/freddie-in-marble-hill/6712819171.html\n",
"Lord and Taylor https://newyork.craigslist.org/fct/mis/d/lord-and-taylor/6712780929.html\n",
"Looking for That Female who Gave Great Massages Lost Contact https://newyork.craigslist.org/brx/mis/d/looking-for-that-female-who/6712794262.html\n",
"Hey Jeff https://newyork.craigslist.org/mnh/mis/d/hey-jeff/6710882200.html\n",
"beautiful girl with green top on the A https://newyork.craigslist.org/brk/mis/d/beautiful-girl-with-green-top/6712787453.html\n",
"Beautiful Black Female Cyclist (Coney Island Boardwalk) https://newyork.craigslist.org/brk/mis/d/beautiful-black-female/6707870659.html\n",
"John in the Avalon Valley Apartments https://newyork.craigslist.org/fct/mis/d/john-in-the-avalon-valley/6712740921.html\n",
"Mature male seeking to meet same https://newyork.craigslist.org/lgi/mis/d/mature-male-seeking-to-meet/6712739034.html\n",
"Construction Worker at Myrtle m4m https://newyork.craigslist.org/brk/mis/d/construction-worker-at-myrtle/6712689899.html\n",
"Looking for African Senegal guy-We met before https://newyork.craigslist.org/brk/mis/d/looking-for-african-senegal/6701021855.html\n",
"Kaffe 1668 Around 4PM - You had a Team USA pack + holding pillows https://newyork.craigslist.org/mnh/mis/d/kaffe-1668-around-4pm-you-had/6712692939.html\n",
"gym fun https://newyork.craigslist.org/mnh/mis/d/gym-fun/6712657295.html\n",
"Skater going towards F Train York Street https://newyork.craigslist.org/brk/mis/d/skater-going-towards-train/6712680069.html\n",
"\"Adventurous Discreets\" https://newyork.craigslist.org/lgi/mis/d/adventurous-discreets/6712667488.html\n",
"tonight in chelsea - crosswalk in front of lowes https://newyork.craigslist.org/mnh/mis/d/tonight-in-chelsea-crosswalk/6712673686.html\n",
"hoping to reconnect w/ital str8 dude w/gf: u live right near Ast. Park https://newyork.craigslist.org/que/mis/d/hoping-to-reconnect-ital-str8/6710268278.html\n",
"Mennen/Menan/Menin from High School https://newyork.craigslist.org/wch/mis/d/mennen-menan-menin-from-high/6712662721.html\n",
"Airplane / flight to chicago - Liz https://newyork.craigslist.org/mnh/mis/d/airplane-flight-to-chicago-liz/6712654679.html\n",
"I thought you and your rhinestone pin were cute (m4m) https://newyork.craigslist.org/brk/mis/d/thought-you-and-your/6712630388.html\n",
"plaid shirt walking on 70th street https://newyork.craigslist.org/mnh/mis/d/plaid-shirt-walking-on-70th/6712637528.html\n",
"Beautiful girl in Artichoke Pizza BK https://newyork.craigslist.org/brk/mis/d/beautiful-girl-in-artichoke/6712632061.html\n",
"Bike Riding/Museum Visiting/City Exploration https://newyork.craigslist.org/mnh/mis/d/bike-riding-museum-visiting/6709701899.html\n",
"M4m Chris with size 12 feet https://newyork.craigslist.org/que/mis/d/m4m-chris-with-size-12-feet/6710356092.html\n",
"Bubby's https://newyork.craigslist.org/mnh/mis/d/bubbys/6712606005.html\n",
"Sonia Rivera https://newyork.craigslist.org/fct/mis/d/sonia-rivera/6712528176.html\n",
"same flight, twice in one weekend https://newyork.craigslist.org/mnh/mis/d/same-flight-twice-in-one/6712566092.html\n",
"Looking for KLove https://newyork.craigslist.org/que/mis/d/looking-for-klove/6712497949.html\n",
"Equinox https://newyork.craigslist.org/mnh/mis/d/equinox/6712517709.html\n",
"VERG 4th Ave https://newyork.craigslist.org/brk/mis/d/verg-4th-ave/6712554060.html\n",
"White Mustang Florida plates, blonde https://newyork.craigslist.org/lgi/mis/d/white-mustang-florida-plates/6712529066.html\n",
"Sonia Rivera https://newyork.craigslist.org/brx/mis/d/sonia-rivera/6712382816.html\n",
"Man on the 7 train this afternoon https://newyork.craigslist.org/que/mis/d/man-on-the-7-train-this/6712474715.html\n",
"skater boy https://newyork.craigslist.org/brk/mis/d/skater-boy/6712468370.html\n",
"w4m Art Students League / G to E Train crush :) https://newyork.craigslist.org/brk/mis/d/w4m-art-students-league-to/6706133745.html\n",
"w4m Art Students League / G to E Train crush :) https://newyork.craigslist.org/mnh/mis/d/w4m-art-students-league-to/6706146495.html\n",
"Corner of metropolitan ave and ...... m4m https://newyork.craigslist.org/brk/mis/d/corner-of-metropolitan-ave/6712447699.html\n",
"Curly Red Head head with mother https://newyork.craigslist.org/lgi/mis/d/curly-red-head-head-with/6712420226.html\n",
"CVS MCLEAN AVE https://newyork.craigslist.org/wch/mis/d/cvs-mclean-ave/6712382001.html\n",
"Ella from flight to jfk https://newyork.craigslist.org/mnh/mis/d/ella-from-flight-to-jfk/6712398297.html\n",
"Flatiron equinox https://newyork.craigslist.org/mnh/mis/d/flatiron-equinox/6712412813.html\n",
"Jahira https://newyork.craigslist.org/fct/mis/d/jahira/6712391304.html\n",
"Target - orange https://newyork.craigslist.org/fct/mis/d/target-orange/6710578587.html\n",
"Cunningham Park https://newyork.craigslist.org/que/mis/d/cunningham-park/6712357906.html\n",
"M/M We Met at E59-Lex https://newyork.craigslist.org/mnh/mis/d/m-we-met-at-e59-lex/6712339593.html\n",
"Columbia University Women. https://newyork.craigslist.org/mnh/mis/d/columbia-university-women/6712323071.html\n",
"manhattan teacher on cam site https://newyork.craigslist.org/mnh/mis/d/manhattan-teacher-on-cam-site/6712311750.html\n",
"Jayme Riding Uber https://newyork.craigslist.org/mnh/mis/d/jayme-riding-uber/6712305428.html\n",
"Saw you at Home Depot m4m https://newyork.craigslist.org/wch/mis/d/saw-you-at-home-depot-m4m/6712236212.html\n",
"Black top white shorts https://newyork.craigslist.org/brk/mis/d/black-top-white-shorts/6712218729.html\n",
"Starbucks myrtle &wycoff m4m https://newyork.craigslist.org/brk/mis/d/starbucks-myrtle-wycoff-m4m/6712218383.html\n",
"John with size 13 feet (m4m) https://newyork.craigslist.org/mnh/mis/d/john-with-size-13-feet-m4m/6712238167.html\n",
"For \"Lisa D\" who was seeking...M4W https://newyork.craigslist.org/mnh/mis/d/for-lisa-who-was-seekingm4w/6712198780.html\n",
"Sassy and Classy Boot Wearing Woman in Brooklyn M4W https://newyork.craigslist.org/brk/mis/d/sassy-and-classy-boot-wearing/6704746062.html\n",
"J.P. M4M https://newyork.craigslist.org/mnh/mis/d/jp-m4m/6712124332.html\n",
"LIRR Huntington branch (9/15) https://newyork.craigslist.org/lgi/mis/d/lirr-huntington-branch-9-15/6712129845.html\n",
"711/Laundromat - E Tremont (m4m) https://newyork.craigslist.org/brx/mis/d/711-laundromat-tremont-m4m/6697340257.html\n",
"R train this morning female who made eye contact I had grey yankee https://newyork.craigslist.org/brk/mis/d/train-this-morning-female-who/6712094722.html\n",
"cute brunette on A train at 14th street https://newyork.craigslist.org/mnh/mis/d/cute-brunette-on-train-at/6712070040.html\n",
"Saturday at Belmont Park https://newyork.craigslist.org/que/mis/d/saturday-at-belmont-park/6712083913.html\n",
"stacey in west village. we used to get high and fool around https://newyork.craigslist.org/mnh/mis/d/stacey-in-west-village-we/6707875698.html\n",
"John 390 wythe- w4m https://newyork.craigslist.org/brk/mis/d/john-390-wythe-w4m/6704948142.html\n",
"John 390 wythe - w4m https://newyork.craigslist.org/brk/mis/d/john-390-wythe-w4m/6704945334.html\n",
"I noticed you https://newyork.craigslist.org/brk/mis/d/noticed-you/6712018688.html\n",
"Landscaper in a white Ford transit https://newyork.craigslist.org/lgi/mis/d/landscaper-in-white-ford/6712057407.html\n",
"Korean woman in black/ Pratt student? https://newyork.craigslist.org/brk/mis/d/korean-woman-in-black-pratt/6712002660.html\n",
"I know you notice me noticing you https://newyork.craigslist.org/mnh/mis/d/know-you-notice-me-noticing/6711914049.html\n",
"Asian? Filipino? https://newyork.craigslist.org/que/mis/d/asian-filipino/6711877670.html\n",
"Megan, Anthology Film Archives https://newyork.craigslist.org/mnh/mis/d/megan-anthology-film-archives/6711876801.html\n",
"Looking For Alexandra From Coop City https://newyork.craigslist.org/brx/mis/d/looking-for-alexandra-from/6706164882.html\n",
"Mature Black Guy from East Harlem https://newyork.craigslist.org/mnh/mis/d/mature-black-guy-from-east/6708182919.html\n",
"F TRAIN Carroll St https://newyork.craigslist.org/brk/mis/d/train-carroll-st/6702402193.html\n",
"BERGEN ST F TRAIN https://newyork.craigslist.org/mnh/mis/d/bergen-st-train/6697267683.html\n",
"To the woman I walked halfway home (m4w) https://newyork.craigslist.org/brk/mis/d/to-the-woman-walked-halfway/6711819993.html\n",
"walking our dogs across Bedford Ave at night https://newyork.craigslist.org/brk/mis/d/walking-our-dogs-across/6711783432.html\n",
"Cindy Where Did You Go? https://newyork.craigslist.org/wch/mis/d/cindy-where-did-you-go/6706701306.html\n",
"ODEON m4m 9/29 https://newyork.craigslist.org/mnh/mis/d/odeon-m4m-9-29/6711735819.html\n",
"Beautiful brunette Amoco on Northern/Nassau Rd You held the door forme https://newyork.craigslist.org/que/mis/d/beautiful-brunette-amoco-on/6710039167.html\n",
"Crunch Locker Room https://newyork.craigslist.org/mnh/mis/d/crunch-locker-room/6711718551.html\n",
"Brandon? Downtown 1 train getting off at Houston to meet a friend https://newyork.craigslist.org/mnh/mis/d/brandon-downtown-1-train/6711723883.html\n",
"Stuck in Traffic https://newyork.craigslist.org/jsy/mis/d/stuck-in-traffic/6711713751.html\n",
"Why can't I find.... https://newyork.craigslist.org/lgi/mis/d/why-cant-find/6711701131.html\n",
"Dollar Tree https://newyork.craigslist.org/que/mis/d/dollar-tree/6711694197.html\n",
"Music Recording and Photography Studio https://newyork.craigslist.org/que/mis/d/music-recording-and/6711659478.html\n",
"72nd street stop, uptown 1 https://newyork.craigslist.org/mnh/mis/d/72nd-street-stop-uptown-1/6711658633.html\n",
"🎼What Were You Singing 🎶 https://newyork.craigslist.org/brk/mis/d/what-were-you-singing/6711647330.html\n",
"M15 downtown bus, Sunday afternoon (w4m) https://newyork.craigslist.org/mnh/mis/d/m15-downtown-bus-sunday/6711622761.html\n",
"64th st and Grand Ave https://newyork.craigslist.org/que/mis/d/64th-st-and-grand-ave/6709812571.html\n",
"Grey T-shirt black Herschel bag downtown 6 https://newyork.craigslist.org/mnh/mis/d/grey-shirt-black-herschel-bag/6711614263.html\n",
"Shane on the Amtrak from Hudson. https://newyork.craigslist.org/mnh/mis/d/shane-on-the-amtrak-from/6711608938.html\n",
"AUNTIE ANNE'S Atlantic Mall 5:55PM ish https://newyork.craigslist.org/brk/mis/d/auntie-annes-atlantic-mall/6711578478.html\n",
"Cute, attractive woman at the Empire Diner in Chelsea yesterday (m4w) https://newyork.craigslist.org/mnh/mis/d/cute-attractive-woman-at-the/6711550141.html\n",
"Danielle C https://newyork.craigslist.org/que/mis/d/danielle/6708510961.html\n",
"It's a natural thing https://newyork.craigslist.org/fct/mis/d/its-natural-thing/6711508263.html\n",
"Construction Worker at Myrtle m4m https://newyork.craigslist.org/brk/mis/d/construction-worker-at-myrtle/6711447989.html\n",
"Richard from Equinox https://newyork.craigslist.org/mnh/mis/d/richard-from-equinox/6711475781.html\n",
"Uptown 4, Bronx confusion, red suitcase! https://newyork.craigslist.org/brx/mis/d/uptown-4-bronx-confusion-red/6711443282.html\n",
"Crown Fried Chicken https://newyork.craigslist.org/brk/mis/d/crown-fried-chicken/6711408334.html\n",
"English processor of last winter https://newyork.craigslist.org/mnh/mis/d/english-processor-of-last/6711403846.html\n",
"Barcelona to JFK flight chat by the BR (I'm Astoria, You are Bayside) https://newyork.craigslist.org/que/mis/d/barcelona-to-jfk-flight-chat/6711355167.html\n",
"lisa in east village....we used to get high and hook up https://newyork.craigslist.org/mnh/mis/d/lisa-in-east-villagewe-used/6706305311.html\n",
"cute brunette on A train at 14th street https://newyork.craigslist.org/mnh/mis/d/cute-brunette-on-train-at/6705183322.html\n",
"Yellow tank, blonde dude https://newyork.craigslist.org/que/mis/d/yellow-tank-blonde-dude/6711337857.html\n",
"Emma Kihi? https://newyork.craigslist.org/mnh/mis/d/emma-kihi/6711270970.html\n",
"Miami to JFK https://newyork.craigslist.org/brk/mis/d/miami-to-jfk/6711283326.html\n",
"Cute Bartender at Bar None on 3rd https://newyork.craigslist.org/mnh/mis/d/cute-bartender-at-bar-none-on/6711280920.html\n",
"Your young California straight boy https://newyork.craigslist.org/mnh/mis/d/your-young-california/6711225088.html\n",
"Chi-quita https://newyork.craigslist.org/brx/mis/d/chi-quita/6705290735.html\n",
"Boardwalk https://newyork.craigslist.org/lgi/mis/d/boardwalk/6711220512.html\n",
"CUTE BLONDE UNION SQUARE (m4w) https://newyork.craigslist.org/mnh/mis/d/cute-blonde-union-square-m4w/6711215064.html\n",
"Looking for an old friend https://newyork.craigslist.org/brx/mis/d/looking-for-an-old-friend/6711214678.html\n",
"Dragcon bathroom saturday https://newyork.craigslist.org/mnh/mis/d/dragcon-bathroom-saturday/6711196568.html\n",
"Young woman on Flatbush ave. https://newyork.craigslist.org/brk/mis/d/young-woman-on-flatbush-ave/6711149880.html\n",
"looking for Patrick and Dominick from CL https://newyork.craigslist.org/mnh/mis/d/looking-for-patrick-and/6711161661.html\n",
"Park Slope on 7th avenue (m4w) https://newyork.craigslist.org/brk/mis/d/park-slope-on-7th-avenue-m4w/6711164696.html\n",
"you very nice man in the Q train https://newyork.craigslist.org/mnh/mis/d/you-very-nice-man-in-the-train/6707713153.html\n",
"At NYSC IN MAHOPAC https://newyork.craigslist.org/wch/mis/d/at-nysc-in-mahopac/6711159636.html\n",
"Met you in china town https://newyork.craigslist.org/mnh/mis/d/met-you-in-china-town/6711127509.html\n"
]
}
],
"source": [
"titles = r.html.find(\".result-title\") #we can specify CSS selector.\n",
"for title in titles:\n",
" text = title.text\n",
" url = title.attrs.get(\"href\") #.attrs returns a dictionary\n",
" print(text,url)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## access further"
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
" Dad/psychologist in coffee shop this morning \n",
"---content---\n",
" QR Code Link to This Post\n",
"You were chatting with the coffee shop guys about your kid in school. I thought you sounded like a bright person, awesome dad and good psychologist. Would have liked to talk more but was too shy. Posting this now because I browse this page sometimes for the giggles, and why the heck not?\n",
"\n",
"---Title---\n",
" Open House M4M \n",
"---content---\n",
" QR Code Link to This Post\n",
"Open house today at 57th Street and 3rd Avenue. At lunchtime.\n",
"\n",
"Great if you are going commando. Adjust yourself if you want more.\n",
"\n",
"Very slim and feminine.\n",
"\n",
"---Title---\n",
" Freddie in Marble Hill \n",
"---content---\n",
" QR Code Link to This Post\n",
"We met at the Harlem Metro North station and rode to Marble Hill about two months ago. We'd a great conversation and I gave you my card. I'd love to hear from you.\n",
"\n",
"---Title---\n",
" Lord and Taylor \n",
"---content---\n",
" QR Code Link to This Post\n",
"Mature woman at lord and taylor. Yes....\n",
"\n",
"\n",
"Where have you been?\n",
"\n",
"---Title---\n",
" Looking for That Female who Gave Great Massages Lost Contact \n",
"---content---\n",
" QR Code Link to This Post\n",
"Im the older guy near the Bx Zoo area. If you see this and want to come over let me know. The person Im looking for is Female and lives in the Bx\n",
"\n",
"---Title---\n",
" Hey Jeff \n",
"---content---\n",
" QR Code Link to This Post\n",
"Long shot but, hoping you see this and hit back.\n",
"Lost your contact and it's been a while.\n",
"\n",
"---Title---\n",
" beautiful girl with green top on the A \n",
"---content---\n",
" QR Code Link to This Post\n",
"Saw you yesterday at Fulton street. You had on a green top with blue jeans. We were standing next to each other on the A and then you got off at Nostrand. i am the tall guy with glasses.I would like to connect with you.\n",
"\n",
"---Title---\n",
" Beautiful Black Female Cyclist (Coney Island Boardwalk) \n",
"---content---\n",
" QR Code Link to This Post\n",
"The most beautiful, this black woman biking on Coney Island's boardwalk. Short curly hair, unusual honey blond, caramel skin, slim curves and nice cleavage. Stunning! Haven't seen you and missing the smile you give me when we pass each other.\n",
"Saw you dancing and laughing on the boardwalk during Oktoberfest 9/22. So sexy classy! You were with a man and woman, otherwise I would've approached.\n",
"You have stoked my curiosity and I'd like to meet you. You available? I'm the very fit, 6'3, Eastern European man you smile at. Very successful, educated & divorced.\n",
"Tell me something about who you were with on the boardwalk and the color of your bike. I'll tell you what you were wearing when dancing.\n",
"\n",
"It's a longshot that you'll see this but I'm hoping for some help from anyone who sees or knows you. Please tell her about this.\n",
"\n",
"---Title---\n",
" John in the Avalon Valley Apartments \n",
"---content---\n",
" QR Code Link to This Post\n",
"Before craigslist canceled the personal side I made quite a few friends that would meet together at my place. If you're one of those I would like to meet again please send me an email and I will get back to you.\n",
"\n",
"---Title---\n",
" Mature male seeking to meet same \n",
"---content---\n",
" QR Code Link to This Post\n",
"Where have you been? Cannot seem to locate you\n",
"Woke up very hungry? Very much in need?\n",
"Can you feed my hunger?\n",
"Can you satisfy this craving?\n",
"Do you have something for me?\n",
"\n",
"---Title---\n",
" Construction Worker at Myrtle m4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"Looking for that str8 construction worker who'd come to my apartment during his breaks for some relief. Home tonight\n",
"\n",
"---Title---\n",
" Looking for African Senegal guy-We met before \n",
"---content---\n",
" QR Code Link to This Post\n",
"I saw you on the 3 train. You were slim, young, blk, and listening to your music on your ear piece. You saw me, i saw you and we smiled at each other. Im Mariah. I'm the slim, brown skin TS girl with big dimples. Get back. Let's connect hopefully. Please leave photo with descript. NO WHITE MEN. NO OLD MEN.\n",
"\n",
"---Title---\n",
" Kaffe 1668 Around 4PM - You had a Team USA pack + holding pillows \n",
"---content---\n",
" QR Code Link to This Post\n",
"This was around 4/5 PM on Monday. The cafe was largely empty.\n",
"\n",
"You: White dude wearing glasses wearing navy pants and a lighter blue button-up. You also had glasses on. You came in carrying a paper bag filled with pillows(?) and Monopoly. You searched around for an outlet to charge your phone and eventually sat down to pull out your laptop.\n",
"\n",
"Me: Asian dude who sitting down doing work on paper. I turned to look at you every now and then; I was (and am) super interested in you.\n",
"\n",
"---Title---\n",
" gym fun \n",
"---content---\n",
" QR Code Link to This Post\n",
"Last Thursday night, in gym men's steam room, you kept staring at my feet, I thought maybe you found my secret that I was wearing nude pantyhose. Should have say something to you, but kind of shy and not sure if you would be interested. Anyway, if you see this and interested, just ping me\n",
"\n",
"---Title---\n",
" Skater going towards F Train York Street \n",
"---content---\n",
" QR Code Link to This Post\n",
"Wednesday Sept 26th\n",
"\n",
"I had just gotten off the F train headed to dumbo, not sure if you were headed to F or A but we sure held some prolonged eye contact passing through the tunnel.\n",
"Can't get that interaction/ or lack there of out of my head.\n",
"Wished I turned around to see if you did\n",
"\n",
"---Title---\n",
" \"Adventurous Discreets\" \n",
"---content---\n",
" QR Code Link to This Post\n",
"I miss you and for what its worth i'm very sorry how things ended...\n",
"\n",
"---Title---\n",
" tonight in chelsea - crosswalk in front of lowes \n",
"---content---\n",
" QR Code Link to This Post\n",
"we met on here before, when we crossed paths in boreum hill brooklyn, we somehow lost connection, but i saw you again tonight and would love to connect. you had glasses and were as handsome as before...\n",
"\n",
"hoping you read this and reply...\n",
"\n",
"---Title---\n",
" hoping to reconnect w/ital str8 dude w/gf: u live right near Ast. Park \n",
"---content---\n",
" QR Code Link to This Post\n",
"You finally sent me a pic (after many requests) and we were about to exchange phone numbers. This was back in early July. Then CL pulled the rug from under us. Hit me back, bro.\n",
"\n",
"---Title---\n",
" Mennen/Menan/Menin from High School \n",
"---content---\n",
" QR Code Link to This Post\n",
"Mennen/Menan/Menin it's Darion. Haven't spoke to you since high school, and hard to find you on FB, even with the help of my friends and our old classmates. Want to catch up.\n",
"\n",
"Probably don't remember me, you tried making me a yaoi boy. We talked about UAT and whatnot.\n",
"\n",
"---Title---\n",
" Airplane / flight to chicago - Liz \n",
"---content---\n",
" QR Code Link to This Post\n",
"You = Liz. We had a nice chat on our flight to chicago (that we were both excited to get on from standby!) - exchanged first names but no more. I'm in NYC every week; would be great to have a friend to meet.\n",
"\n",
"---Title---\n",
" I thought you and your rhinestone pin were cute (m4m) \n",
"---content---\n",
" QR Code Link to This Post\n",
"We kept looking at each other this morning, on the way to work. I liked your Southwestern belt, that pin, and your smile - too bad I had to get off so soon! What were you reading?\n",
"\n",
"---Title---\n",
" plaid shirt walking on 70th street \n",
"---content---\n",
" QR Code Link to This Post\n",
"I was walking west on 70th street towards the river, you were walking east. Caught your eye and smiled next to the bus stop :). I was in a denim jacket and headphones.\n",
"\n",
"---Title---\n",
" Beautiful girl in Artichoke Pizza BK \n",
"---content---\n",
" QR Code Link to This Post\n",
"I saw you in Artichoke Pizza on line and said goodbye to you when you were leaving. You are a beautiful black woman and would love to get to know you! 10/1 830 pm\n",
"\n",
"---Title---\n",
" Bike Riding/Museum Visiting/City Exploration \n",
"---content---\n",
" QR Code Link to This Post\n",
"hi...I'm a 58 year old avid bicycle rider/explorer/museum explorer, comedian (the latter is the majority of my activity these days, especially given the prevailing \"social conditions\"), etc. (male) looking for interesting bicycle riding companion (female, any age) to ride around NYC and check out museums, city infrastructure (I like to interview the guys on the street building the big structures to try to understand how it's done; they're often very informative) and so forth this coming week. I'm an Economist and politically very liberal (understatement LOL, graduated from New School years ago when it was a known Communist front organization). Other trips planned...basically looking for someone who is highly intelligent and thus can read a map showing the bike trails (LOL) so that I don't accidentally fall into the East River. If you respond and we meet on city streets, obviously we will use a password type system (for security purposes). It goes thusly, I say \"Hello, how are you...\" you say \"Fine, How are you?\". Then I say, \"I'm bored...LOL)\". If you don't receive that rejoinder, it can't be me ( I always use that comical exchange cause you never ever hear anyone accurately reporting their condition. I mean if everyone is FINE, why is society such a mess!!!! Also want to go to Block Island if you have the time and bike around Block Island. Or, maybe forget about Manhattan and just go to Block Island...LOL.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
" M4m Chris with size 12 feet \n",
"---content---\n",
" QR Code Link to This Post\n",
"We met sometime last year near Penn station and I worshipped your beautiful big feet.\n",
"\n",
"You had a gf at the time and were in your early 30s. You lived near penn station . I'm 25 Hispanic & very fem\n",
"\n",
"I know this is a long shot, but if you happen to see it and want to reconnect, hit me up. Also any guys with big feet who like them serviced hmu.\n",
"\n",
"---Title---\n",
" Bubby's \n",
"---content---\n",
" QR Code Link to This Post\n",
"Tall server with a handsome smile at Bubby's in Hudson. We made serious eye contact on Sunday evening. You came over to double check our orders. Were there really computer problems? Or was there an agenda? Wish I left my number. Here's my second shot!\n",
"\n",
"---Title---\n",
" Sonia Rivera \n",
"---content---\n",
" QR Code Link to This Post\n",
"If anyone knows Sonia please contact me. I really really need to have a conversation with her. Tell me where she worked, lived or anything to identify that this is the Sonia I'm looking for. She Puerto Rican and lived uptown B.X. around 2001, has family in Connecticut. I know that's a long time ago.\n",
"\n",
"---Title---\n",
" same flight, twice in one weekend \n",
"---content---\n",
" QR Code Link to This Post\n",
"on friday night, we were on the same southwest flight from newark to indianapolis. as we all boarded the flight, the flight attendant said \"there are 90 open seats on this flight, so please spread out.\" you sat in the row behind me.\n",
"\n",
"then to my pleasant surprise at 5 am monday morning, we were on the same southwest flight from indianapolis to newark. you sat in the row behind me, again.\n",
"\n",
"we made awkward exchanges towards each other wanting to engage, but unsure of each other's stance... so here i am.\n",
"\n",
"me: blonde, female with short hair\n",
"you: medium height, dark, and handsome\n",
"\n",
"---Title---\n",
" Looking for KLove \n",
"---content---\n",
" QR Code Link to This Post\n",
"I'm looking for KLove that used to have me over. You revealed your true identity to me over time. Would like to visit you again\n",
"\n",
"---Title---\n",
" Equinox \n",
"---content---\n",
" QR Code Link to This Post\n",
"Sunday afternoon.\n",
"\n",
"Where the hell did you come from...\n",
"\n",
"I wanted to chat after but was actually feeling shy, and then you had gone.\n",
"\n",
"I'd still like to.\n",
"\n",
"Tell me what happened in the shower, and at which Equinox club.\n",
"\n",
"---Title---\n",
" VERG 4th Ave \n",
"---content---\n",
" QR Code Link to This Post\n",
"We both took our cats to the vet today. I was hoping you would sit back in your original seat (next to me) but some else took your spot. Would have wanted to have time to speak to you. Tell me about how your cat looks like. I would love to meet up for a coffee or drink and get to know you. : )\n",
"\n",
"---Title---\n",
" White Mustang Florida plates, blonde \n",
"---content---\n",
" QR Code Link to This Post\n",
"I saw you twice on Deer Park Ave. I was in my white Mazda driving South-bound. Awhile later as I walked out of 7-11. I'm the tall and handsome black man that walked across the street to my work. I know how crazy white girls are about BBC in FL. Hit me up and I'll welcome you to town ;)\n",
"\n",
"---Title---\n",
" Sonia Rivera \n",
"---content---\n",
" QR Code Link to This Post\n",
"If anyone knows Sonia please contact me. I really really need to have a conversation with her. Tell me where she worked, lived or anything to identify that this is the Sonia I'm looking for. She Puerto Rican and lived uptown B.X. around 2001, has family in Connecticut. I know that's a long time ago.\n",
"\n",
"---Title---\n",
" Man on the 7 train this afternoon \n",
"---content---\n",
" QR Code Link to This Post\n",
"We were on the 7 local train going into Queens. You sat across from me, playing on your phone. You look Eastern European, had on a black Ralph Lauren Polo t-shirt and jean. You got off at 61st St - Woodside.\n",
"\n",
"I'm the Latina sitting next to the older Asian man, if you were paying attention...\n",
"\n",
"---Title---\n",
" skater boy \n",
"---content---\n",
" QR Code Link to This Post\n",
"saw you dropping in\n",
"on the ramp at Cooper Park\n",
"you looked like trouble.\n",
"\n",
"---Title---\n",
" w4m Art Students League / G to E Train crush :) \n",
"---content---\n",
" QR Code Link to This Post\n",
"hi !\n",
"\n",
"you were in my Figure Painting class with Dan Thompson on Wednesday and Thursday evenings at The Art Students League this past winter. Your work was beautiful and meticulous and you were too. I was only in the class briefly but noticed you and was big time crushing but too much of a goof/wimp to ever say hey. This was true again when I saw you on a Court Square bound G train and was re-met with heavy crush feels. You seem smart and interesting and sincere, let's take the G to PS1 one day?\n",
"\n",
"I have dark hair, a few tattoos (lol) and kept to myself, you were a tall shaggy boy with a calm energy about you. creepy, but I drew a drawing of you in an attempt to describe to a friend how cute u were lol happy to send along if you think this is you :)\n",
"\n",
"---Title---\n",
" w4m Art Students League / G to E Train crush :) \n",
"---content---\n",
" QR Code Link to This Post\n",
"hi !\n",
"\n",
"you were in my Figure Painting class with Dan Thompson on Wednesday and Thursday evenings at The Art Students League this past winter. Your work was beautiful and meticulous and you were too. I was only in the class briefly but noticed you and was big time crushing but too much of a goof/wimp to ever say hey. This was true again when I saw you on a Court Square bound G train and was re-met with heavy crush feels. You seem smart and interesting and sincere, let's take the G to PS1 one day?\n",
"\n",
"I have dark hair, a few tattoos (lol) and kept to myself, you were a tall shaggy boy with a calm energy about you. creepy, but I drew a drawing of you in an attempt to describe to a friend how cute u were lol happy to send along if you think this is you :)\n",
"\n",
"---Title---\n",
" Corner of metropolitan ave and ...... m4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"you came over more than once , i gave you foot rubs ,we had a glorious time , i lost your email address , please get in touch if you see this.\n",
"\n",
"---Title---\n",
" Curly Red Head head with mother \n",
"---content---\n",
" QR Code Link to This Post\n",
"Curly Red head taking mother for lunch or coffee. I have seen you before and think you are really great looking. love your face and those curly locks..\n",
"\n",
"---Title---\n",
" CVS MCLEAN AVE \n",
"---content---\n",
" QR Code Link to This Post\n",
"To the slim Nubian female worker i see everytime i go into the store,,i think you're the most beautiful woman I've ever seen,, love the way you look, talk, act down to the way your nose crumbles up a bit from time to time,, think it's so cute,, would love to get to know you,, I'm the Puerto Rican guy who always had to ask for help when i go in,, if you single and interested in someone who would cherish you hit me up,, tried talking to you but you're always busy\n",
"\n",
"---Title---\n",
" Ella from flight to jfk \n",
"---content---\n",
" QR Code Link to This Post\n",
"We sat next to each other. You offered me some of your food and we had amazing conversation and chemistry. We live on opposite sides of the country, but I'd love to talk again.\n",
"\n",
"---Title---\n",
" Flatiron equinox \n",
"---content---\n",
" QR Code Link to This Post\n",
"We hooked up in the shower around 4.\n",
"\n",
"You're insanely sexy.\n",
"\n",
"6'0 185 built mixed, shaved head here.\n",
"\n",
"Hit me up\n",
"\n",
"---Title---\n",
" Jahira \n",
"---content---\n",
" QR Code Link to This Post\n",
"Yes, I know that I spelled it wrong, did it on purpose so it was just like I used to do. Been thinking of you lately and just wanted you to know. Missing a woman like you. We both went our own way in life but would like to get in touch again. Still comparing? Used to love your touch sitting outside your mom's house. Tell me something that would let me know it's you.\n",
"\n",
"---Title---\n",
" Target - orange \n",
"---content---\n",
" QR Code Link to This Post\n",
"We exchanged glances in the parking lot\n",
"Wish I got your number\n",
"You with a full shopping cart and your white suv and two cute kids\n",
"Wish I got your number\n",
"Here's hoping you see this\n",
"Coffee sometime ?\n",
"\n",
"---Title---\n",
" Cunningham Park \n",
"---content---\n",
" QR Code Link to This Post\n",
"Today, you asked for hand sanitizer which I had and surprised you~! Tell me what you were doing there and let me know if you would like to meet again.\n",
"\n",
"---Title---\n",
" M/M We Met at E59-Lex \n",
"---content---\n",
" QR Code Link to This Post\n",
"I was the older white guy- you were the stocky black or bLatino male. Not sure of your age...You adjusted yourself and I was amazed...we went back to my by my apt You gave me your number which I misplaced. If your around hit me up\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
" Columbia University Women. \n",
"---content---\n",
" QR Code Link to This Post\n",
"I happen to live near a certain prestigious college in uptown NYC and anytime I'm in that neighborhood, I'm up to my eyes in lovely young women. Whenever I make eye contact or get a smile from one, it totally makes my day. Thank you for the eye candy.\n",
"\n",
"---Title---\n",
" manhattan teacher on cam site \n",
"---content---\n",
" QR Code Link to This Post\n",
"You were so cute! Hearing your voice at the end made me have a crush on you.\n",
"\n",
"Hit me up! I'll be discrete.\n",
"\n",
"---Title---\n",
" Jayme Riding Uber \n",
"---content---\n",
" QR Code Link to This Post\n",
"We rode an Uber together from lower downtown. You had a brown top and LV handbag. You Set in front and I was on the back. We kept on staring at each other on the side mirror. I got off without asking for your number. This is a long shot but who knows, just trying to connect.\n",
"\n",
"---Title---\n",
" Saw you at Home Depot m4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"Are you available now?\n",
"\n",
"---Title---\n",
" Black top white shorts \n",
"---content---\n",
" QR Code Link to This Post\n",
"Daned by yourself. Stunning I'm the tall cowboy\n",
"\n",
"---Title---\n",
" Starbucks myrtle &wycoff m4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"Saw you at Starbucks around 1, you came in after I had already ordered. We made eye contact and I smiled. I was nervous to say hi. I was wearing a hat and black jeans.\n",
"\n",
"---Title---\n",
" John with size 13 feet (m4m) \n",
"---content---\n",
" QR Code Link to This Post\n",
"We met in December 2015 near Union Square and I worshipped your beautiful big feet.\n",
"\n",
"You had a gf at the time and were in your late 30s. You lived near Union Sq. I was 24, 6'2, white, slim.\n",
"\n",
"I know this is a long shot, but if you happen to see it and want to reconnect, hit me up. Also any guys with big feet who like them serviced hmu. Please change the email subject line when you contact me.\n",
"\n",
"---Title---\n",
" For \"Lisa D\" who was seeking...M4W \n",
"---content---\n",
" QR Code Link to This Post\n",
"Direction: Guidance on an agreed path, attainment of a goal, answers to your questions when you need them.\n",
"\n",
"Dominance:Decisions made, control in a good way, leading the path, setting the path, a natural order.\n",
"\n",
"Discipline:Correction back on the path, reminder of the agreed path, discussion of what led her off the path.\n",
"\n",
"Did you ever find it? Inquiring minds want to know and you were trying to make changes in your life. You were in upper Manhattan from what I recall.\n",
"\n",
"---Title---\n",
" Sassy and Classy Boot Wearing Woman in Brooklyn M4W \n",
"---content---\n",
" QR Code Link to This Post\n",
"Would love to chat with that special lady that I saw recently who was donning the very nice black heeled boots. You had personality, sass, drive and class.\n",
"\n",
"If it was/is you, drop me a line.\n",
"\n",
"---Title---\n",
" J.P. M4M \n",
"---content---\n",
" QR Code Link to This Post\n",
"J.P. used to met up in the ev.\n",
"Curious to see if you're still out there and interested.\n",
"Never had a follow up way to be in touch with you.\n",
"Be in touch if you're still around and give me an indication of what you remember.\n",
"Would be cool to met again sometime.\n",
"\n",
"---Title---\n",
" LIRR Huntington branch (9/15) \n",
"---content---\n",
" QR Code Link to This Post\n",
"Just got off the train and wow, you had some of the best legs I've seen. You were a blonde woman with a bit of grey, wearing a black skirt, flip flops with dark red nail polish, with a jacket. You had a bag of gummy bears that you seemed to really enjoy. You couldn't find your ticket when the conductor came by and took a bit to find it but you did eventually. You were very into your phone so I didn't get a chance to tell you. Think you were heading to Mineola. If you see this, reach out, lets talk.\n",
"\n",
"---Title---\n",
" 711/Laundromat - E Tremont (m4m) \n",
"---content---\n",
" QR Code Link to This Post\n",
"Looking for tall Latino, slightly chubby, mid 40's, who stopped into 711 on weekend mornings, while using laundromat a few doors down. We greeted each other a few times. Would like to take it a step further, service you.\n",
"\n",
"---Title---\n",
" R train this morning female who made eye contact I had grey yankee \n",
"---content---\n",
" QR Code Link to This Post\n",
"We both made eye contact twice before I got off on 9 street ..you smiled at me and I smiled back you were with some older guy. Message me if by chance u see my add up ..\n",
"\n",
"---Title---\n",
" cute brunette on A train at 14th street \n",
"---content---\n",
" QR Code Link to This Post\n",
"You couldn't keep your eyes off my bulge. We made quick eye contact, smiled and then I had to get off train\n",
"\n",
"---Title---\n",
" Saturday at Belmont Park \n",
"---content---\n",
" QR Code Link to This Post\n",
"To the beautiful brunette from France - we chatted briefly in the paddock about horse racing and trips to France. I should have said more and asked to exchange numbers. If you see this please say hello - would like to see you again and continue our conversation.\n",
"\n",
"---Title---\n",
" stacey in west village. we used to get high and fool around \n",
"---content---\n",
" QR Code Link to This Post\n",
"a while back, but we stayed in touch. I lost my phone and no way to get back in touch with you:/\n",
"\n",
"---Title---\n",
" John 390 wythe- w4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"Please read this...\n",
"\n",
"Doubt you will see this but I'm putting it out and Still, wishing for a miracle.\n",
"\n",
"\n",
"If you or anyone that knows you,will find this!!!\n",
"\n",
"I'd love to hear from you!\n",
"\n",
"---Title---\n",
" John 390 wythe - w4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"It was just several times that I saw you and I know it's my fault that I could never keep looking into your eyes or say a word.I wish I had the courage to say something.I love seeing you and I love when you smile at me.\n",
"\n",
"I'd love to hear from you!\n",
"\n",
"---Title---\n",
" I noticed you \n",
"---content---\n",
" QR Code Link to This Post\n",
"I noticed you Checking me out on the F train, i was wearing dark gray work pants and a black wounded warrior T-shirt, let's do coffee! M4W\n",
"\n",
"---Title---\n",
" Landscaper in a white Ford transit \n",
"---content---\n",
" QR Code Link to This Post\n",
"We've met at a park about 10 months ago in Yaphank. I have posted a few times and want to get together again.The sex was great. You gave me my number but I miss placed it.\n",
"You are in your early to mid 50s. I am a little bit older.\n",
"Tell me where we met and what we did. Hope to hear back from you\n",
"\n",
"---Title---\n",
" Korean woman in black/ Pratt student? \n",
"---content---\n",
" QR Code Link to This Post\n",
"Saw you on the G train...we both got off at classon, you walked in the direction of Pratt.\n",
"\n",
"---Title---\n",
" I know you notice me noticing you \n",
"---content---\n",
" QR Code Link to This Post\n",
"It seems like we always pass each other on the street after a workout. Looks like you're home during the day. So am I.\n",
"\n",
"---Title---\n",
" Asian? Filipino? \n",
"---content---\n",
" QR Code Link to This Post\n",
"I'm searching for an old contqct of mine in REGO PARK.\n",
"You are Filipino.\n",
"You work in banking.\n",
"You live on 63rd, off Woodhaven.\n",
"\n",
"I'm the dutch-indian doctor.\n",
"\n",
"---Title---\n",
" Megan, Anthology Film Archives \n",
"---content---\n",
" QR Code Link to This Post\n",
"You came over and introduced yourself before your friends screening\n",
"\n",
"We saw each other again when you were leaving, you looked back and smiled\n",
"\n",
"Let's get together\n",
"\n",
"Mike\n",
"\n",
"---Title---\n",
" Looking For Alexandra From Coop City \n",
"---content---\n",
" QR Code Link to This Post\n",
"Hey its Steve .Hope u might see this. The Alexandra Im looking for is from Canada originally .\n",
"\n",
"---Title---\n",
" Mature Black Guy from East Harlem \n",
"---content---\n",
" QR Code Link to This Post\n",
"Had a great time with you!\n",
"Lost your contact info.\n",
"If you see this, please contact me!\n",
"Thanks!\n",
"\n",
"---Title---\n",
" F TRAIN Carroll St \n",
"---content---\n",
" QR Code Link to This Post\n",
"You got off on Carroll St, You dress very nice and you look very sweet . M4W\n",
"\n",
"---Title---\n",
" BERGEN ST F TRAIN \n",
"---content---\n",
" QR Code Link to This Post\n",
"I seen you on the F train you got off at BERGEN ST, I like your style, M4W\n",
"\n",
"---Title---\n",
" To the woman I walked halfway home (m4w) \n",
"---content---\n",
" QR Code Link to This Post\n",
"I realize that as a man you met for the first time it was pretty forward of me to offer to walk you home. I sincerely wanted to make sure that you made it home safely, since we were having a good time at the bar and you had a lot more to drink than I did. I wasn't trying to follow you into your apartment...but it wasn't until you went off on your own when we were halfway to your place that a little bit of sobriety kicked in and the creep factor became obvious to me.\n",
"\n",
"I hope you made it home! Sorry if I came off as hitting on you, that wasn't my intent. Would love to grab a drink again, but perhaps we can be a bit more tame, and your boyfriend is invited :)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
" walking our dogs across Bedford Ave at night \n",
"---content---\n",
" QR Code Link to This Post\n",
"Tonight you and I were both walking our white and orange-ish pitbulls in opposite directions down the street, there was no one else around. As we waited for the light and crossed Bedford we made eye contact. I smiled and kept walking, after we passed each other I turned around to look at you and you had also turned around to look at me. We were too far away from each other to say anything. Respond with the cross street we were walking down. Let's introduce our dogs, and ourselves :)\n",
"\n",
"---Title---\n",
" Cindy Where Did You Go? \n",
"---content---\n",
" QR Code Link to This Post\n",
"Cindy where did you go we met in CVS Eastchester you left went to CVS Yonkers then back to Eastchester Lord and Taylor Miss You want to see you again Love the Blue Hair!\n",
"\n",
"---Title---\n",
" ODEON m4m 9/29 \n",
"---content---\n",
" QR Code Link to This Post\n",
"We locked eyes on Saturday afternoon.\n",
"You wore black and white.\n",
"What was I wearing?\n",
"\n",
"---Title---\n",
" Beautiful brunette Amoco on Northern/Nassau Rd You held the door forme \n",
"---content---\n",
" QR Code Link to This Post\n",
"To the beautiful brunette woman that held the door for me at the gas station around 430pm on Northern blvd/ Nassau Rd, think you were coming into pay for gas. Im sure you will never see this but just incase, i wish i stopped to tell you how beautiful you looked :) you had on burgundy pants. Saw you filling up as i was leaving, damn and yes you were looking very beautiful :)\n",
"\n",
"\n",
"\n",
"You : had a (Blue mini van )\n",
"\n",
"---Title---\n",
" Crunch Locker Room \n",
"---content---\n",
" QR Code Link to This Post\n",
"We have spoken a few times in gym\n",
"would like to meet\n",
"Me... mature fit tall guy\n",
"You...fit male seems you like hanes briefs\n",
"hard not to notice\n",
"say hi\n",
"\n",
"---Title---\n",
" Brandon? Downtown 1 train getting off at Houston to meet a friend \n",
"---content---\n",
" QR Code Link to This Post\n",
"This is Emma on her way to dance rehearsal eating roast beef. I'm never quick enough at giving my number...\n",
"\n",
"---Title---\n",
" Stuck in Traffic \n",
"---content---\n",
" QR Code Link to This Post\n",
"We were both stuck in traffic on our way to NJ on Friday. You in a GMC truck smoking your cigarette. We had eye contact a few times.\n",
"\n",
"---Title---\n",
" Why can't I find.... \n",
"---content---\n",
" QR Code Link to This Post\n",
"....the black guy I was talking to about getting together with? I'm the wm dad, fit in Nassau. Please reach out to me if you think it could be you\n",
"\n",
"---Title---\n",
" Dollar Tree \n",
"---content---\n",
" QR Code Link to This Post\n",
"Not sure you will check this. We were in the Dollar Tree. I saw you walk in and you immediately caught my attention. You were a tall guy. Wasnt sure if you were white or Spanish or what but you had light/olive skin. You were dressed nicely with a light button down shirt, brown belt, brown dress shoes and dark blue pants with wavy hair. And you smelled very good. I was the very tall black female dressed in jeans and a long blue cardigan. We passed each other a few times and said \"excuse me\" to each other but I was hoping you said more.\n",
"\n",
"---Title---\n",
" Music Recording and Photography Studio \n",
"---content---\n",
" QR Code Link to This Post\n",
"At RaMed Studios, we offer an array of services to suit the client's needs. The services offered are audio recording, videography, photography, vocal lessons, dance lessons, rehearsal space\n",
"\n",
"Our Recording Studio is designed around the UAD platform and offers services in the areas of recording, mixing, mastering and beat making.\n",
"We also offer Photography & Videography offers a wide variety of Photography Services including: Portrait, Wedding, NewBorn, Family, Fashion, Commercials, Music video, Retouching, create artist page, album covers, documentary, make up services among many others.\n",
"\n",
"RaMed Studios is a online mixing and mastering website with real engineers using real analog gears and the best digital plugins! We have a Fast Turn Around, Awesome Customer Services & the Best Ears 👂🏼 for your New Hit Record! Our Mixing and Mastering Includes: EQ, Compression, Vocal Tuning, Reverb, Effects, Clean up and much more..\n",
"\n",
"Come see us, we are the definition of excellence. Excellence is what we do.\n",
"\n",
"You can also rent our studio\n",
"Affordable Hourly & Day Rate\n",
"\n",
"BOOK YOUR STUDIO TIME NOW\n",
"\n",
"---Title---\n",
" 72nd street stop, uptown 1 \n",
"---content---\n",
" QR Code Link to This Post\n",
"we were on the uptown 1, sunday early evening, exchanged glances a couple times standing from opposite sides. had to get out at 72nd with my friend. i have brown hair and button down, you: pretty and tan :)\n",
"\n",
"---Title---\n",
" 🎼What Were You Singing 🎶 \n",
"---content---\n",
" QR Code Link to This Post\n",
"Whatever it was, you were pretty into it. (Sunday evening, and we're both men, to narrow down the possibilities)\n",
"\n",
"---Title---\n",
" M15 downtown bus, Sunday afternoon (w4m) \n",
"---content---\n",
" QR Code Link to This Post\n",
"We both got on the downtown M15 bus Sunday afternoon at 54th Street.\n",
"\n",
"You: New to the city, going to be here for a month working at a hospital. Had a backpack, small suitcase, and a sweet smile.\n",
"\n",
"Me: In a group of 3 women, we gave you some NYC recommendations (including lots of cookie places.) I was the one to bring you into our conversation, wearing a jean shirt, hoop earrings and a black backpack.\n",
"\n",
"Chances you see this are slim, but if you do! Want to go on a NYC adventure together while you are here? If it's you, and if so, respond with the bagel place I recommended.\n",
"\n",
"---Title---\n",
" 64th st and Grand Ave \n",
"---content---\n",
" QR Code Link to This Post\n",
"We was walking in Grand Ave- you was wearing a blue dress and smiled and waved as we passed- not sure if you was intending that for me or the people behind me on the corner\n",
"\n",
"---Title---\n",
" Grey T-shirt black Herschel bag downtown 6 \n",
"---content---\n",
" QR Code Link to This Post\n",
"We both got on at Grand Central and I got off at 14th. I was hoping you'd walk out too... where'd you go?\n",
"\n",
"---Title---\n",
" Shane on the Amtrak from Hudson. \n",
"---content---\n",
" QR Code Link to This Post\n",
"It's Devon - we had matching boots.\n",
"\n",
"I wanted to get your phone number when we got to Penn, but I lost you.\n",
"\n",
"Reach out if you get this and let me know what color sweater I was wearing so I know it's you.\n",
"\n",
"---Title---\n",
" AUNTIE ANNE'S Atlantic Mall 5:55PM ish \n",
"---content---\n",
" QR Code Link to This Post\n",
"You were the tall white guy with glasses in line after me with a little meat on, just thought you were kinda cute.\n",
"\n",
"---Title---\n",
" Cute, attractive woman at the Empire Diner in Chelsea yesterday (m4w) \n",
"---content---\n",
" QR Code Link to This Post\n",
"I spotted you at the bar at the Empire Diner in the late afternoon yesterday, you grabbed a menu from the counter and chatted with the bartender, which tells me you are a regular at the place. You had curly brown hair and wore a denim jacket. Had to leave the place as you were going through the menu. If you get this, maybe we can chat over coffee. I'm a single male, 6'0\", slender, cute, editor/writer.\n",
"\n",
"---Title---\n",
" Danielle C \n",
"---content---\n",
" QR Code Link to This Post\n",
"Hey Danielle.\n",
"\n",
"We hung out a few times back in 2015.\n",
"\n",
"How've you been?\n",
"\n",
"---Title---\n",
" It's a natural thing \n",
"---content---\n",
" QR Code Link to This Post\n",
"We were at Dunkin in Shelton\n",
"I grabbed some napkins for you\n",
"We smiled\n",
"Meant to get your number\n",
"You're in your 30's cute and happy\n",
"\n",
"---Title---\n",
" Construction Worker at Myrtle m4m \n",
"---content---\n",
" QR Code Link to This Post\n",
"Looking for that str8 construction worker who'd come to my apartment during his breaks for some relief. Home today.\n",
"\n",
"---Title---\n",
" Richard from Equinox \n",
"---content---\n",
" QR Code Link to This Post\n",
"Haven't seen you around lately. Except at Delancey/Essex station. I would have stopped but was in a rush.\n",
"\n",
"---Title---\n",
" Uptown 4, Bronx confusion, red suitcase! \n",
"---content---\n",
" QR Code Link to This Post\n",
"Hey! This is a complete long shot, but I figure why not? We met on the way uptown, I carried your red bag up the stairs, and we got confused on where the train was coming to. This was the afternoon of 9/30/18.\n",
"\n",
"I just wanted to say that you have a beautiful heart and your smile was infectious. I was too shy to say it and spark up a longer conversation. Feel free to reach out and contact me, I would love to get together sometime and grab lunch. I know you may be traveling, But who knows?!\n",
"\n",
"---Title---\n",
" Crown Fried Chicken \n",
"---content---\n",
" QR Code Link to This Post\n",
"A missed connection at Crown Fried Chicken? Wow. Malcolm X and Hancock last night. You had been underwhelmed by a birthday party at 3 Diamond Door earlier in the evening. You have a lovely smile and your name is Sam. You got three pieces. You said see you around. I definitely should have asked for your number.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
" English processor of last winter \n",
"---content---\n",
" QR Code Link to This Post\n",
"Dear Professor X\n",
"I'm not sure whether I said too much or said too little last winter. Either way, I'm sorry. I truly miss our repartee.\n",
"Hoping you're well.\n",
"Yours,\n",
"Haz Sci\n",
"\n",
"---Title---\n",
" Barcelona to JFK flight chat by the BR (I'm Astoria, You are Bayside) \n",
"---content---\n",
" QR Code Link to This Post\n",
"I'm the teacher from Philly and the Bronx. You're the security consultant from Boston.\n",
"You commented on my shoes while drinking coffee and looking at your phone. We chatted at the back of the plane about education, gun control, and travel. Were interrupted due to mid flight service. No names or info exchanged. Let's meet up again!\n",
"\n",
"---Title---\n",
" lisa in east village....we used to get high and hook up \n",
"---content---\n",
" QR Code Link to This Post\n",
"a while back, but we stayed in touch. I lost my phone and no way to get back in touch with you:/\n",
"\n",
"---Title---\n",
" cute brunette on A train at 14th street \n",
"---content---\n",
" QR Code Link to This Post\n",
"You couldn't keep your eyes off my bulge. We made quick eye contact, smiled and then I had to get off train\n",
"\n",
"---Title---\n",
" Yellow tank, blonde dude \n",
"---content---\n",
" QR Code Link to This Post\n",
"Saturday afternoon. You: short blond hair, tall, fit, in a deep-cut yellow tank with a chocolate or mocha looking frappuccino. Me: navy tee, glasses, seated at the community table admiring the view of you. :) If you're single or in an open relationship, it would be my pleasure to connect. And if you're not into it, please accept the compliment: you looked GOOD! :)\n",
"\n",
"---Title---\n",
" Emma Kihi? \n",
"---content---\n",
" QR Code Link to This Post\n",
"Hey Emma!\n",
"We met on craigslist and we connected chatting back and forth. Sadly we lost contact and now my messages aren't going through anymore. Are u still here?\n",
"Let me know\n",
"-T\n",
"\n",
"(my post keeps getting deleted and idk why. I am just looking for a friend...If anybody knows anything please let me know. Thanks!)\n",
"\n",
"---Title---\n",
" Miami to JFK \n",
"---content---\n",
" QR Code Link to This Post\n",
"We kept looking at each others the entire flight and again a little at the baggage claim...\n",
"\n",
"I wish I had the balls to ask for your number.\n",
"\n",
"I'm curious if this site is worth anything :)\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Jewish, frum, boro park.\n",
"\n",
"---Title---\n",
" Cute Bartender at Bar None on 3rd \n",
"---content---\n",
" QR Code Link to This Post\n",
"You are the cute bartender at Bar None on Saturday night with the long brown hair. I was the guy at the end of the bar with the blue eyes and grey sweater. We made eye contact and smiled when you came to pour a beer. I thought you were amazing. I should have stayed.\n",
"\n",
"---Title---\n",
" Your young California straight boy \n",
"---content---\n",
" QR Code Link to This Post\n",
"You are twice my age and wanted to fly me out but said I won't be allowed to wear any clothes, I'm a bit shy about all that but willing to try now I guess.\n",
"\n",
"---Title---\n",
" Chi-quita \n",
"---content---\n",
" QR Code Link to This Post\n",
"I don't know where are you?\n",
"but I miss you,\n",
"Since I know you\n",
"You're in my dreams every single night.\n",
"I hope you see this message.\n",
"\n",
"---Title---\n",
" Boardwalk \n",
"---content---\n",
" QR Code Link to This Post\n",
"We glanced at each other yesterday but we were with others You were wearing a Mets hat. Let's meet on boardwalk today\n",
"\n",
"---Title---\n",
" CUTE BLONDE UNION SQUARE (m4w) \n",
"---content---\n",
" QR Code Link to This Post\n",
"Trying to find the cutie that was walking thru union square on Saturday..\n",
"You were wearing tight jeans and a low cut shirt.. amazing body..\n",
"Walking towards Barnes and Noble..\n",
"I should've said hello.\n",
"\n",
"---Title---\n",
" Looking for an old friend \n",
"---content---\n",
" QR Code Link to This Post\n",
"Looking for an old friends who grow up on mapes ave in the late 1970. we grow up in the same block, in the late 70's\n",
"\n",
"Mapes Ave & 180th Street, hit me up if you see this, or any one who live around there in the late 1970.\n",
"\n",
"---Title---\n",
" Dragcon bathroom saturday \n",
"---content---\n",
" QR Code Link to This Post\n",
"We were the only 2 ones at the urinals in one of the bathrooms at dragcon. I was standing next to you. You were making sure i saw what you were working with. Would love to take a closer look at it. What do you look like and what did I look like\n",
"\n",
"---Title---\n",
" Young woman on Flatbush ave. \n",
"---content---\n",
" QR Code Link to This Post\n",
"You are everything physically I'm looking for in a woman. Ebony, full bodied, big hipped, large round bottom, pretty face. You were walking towards Barclays Friday early afternoon, in dark tight yoga pants. I tried to get your attention as I was driving by but it was too busy. If you happen to see this and believe it's you please reply back.\n",
"\n",
"---Title---\n",
" looking for Patrick and Dominick from CL \n",
"---content---\n",
" QR Code Link to This Post\n",
"Patrick and Dominicks a Guide 4 the married man still avail 12 Noon to 6 most days, we host in Chelsea write for details from your regular e mail address thank you M4M\n",
"\n",
"---Title---\n",
" Park Slope on 7th avenue (m4w) \n",
"---content---\n",
" QR Code Link to This Post\n",
"I saw you walking on 7th avenue, tall, slim, dark hair, 30's.\n",
"\n",
"Me - 40's, 6' tall, White, European, fit, Wall st professional.\n",
"\n",
"---Title---\n",
" you very nice man in the Q train \n",
"---content---\n",
" QR Code Link to This Post\n",
"you tall man took the Q train to brooklyn you work in the chelsea market please i want to see you again. my name Bob. Union Square.\n",
"\n",
"---Title---\n",
" At NYSC IN MAHOPAC \n",
"---content---\n",
" QR Code Link to This Post\n",
"Just got done talking with u in locker room as you were getting ready to shower. I'm sure u noticed me Look I g down there. Hot me up if u see this. Interested others also welcome.\n",
"\n",
"---Title---\n",
" Met you in china town \n",
"---content---\n",
" QR Code Link to This Post\n",
"Hey it was quick Meetup but full of memories. You & ur Mexican friend came from Philadelphia.. around?\n"
]
}
],
"source": [
"for title in titles:\n",
" text = title.text\n",
" url = title.attrs.get(\"href\") #.attrs returns a dictionary\n",
" article = session.get(url)\n",
" content = article.html.find(\"#postingbody\",first=True,)\n",
" if content:\n",
" print(\"\\n---Title---\\n\",text,\"\\n---content---\\n\",content.text)\n",
" time.sleep(0.2) #get content in every 200ms(not to access too frequently)"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<HTML url='https://newyork.craigslist.org/search/mis?s=240'>\n",
"\n",
"---Title---\n",
"Squriter looking for guy\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking for a clean guy who can host tonight. I squirt so if that bothers you don't reply. just looking for a in and out nothing more. big butt and boobs and talented with my mouth. just be real clean and I usually like white guys. if you want to meet Text me - 7\\one\\7\\4\\Three\\8\\6\\one\\Nine\\4.\n",
"\n",
"---Title---\n",
"Lose 5 pounds in 5 days & Make Money\n",
"---content---\n",
"QR Code Link to This Post\n",
"Lose 5 Pounds in 5 Days & Make Money with Total Life Changes Flush Away The Pounds And Get In Shape. Detoxify Your Body. Burn Unwanted Fat. Lose weight Your Very First Day. Make All Your Friends Jealous! Go To www.totallifechanges.com/loseweightin5days\n",
"\n",
"---Title---\n",
"*Only The Best For Your Best Friend(s)In Your Home CAT CARE*\n",
"---content---\n",
"QR Code Link to This Post\n",
"Only The Best For Yr Best Friend In Your Home CAT CARE Excellent References *Hello Thank you for reading+ yr best friends) will also Thank You *Traveling?For professional households w/ adored cat family members accustomed to the best-travel w/confidence enjoy peace of mind return to a beautiful secure home happy healthy cats w/ the knowledge all is in loving excellent hands..1 Hour Visits $20 *Overnights $25-40. Graciously negotiable for extended care. Immediate Availability.*Serious Inquiries Exclusively *Excellent References.\n",
"\n",
"*PROFILE:Family health oriented,I grew up w/ many wonderful animals who have deeply touched my life: a labor of love enriching the lives of the cats I care for + they mine. Trusted compassionate Animal Care Giver dedicated Animal Nature Lover skilled loving highly responsible strongly committed to animal welfare offer premier care given w/ a great deal of experience affection heart. By profession, College Educator /Writer/Artist on sabbatical from class instruction to write available onsite 24/7. Also, fabulous House Sitter neat alert resourceful well versed in proper home maintenance w/ a green thumb- respectfully to take special proper care hold in the higher regard yr precious cats home flora + fauna as my own w/the sanctity of yr space privacy of yr property/affairs assured as I would expect the same if the situation were reversed + w/ the knowledge all is in loving excellent hands..\n",
"\n",
"*SERVICES:administer medications/vet visits/special needs nutritional health supported/feeding/fresh water/light grooming/liter box care/good w/ shy + senior kitties/play w/ favorite toys/lots of tic affection fun;/ peace of mind/increased home security/water plants/ keep home beautiful/mail retrieval/email text photo updates too let you know all is well. *Delighted to hear from you For prompt response my phone # photo kindly introduce yourself here w/ yr Real email address + share: pets involved/special needs/photos welcomed/ travel dates/location/contact info.*Kind Regards.\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"*\"The quality of a persons' heart may best be measured by their kind regard for animals.'\n",
"*I strive to exceed expectations, hope to make your travel more enjoyable.\n",
"\n",
"---Title---\n",
"MIRACLE AT HAND. THANK YOU SAINT JUDE!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"$$$ Top pay for your test strips $$\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date after 5/19\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me Anytime\n",
"\n",
"---Title---\n",
"inexperienced pool player needed\n",
"---content---\n",
"QR Code Link to This Post\n",
"Our pool league plays on Tuesday nights on the Upper West Side -- our home bar is the Parlour (Broadway and west 86th street).\n",
"\n",
"Our team needs an inexperienced player to join.\n",
"\n",
"If interested, please respond for details.\n",
"\n",
"Fun team, good way to socialize. Very friendly bunch of folks. Any age, race, ethnicity, sexual orientation etc welcome. The team is a collection of all sorts.\n",
"\n",
"---Title---\n",
"Looking for something different\n",
"---content---\n",
"QR Code Link to This Post\n",
"I am 28 years old Looking for a serious relationship but not your typical ltr. I am into the ABDL scene. Me being the ABDL. Not a fling or hook up someone to get to know an a deeper intimate level. Text me:- Four 8 Four/2 Zero 0/Six 2 Seven 2.\n",
"\n",
"---Title---\n",
"Phlebotomy Technician in ONE day, Hands ON Training\n",
"---content---\n",
"QR Code Link to This Post\n",
"Become a Nationally Certified Phlebotomist in ONE day!\n",
"\n",
"Learn blood drawing skills theoretically as well as practically in ONE day workshop.\n",
"You will learn procedure, practice, perform and earn your Certification!\n",
"\n",
"Doctors and Highly qualified healthcare professionals with over 25 years of experience will provide Hands On Training (HOT)\n",
"• Various parts of the Phlebotomy Equipment\n",
"• Unlimited practice\n",
"• You may bring volunteers for practical training\n",
"• Upon successful completion of the skill assessments and training,\n",
"\n",
"You will earn your title of: Certified Phlebotomy Technician.\n",
"\n",
"Registration Fee: $ 50/-\n",
"Workshop Fee: $ 299/- (Includes: Training workshop, Materials and Certification)\n",
"\n",
"National Certification (NACT) will be available at 50% discount price: ONLY $ 55/- (Original $ 110/-)\n",
"\n",
"Date: 10/06/2018 (Saturday)\n",
"Rain Date: 10/13/2018 (Saturday)\n",
"Time: 9AM to 3PM\n",
"\n",
"\n",
"*** Looking to TEACH in our WORKSHOP, send resume\n",
"\n",
"Workshop Site:\n",
"3000 John F Kennedy Blvd. #310\n",
"Jersey City, NJ 07306\n",
"\n",
"Call: Five Five One 222 4461\n",
"\n",
"FREE Parking available (Original cost $ 10/-)\n",
"FREE Soft Drinks and Snacks will be provided\n",
"\n",
"---Title---\n",
"Cleaning, Pest Proofing Astoria, Queens\n",
"---content---\n",
"QR Code Link to This Post\n",
"I live in Astoria, Queens and provide cleaning service in the area, You provide me with the supplies and I do the cleaning for you. Weekly, bi-monthly, monthly and even a one shot deal. And yes we clean windows.\n",
"Also, I do pest proofing my many years in the business have taught me to always pest proof. If you would like to eraticade the pests.\n",
"I also travel to other areas beside Astoria but you will need to cover cab costs. Due to I don't have a car.\n",
"\n",
"Flexible hours\n",
"Day or Night\n",
"Home or Not Home\n",
"Trustworthy\n",
"\n",
"50 Dollars a room\n",
"\n",
"Pest Proofing requires me to inspect the area's $35. dollars inspection.\n",
"\n",
"\n",
"I could be reached directly on my cell @ show contact info\n",
"\n",
"---Title---\n",
"Please help\n",
"---content---\n",
"QR Code Link to This Post\n",
"Hello Craigslist. Can you please help us Identify the guy dressed as a clown in this video?\n",
"https://youtu.be/CG1yTECHJdY\n",
"Who is this guy.\n",
"\n",
"---Title---\n",
"Please help\n",
"---content---\n",
"QR Code Link to This Post\n",
"Hello. Can someone please help us Identify the guy who is dressed as a clown in this video? Thank you.\n",
"https://youtu.be/CG1yTECHJdY\n",
"Who is this guy?\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"SPJ INVESTIGATIONS CALL FOR FREE CONSULT show contact info OR EMAIL\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"CALL FOR FREE show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"© craigslist - Map data © OpenStreetMap\n",
"(google map)\n",
"\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"CALL FOR FREE show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"SPJ INVESTIGATIONS CALL FOR FREE show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"SPJ INVESTIGATIONS CALL FOR FREE CONSULT show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"SPJ INVESTIGATIONS CALL FOR FREE CONSULT show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"FIND OUT ANYTHING ABOUT ANYONE YOU NAME IT ANYTHING\n",
"---content---\n",
"QR Code Link to This Post\n",
"FIND OUT\n",
"ADDRESS\n",
"CAR\n",
"CELL PHONE NUMBER\n",
"BACKGROUND CHECK\n",
"ANYTHING AND ANY THING\n",
"CHEATING PARTNER\n",
"BANK ACCOUNTS\n",
"PROPERTIES\n",
"SPJ INVESTIGATIONS CALL FOR FREE CONSULT show contact info OR EMAIL\n",
"\n",
"---Title---\n",
"Do you need to borrow a few dollars\n",
"---content---\n",
"QR Code Link to This Post\n",
"If you are in need of financing or debt consolidation then this is for you! If you need a business loan call me at show contact info . To apply click on the link below.\n",
"\n",
"\n",
"https://www.lendingclub.com/site/borrow/personal-loans?lc_referrer=Member_98090815\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into NYC / PA / Northern NJ. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish Speakers Needed)\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"Looking for Motivated Individuals (Spanish)...Work from Anywhere!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Fast Growing Technologies Company Looking for Public Speaker, to help with expansion into Northern NJ / PA / NYC area. This position provides unlimited income potential. Applicant must be a self starter. We will provide Training & Support and flexible schedule and work from home opportunity.\n",
"\n",
"Compensation: Weekly Income and Monthly Residual Income and Bonuses based on performance\n",
"\n",
"If interested please contact us.\n",
"\n",
"Contact: show contact info or show contact info\n",
"\n",
"---Title---\n",
"This is the liberal arts college for your child!\n",
"---content---\n",
"QR Code Link to This Post\n",
"In the interest of protecting invaluable flora from this invasive species, Vassar College takes action every year! Vassar teams with federally-licensed marksmen to dispose of them. The venison, Vassar told citizens years ago, is donated to food pantries. Investigations into this claim have found it to be false. Following extensive lab analysis, the carcasses are disposed of as waste.\n",
"\n",
"WAY TO GO, VASSAR!!!\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"President Trump absolutely right to rethink earlier position on Iraq.\n",
"---content---\n",
"QR Code Link to This Post\n",
"The annual moment of silence and the reading of names of victims of 9/11 is indeed called for; but how about a primal scream for all the tens of thousand human lives taken by the United States military, its contractors and allies in the course of perpetual and cowardly war on an Iraq already on its knees prior our invasion following years of brutalizing sanctions (the invasion bred ISIS and enriched the corrupt Bush/Cheney/Rice/Powell administration , but impoverished the United States); and those lives being taken now daily by American drones in the perpetual war of aggression on innocent civilians of Afghanistan?\n",
"\n",
"Bush, Cheney, Powell and Rice should be tried for treason. And Rice will be soon be condescending to us, telling us what an American is on PBS.\n",
"\n",
"9/11 is the tragedy--never legitimately tied to Iraq-- that altered the character and destiny of the United States while doing irrevocable harm to its victims and their families, but the lives lost must not be used to justify, and sadly, to glorify United States war crimes and terrorism masquerading as the defense of Democracy.\n",
"\n",
"---Title---\n",
"WANT A JOB BUT YOU ARE INJURED WE CAN GET YOU ONE FOR FREE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"\n",
"DID YOU GET INJURED RECENTLY? IF YOUR INJURY IS NOT ALLOWING YOU TO FIND WORK THEN IT IS CLASSIFIED AS A DISABILITY. ARE YOU DEPRESSED BECAUSE YOU CAN'T FIND WORK, THEN IT IS CLASSIFIED AS A DISABILITY. WHICH MEANS GOVERNMENT WILL PAY YOU FOR IT! SEE IF YOU QUALIFY TODAY!\n",
"\n",
"\n",
"http://WWW.IF.UCANTWORK.ORG/?ID=WESNY.02154\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"compensation: OBAMA CHANGED THE DISABILITY REQUIREMENTS,\n",
"\n",
"---Title---\n",
"Local company helping people who are not able to work.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Getting paid for your disability has never been this easy. Due to the new requirements to be eligible for disability benefits has made it easier for local residents to be accepted. Check our website out for a list of eligible disabilities (mental and physical) if you qualify. We will get you paid it is that simple.\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"compensation: Are you sure you're not disabled?\n",
"\n",
"---Title---\n",
"Applicants Who Are 30 Years Of Age And Older Who Unable To Work .\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"\n",
"\n",
"GETTINg paid for your disaBILITY HAS NEVER BEEN THIS easy. due to the new requirments to be eligible for disabILITY BENefits has made it easier for local residents to be acCEPTED. CHECK OUR website out for a list of eligible disabilites (mental and PHYSICAL) IF YOu qualify. we will get you paid it is that simple. ssdfund dot com\n",
"\n",
"---Title---\n",
"**PAID YOONLA! Market Research-Opinion Study -$200 Just 1-Hour studie\n",
"---content---\n",
"QR Code Link to This Post\n",
"We are recruiting participants for a paid opinion Yoonla Research Study to be held in San Diego on Saturday evening, November 25th from 6:00pm - 9:00pm. Participants are paid $200 for their time to participate in this study.\n",
"You will be listening to attorneys discuss a case and give your opinions on the case.\n",
"\n",
"You are eligible to participate if you have a 4 year degree or higher or are employed full time and between the ages of 18 - 68. Please do not respond to this job post if you have EVER participated in a paid opinion Yoonla Research Study in the past.\n",
"We are NOT recruiting Past participants.\n",
"\n",
"\n",
"If you are interested in participating in this study please follow this link to learn more and sign up here;\n",
"\n",
"http://www.Great-Work.MoneyMakingMachine.Host/?id=89i98ed\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Today!\n",
"\n",
"Completion of a survey does not constitute confirmation for participation. If you are selected to participate, you will be contacted by one of our team members to complete the screening process and confirm your participation. All surveys are for market research purposes only. There will be no direct sales or promotions as a result of your participation.\n",
"\n",
"---Title---\n",
"Work On Your Own Set Schedule -- Paid Surveys -- $825 Weekly\n",
"---content---\n",
"QR Code Link to This Post\n",
"Most homebodies and unemployed professionals like to use some of their\n",
"extra time while at home making extra weekly income working with our\n",
"team.\n",
"\n",
"Our database has plenty of paid consumer surveys that need to be filled out\n",
"in your area.\n",
"\n",
"You will be given the option to select and fill out only the surveys that interest\n",
"you the most.\n",
"\n",
"Spots are filling fast so get registered on our site if interested.\n",
"\n",
"Visit us at:\n",
"\n",
"http://WWW.Joining-Now.MoneyMachine.Website/?id=lg90to9\n",
"\n",
"---Title---\n",
"Want to Make Extra Money This Week? Join Our Team Working Part-Time\n",
"---content---\n",
"QR Code Link to This Post\n",
"Could you use a few thousand dollars extra every month? Join our team and that can be a reality. We are looking for people to complete surveys, participate in research studies, and serve as focus group members. We offer HIGH PAY for your time and opinions. To join us, visit\n",
"\n",
"\n",
"You must complete the profile at http://Millionaire.FastEarnSurveys.Club//id=if89r\n",
"\n",
"\n",
"\n",
"\n",
"And provide the needed information. You will then be sent a verification email. Follow the instructions so you can start work right away.\n",
"\n",
"---Title---\n",
"JEWELRY REPAIRS WHILE YOU WAIT!! WE BUY GOLD, TOP PRICES PAID $$!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Jewelry repairs while you wait!! We buy gold, top $$ paid!!\n",
"\n",
"---Title---\n",
"WE PAY TOP $$ FOR YOUR OLD, BROKEN OR UNWANTED GOLD!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"WE PAY TOP $$ FOR YOUR OLD, BROKEN OR UNWANTED GOLD!!\n",
"\n",
"---Title---\n",
"WANT FAST CASH FOR YOUR GOLD?WE PAY TOP$$! JEWELRY REPAIRS WHILE U WAI\n",
"---content---\n",
"QR Code Link to This Post\n",
"Want fast cash for your gold? W pay top $$! Jewelry repairs while you wait.\n",
"\n",
"---Title---\n",
"Lose 5 pounds in 5 days & Make Money\n",
"---content---\n",
"QR Code Link to This Post\n",
"Lose 5 Pounds in 5 Days & Make Money with Total Life Changes Flush Away The Pounds And Get In Shape. Detoxify Your Body. Burn Unwanted Fat. Lose weight Your Very First Day. Make All Your Friends Jealous! Go To www.totallifechanges.com/loseweightin5days\n",
"text me for diet plan show contact info\n",
"\n",
"---Title---\n",
"We Buy Smartphones & iPads\n",
"---content---\n",
"QR Code Link to This Post\n",
"Get paid 💰💰💰 by selling your used/new smartphone or tablet. We are always available to give you a quote on your device to see what its worth. If you are interested call us @ show contact info .\n",
"Lets see how much Cash we can put in your pocket!\n",
"\n",
"---Title---\n",
"Get Paid CASH for Your Used iPhones & iPads\n",
"---content---\n",
"QR Code Link to This Post\n",
"I'm looking to buy your unwanted used iPhones and iPads. I offer fair prices and a professional\n",
"courteous service. If your interested in finding out what your device is worth feel free\n",
"to contact me for a quote at show contact info\n",
"I look forward to hearing from you!\n",
"\n",
"---Title---\n",
"$$$ Top pay for your test strips $$\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date after 5/19\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me Anytime\n",
"\n",
"---Title---\n",
"Need extra cash???\n",
"---content---\n",
"QR Code Link to This Post\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me what you have\n",
"\n",
"---Title---\n",
"Need cash, no loans!!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your extra diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Call or text for prices\n",
"\n",
"---Title---\n",
"Need extra cash???\n",
"---content---\n",
"QR Code Link to This Post\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me what you have\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"Gospel Cafe event\n",
"---content---\n",
"QR Code Link to This Post\n",
"We invite PEOPLE to come and enjoy some live music!\n",
"Snacks and drinks provided.\n",
"Donations will be awarded to the musicians!\n",
"\n",
"---Title---\n",
"MIRACLE AT HAND. THANK YOU SAINT JUDE!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"This auto body/collision shop is SCAM\n",
"---content---\n",
"QR Code Link to This Post\n",
"You can see i tell truth by looking up the lawsuits,against them at nyscourts.gov\n",
"\n",
"---Title---\n",
"Dont get ripped off by the Ossining Liars Cub\n",
"---content---\n",
"QR Code Link to This Post\n",
"Body Shop over 100 lawsuits, Mike Martone cheats on his fat perjuring wife, and will cheat you too, sons are coke users, their mouthpiece Shyster Anthony M Giordano of Giordano Law loves to perjure himself and clients, free convicted pedophiles on technicalities and use political connections to reduce his property taxes on his McMansion. Did I mention $500 fine for financial impropriety from Westchester Democrats as CFO? Oh yeah, he ran for Cortlandt Manor Town Justice and was voted down by his own town! Almost forgot, the Independent Party Sued him for voter rigging!!! What a winner.\n",
"\n",
"---Title---\n",
"Looking for friendship and sex\n",
"---content---\n",
"QR Code Link to This Post\n",
"I am a self assured curious woman with average looks. I have always had the opinion that sex is better when you trust the other person enough to open up and explore. Text my number: 5\\four\\0\\9\\nine\\1\\1\\two\\zero\\0.\n",
"\n",
"---Title---\n",
"Anthony M Giordano Law Firm Scores!!!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Giordano scored another loss by trying to extricate some lazy bum ex-student to pay his damn loan back. So the guy owes 8k and Giordano, President and Founder of the Ossining Liars Club, gets him off to only pay 5k. Only problem is the debtor cheapskate would have had to pay Big G at least 2-4k to do the case. And that's cheap. So guess who gets screwed? The debtor who deserves it, the creditor who doesn't, but to stop the bleeding cost of litigation settles. Guess who else takes it in the azz? You and me, the taxpayer who foots the bill for Giordanos mis-use of the courts, judges, clerks, the actual courthouse, the bathrooms he loves to spend time in, court officers, you name it. Giordano screws it. Thanks Tony.\n",
"\n",
"---Title---\n",
"Anthony M Giordano Law Firm Scores!!!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Giordano scored another loss by trying to extricate some lazy bum ex-student to pay his damn loan back. So the guy owes 8k and Giordano, President and Founder of the Ossining Liars Club, gets him off to only pay 5k. Only problem is the debtor cheapskate would have had to pay Big G at least 2-4k to do the case. And that's cheap. So guess who gets screwed? The debtor who deserves it, the creditor who doesn't, but to stop the bleeding cost of litigation settles. Guess who else takes it in the azz? You and me, the taxpayer who foots the bill for Giordanos mis-use of the courts, judges, clerks, the actual courthouse, the bathrooms he loves to spend time in, court officers, you name it. Giordano screws it. Thanks Tony.\n",
"\n",
"---Title---\n",
"This auto body/collision shop is SCAM\n",
"---content---\n",
"QR Code Link to This Post\n",
"You can see i tell truth by looking up the lawsuits,against them at nyscourts.gov\n",
"\n",
"---Title---\n",
"Part-Time Team Members Needed Right Away! Earn $1000s Per Week **\n",
"---content---\n",
"QR Code Link to This Post\n",
"Are you ready to supplement your income? Work from wherever you choose and on your own schedule. We have a need for team members for our marketing unit. You will respond to surveys, participate in research studies, and join focus groups. To be a member, you must be 18 or older, have a computer or mobile device, and have high-speed Internet access. In return, you get paid TOP DOLLAR - up to $100 or more per hour - with pay being distributed weekly. Now is the time to get on board. Space is limited and this is a rare opportunity. If you are ready to join us, go to\n",
"Here!\n",
"\n",
"\n",
"http://www.Earning-Today.QuickSurveys.Club/?id=7jd78rj\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"And complete the profile. Your profile will then be matched with open tasks. You will get invitations for open jobs and you can participate in as few or as many tasks as you choose. You have unlimited earning potential! Now is the time to seize this opportunity and start earning extra cash! Some of our team members make $1,000 or more per week! Hurry before all openings are filled.\n",
"\n",
"---Title---\n",
"A wise lesson to all!\n",
"---content---\n",
"QR Code Link to This Post\n",
"This has come to mean the world to me. This is the best paying, no experience necessary, work at home on your own computer, make your own hours.... you can get make money at your own pace. There is nothing you have to spend... Click, copy, paste, start earning,,,\n",
"\n",
"http://bestdailyjob.com/?userid=55617\n",
"\n",
"You have nothing to lose to try, and maybe a whole lot to gain!\n",
"\n",
"---Title---\n",
"Come to our fitness class\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"Bayside queens fitness class to attend\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"Fitness in class\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"Bayside queens fitness class to attend\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"Bayside queens fitness class to attend\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"Fitness in class\n",
"---content---\n",
"QR Code Link to This Post\n",
"We offer 8 classes per month\n",
"Give us a call to check out our monthly fee\n",
"You won't be disappointed\n",
"\n",
"---Title---\n",
"IPHONE 6S Rose Gold. Sprint Carrier. EXCELLENT CONDITION.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Rose Gold 64GB. Sprint Carrier. Includes phone case. Price $300 or Best Offer. Pickup only. Contact me show contact info\n",
"for more details.\n",
"\n",
"---Title---\n",
"Headshots $49, Reels $199, Websites $99 www.Actors-Depot.com\n",
"---content---\n",
"QR Code Link to This Post\n",
"Headshots $49, Reels $199, Websites $99\n",
"\n",
"ONLY AT THE ACTORS DEPOT\n",
"\n",
"www.Actors-Depot.com\n",
"\n",
"NY's #1 Acting Service!\n",
"\n",
"Get Started In Acting Today!\n",
"\n",
"www.Actors-Depot.com\n",
"\n",
"---Title---\n",
"Headshots $49, Reels $199, Websites $99 www.Actors-Depot.com\n",
"---content---\n",
"QR Code Link to This Post\n",
"Headshots $49, Reels $199, Websites $99\n",
"\n",
"ONLY AT THE ACTORS DEPOT\n",
"\n",
"www.Actors-Depot.com\n",
"\n",
"NY's #1 Acting Service!\n",
"\n",
"Get Started In Acting Today!\n",
"\n",
"www.Actors-Depot.com\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"Apocalypse Now\n",
"---content---\n",
"QR Code Link to This Post\n",
"Led Zeppelin and the Grateful Dead were performing in San Francisco the night the Antichrist was born on January 5, 1969. Eighteen thousand landslides occurred on January 5, 1982 that killed 33 in San Francisco on the 49th anniversary of the start of the Golden Gate Bridge which coinicided with Marilyn Mansons 13th birthday. One year later an earthquake took 15000 lives in Vietnam. On January 5, 2018 Manson turned 49 and Kodovar erupted for the first time in recorded history covering the island in lava. Philadelphia is one of the churches of Revelation. The Eagles won there first Superbowl in 2018. Philly to Canton Ohio is 333 miles as the crow flies. Canton is where Marilyn Manson was born and is home of the football Hall of Fame. Canton to Chicago is 333 miles as the crow flies. This line adds up to the 666 the number of the beast. Chicago is where Anton Lavey published the satanic the same year Manson was born. They became friends after meeting at Anton's \"Black house\" in San Francisco where he founded the church of satan. The pope chose his papal name St. Francis after the same Saint San Francisco is named after. Alcatraz is named the Rock which stands for Peter the Rock. When the Birdman of Alcatraz died he was transported to Metropolis Illinois, Superman's hometown. The steel used to build the Golden Gate is named after Jesus's hometown, Bethlehem. Metropolis is 333 miles as the crow flies from my hometown Ft. Wayne. In the movie \"the Birdman of Alcatraz\" the first bird Robert saves is a Sparrow. Robert names the Sparrow Jack. In the \"Pirates of the Caribbean Johny Depp plays Captain Jack Sparrow. Johnny Depp, the Birdman of Miami, and Birdman the rapper are all named Christopher. The movie Birdman was originally supposed to end with Johnny Depp. Marilyn Manson and Johhny Depp have become best friends . In 1996 Manson said \"Hopefully I will be remembered for the one who brought an end to Christianity.\" That same year he released \"Antichrist Superstar.\" I was born on January 27, 1980 and Robert was on January 28, 1890. On January 28, 1986 the space shuttle Challenger exploded killing all 7 on board. Every ten year anniversary since the Challenger explosion someone who has had a major influence on society has died and they involve a bird, a plane, and Superman. On the first 10 year anniversary of the Challenger Jerry Siegal the creator of Superman died on January 28, 1996. 10 years later Rabbi Yitskah Kaduri died January 28, 2006. The Rabbi had the largest funeral in Israel's history and is best known for a letter opened a year after his death which claims Jesus is the true Messiah. Ten years later Signe Toly and Paul Kantner of Jefferson Airplane from San Francisco died on January 28, 2016. On the 5 year anniversary of the death of the Rabbi on January 28, 2011 and Angel appeared over the Dome of Rock in Jerusalem. George Reeves who was the only Superman to be killed was born on Manson's birthday which also coincides with National bird day in the US.  Revelation says this about birds. \"Then I saw an angel standing in the sun; and he cried with a loud voice, saying to all the birds that fly in the midst of heaven, 'Come and gather together for the supper of the great God, that you may eat the flesh of kings, the flesh of captains, the flesh of mighty men.\" This is referring to birds feasting on the antichrist and his armies. The San Francisco flag is a Phoenix rising from the ashes. Morgan Stanley who inspired the book \"Heart of Darkness\" was born 49 years before the Birdman on January 28, 1841. The Birdman was originally sent to Alcatraz for stabbing a guard through the heart. In 1996 I became paralyzed the first time I heard the song \"Beautiful People.\" In 2001 a demons voice guided me to Mansons autobiography \"The Long Hard Road out Of Hell.\" In 2003 Carmelo Anthony led the Syracuse Orangemen to their first NCAA title in 2003 over Kansas. The next day I walked the yellow brick road after almost drowning where the St. Joseph and St. Marys rivers meet to form the Miami River. The first person I met at St. Joe after the river was a man named OZ who had a branding on his forearm that had the \"Echo\" logo on it. The Rhinoceros logo was the same size and shape of the logo on the side of the international orange Echo shoes I was given earlier that day by my friend Scot after I got out of the river barefoot. \"the Dark side of the Rainbow\" is a story about how Pink Floyds Darkside of the moon album syncs up with the Wizard of Oz. The story originated with a Journal Gazette newspaper article in Ft Wayne the same city I walked the yellow brick road in 8 years later in 2003, the same year I climbed the Anthony Wayne building on St. Patrick's day. The Wizard of OZ is a story about the defeat of the antichrist. The water making the Witch melt is a metaphor for baptism. Marilyn Manson is the Wicked Witch of the West.The teams in Fort Wayne are named after the Wizard of OZ. The Tin Caps are the baseball team which would be The Tin Woodsman. Before they were the Tin caps they were the Wizards. Johnny Appleseed is a Tin woodsman in real life who is buried in Ft. Wayne.The basketball team is the Ft. Wayne Mad Ants which would be the \"the Aunty M's\" The Flint Choppers at one time became the Ft. Wayne Komets. Nick Chopper is the Tinman's name. In \"Return to Oz\" Dorothy is sent to the psyche ward. The Doctor tries to give her a shock treatment then lighting knocks the power out. Dorothy escapes out of a window and gets swept away by a river which takes her to OZ. In 2003 I got swept away by a river where I ended up meeting OZ at St. Joe. The Doctor then tried to give me a shock treatment. I tried to escape out of the window as well. I haven't aged since the river incident in 2003, and I could pass any lie detector test proving I'm Peter Pan. Marshall Mathers rapped as M&M and I used to Rap as Reaces Peaces. We are both left handed and have blue eyes. M&M was born in St. Joseph Missouri and I was born at St. Joseph Hospital. M&M's middle name is Bruce and he grew up in Wayne county. Batman is Bruce Wayne and Wayne was actually named after Anthony Wayne. When the Romans came to kill Peter he told them to crucify him upside down which they did. Peter stated he was not worthy to be crusified like. This makes Peter the Rock the original Batman.There was a man on the Jayhawks team in 2003 whose name is Wayne Anthony the founder of Ft. Wayne's name backwards. Wayne who later won an NBA title with Miami was injured and could not play in that championship game. Wayne is now a pastor. The son of man is Jesus and the son of man  backwards is Man son. Peyton Manning went to play for a horse of a different color, from the Colts to the Broncos. Brock OS(OZ) Weiller Quarterbacked most of there Title winning season. Manning's favorite thing to say at the line of scrimmage was\"Omaha\", which is written on the side of the Hot Air Balloon at the end of the Wizard of Oz. In Superbowl 48 Peyton was defeated by, \"the Emerald city\", Seattle. In Super Bowl 50 Peyton defeated Superman(Cam) at the 49ers Cathedral. I was born on January 27, the same as Nick Mason of Pink Floyd. The Dark side of the moon starts with the song \"Breathe\" which has a lyric \"run rabbit run.\" Eminem played \"B Rabbit\" in the movie 8 mile which is based on \"Run rabbit run\" written by John Updyke. John died 7 years later on my birthday. M&M released the song \"the Yellow Brick road\" and Elton John released the album \"leaving the Yellow Brick road.\" At the 2001 Grammys they performed together the song \"Stan.\" M&M released his autobiography \"the dark side of Eminem\" the chapter \"Stan\" starts on my birthday page 127. Stan Lee created Spiderman and when Dorothy runs away the first person she meets is professor Marvel. Marvel comics is where Spiderman originated. Andre the Giant who shares my last name and who also climbed walls of insanity in the Princess Bride died on my 13th Birthday 1/27/93. Andre was born exactly 127 miles from where my Great, Great, Grandfather was born in Belfort France. Belfort is the birthplace of the man who sculpted the statue of Liberty. My name Nickolas Giant contains two New York teams. Manson has been working on the movie \"Phantasmagoria\" where he plays an evil Lewis Carrol when Lewis worked out of a college named after Jesus. Carrol who wrote Alice in Wonderland was also born on January 27. Johnny Depp played the Mad Hatter and the founder of Ft. Wayne's is Mad Anthony Wayne. Barbara Hershey who played Mary Magdalene in Oliver Stone's last Temptation of Christ was on the set of a movie when she felt the Spirit of a Seagull enter her body after it died. She then changed her last name to Seagull. Ja Rule who I thought was trying to to kill me in 2003 played an inmate on Alcatraz alongside Steven Seagull under the character name \"Nickolas\" in the 2002 movie \"Half Past Dead.\" In 2003 Ja Rule was actually trying to murder 50 Cent. There is a reason 50 got shot 9 times and is still here. In 2001 After a  trip back from Detroit with my best friend Life a red orb appeared and told me it was my Angel of light, then it told me I was Jesus. Later I thanked God for telling me I was Jesus, then the voice told me I was never coming back. I got home an hour later and my girlfriend told me while I was gone a voice told her I was never coming back. I thought I committed am unforgivable sin by believing I was Jesus. I asked for forgiveness for believing the voice. I got depressed and tried to hang myself but the hook ripped out of the ceiling and I decided not to commit suicide. Later I read Corinthians 11:14, which says \"The devil will come to you as an Angel of light.\"  This is what the orb told me before it said I was Jesus. I realized then that it was the devil who personally visited me and tried to get deceive me to kill myself. Once I found out the devil felt so threatened by me I knew I was here for a reason.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"officiant wedding announcement Central Park Belvedere Castle closed\n",
"---content---\n",
"QR Code Link to This Post\n",
"The Belvedere Castle, located in the heart of Central Park, has long been a major tourist landmark. Those visiting New York City often flock to the fantasy-inspired building to take photos and get the best panoramic views of the park below. But, for those traveling to the famed location soon, we're sorry to say you'll be out of luck because the castle will be closed for construction for the rest of 2018.\n",
"\n",
"\"Our restoration of the Belvedere will address the overall condition of its structures and terraces, modernize systems that support its preservation and use, and restore lost aspects of the historic design,\" the Central Park Conservancy said in a statement. \"A future phase of this project will include providing an accessible route to the Belvedere, one of the most heavily visited destinations in the Park.\"\n",
"\n",
"no worries many options available\n",
"\n",
"more info\n",
"https://ulcministernegron.wixsite.com/nycweddingofficiant/single-post/2018/02/24/Sad-news-for-2018-wedding-season-Major-Announcement-\n",
"\n",
"---Title---\n",
"Asian grocery delivery service Znackers now available in NYC\n",
"---content---\n",
"QR Code Link to This Post\n",
"Dear Friends,\n",
"\n",
"Today we launched NYC's low price delivery service Znackers. We deliver noodles & rice, meats & seafood, fruits & vegetables, snacks, soy products, meals, dairy & eggs, drinks & beverages, and snacks. Check us out at https://znackers.com\n",
"\n",
"We all know how expensive it can be to live in NYC. See better prices elsewhere? Let us know so that we can consider adjusting our prices ASAP to be competitive. If you find a lower price for the same item advertised online available for delivery within 48 hours of your order placement, we will credit you the difference towards your next Znackers purchase at our sole discretion.\n",
"\n",
"Customers select from available delivery times. Orders placed by 7:00 PM ships as soon as the next morning. The minimum order amount is $30, and we charge $5.99 for next-day delivery anywhere in NYC.\n",
"\n",
"Need help with your order or finding an item? Contact us by phone or email.\n",
"\n",
"---Title---\n",
"Text Editor & Translator\n",
"---content---\n",
"QR Code Link to This Post\n",
"Diana Bloom, Ph.D.\n",
"Editor of Fiction and Nonfiction Texts in English\n",
"Translator of Texts from French to English\n",
"\n",
"\n",
"show contact info and show contact info\n",
"https://web.archive.org/web/20140911082456/http://mysite.verizon.net/dianabloom/\n",
"\n",
"---Title---\n",
"REPAIR YOUR CREDIT AND START 2018 RIGHT!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Tired of living day to day due to a poor credit score?\n",
"\n",
"Our law firm repairs your credit so you can live the life you desire.\n",
"\n",
"We challenge: Bankruptcies, Tax Liens, Foreclosures, Judgments, Repossessions, Child Support and more.\n",
"\n",
"Ask us how you can get your credit worked on for FREE.\n",
"\n",
"Call now: show contact info x 808\n",
"\n",
"---Title---\n",
"Computer Assistance On-Site\n",
"---content---\n",
"QR Code Link to This Post\n",
"If you need help with your computer or device, and you do not want to leave it in a store, call me, and I go to you. You can trust I will not invade your privacy. Your personal information is always safe and private. My work is professional and friendly.\n",
"\n",
"Reliable and affordable assistance. Receive help on-site, same-day service. Get in touch to save my contacts.\n",
"\n",
"I also install smart home devices like Google Assistant, Alexa Echo, Roku, Apple TV, Phillips, and many more.\n",
"\n",
"A piece of advice: if you see a pop-up window asking you to call a phone number or if you receive a call from someone claiming to be from a tech company, it may be a scam. Never give your credit card information or remote access to your computer.\n",
"\n",
"---Title---\n",
"ODD JOB SERVICES FLOORING INSTALLATIONS+ CLICKHERE\n",
"---content---\n",
"QR Code Link to This Post\n",
"Need affordable projects completed!!!!\n",
"\n",
"Weekend or After work projects to complex for just your hands???!!!\n",
"\n",
"\n",
"Contact us at show contact info call or text\n",
"\n",
"Flooring installation\n",
"Tile wood Vynil ceramic linoleum\n",
"Old flooring removed as well\n",
"\n",
"Painting Projects\n",
"Basement bedrooms kitchen Bath\n",
"Outdoor&Indoor\n",
"\n",
"Moving and Delivery Assistance\n",
"Truck provided\n",
"\n",
"Cleanup Projects\n",
"Construction debris Furniture Household\n",
"Dirt Rock Sand Scrap Metals Removed\n",
"\n",
"Furniture assembly Tv mounted\n",
"Locks installed(replaced)\n",
"\n",
"Garage Attic Basement organization projects\n",
"\n",
"Yard cleanup Small Tree removal up to 20 ft\n",
"\n",
"Yard maintenance for vacant or overgrown weeds bushes ect.\n",
"\n",
"Cash and Credit excepted\n",
"\n",
"---Title---\n",
"The best M-F 10 p.m. news broadcasts are Ch 5 and 11.\n",
"---content---\n",
"QR Code Link to This Post\n",
"The best M-F 10 p.m. news broadcasts are Ch 5 and Ch 11.\n",
"\n",
"NY 1 at 10 p.m. is just dull. Maybe it's time for a new anchor news reader.\n",
"\n",
"---Title---\n",
"African American with a degree in BBC seeks female tutor tonight\n",
"---content---\n",
"QR Code Link to This Post\n",
"black man with a masters degree in BBC ology seeks curvy female tutor to help with bbc studies\n",
"\n",
"mr key mr show contact info\n",
"\n",
"---Title---\n",
"Exoic kittens for re homing\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking to re home friendly kittens\n",
"\n",
"\n",
"\n",
"\n",
"Ask for adoption fee: $$$\n",
"\n",
"\n",
"\n",
"Healthy Parents:\n",
"Father- Pure Bred all white long hair doll face Persian\n",
"Mother- Dark brown points with beige coat Himalayan (Siamese mix Persian)\n",
"short hair and short tail\n",
"\n",
"\n",
"If you go out and purchase a kitten in the city you would probably pay double with them experiencing possible harsh conditions than what I'm asking for so it's reasonable to adopt from a family owned cat than instead of paying thousands of dollars for a kitten that was probably raised in unsanitary conditions.\n",
"\n",
"We raise our kittens at home with many toys, scratching post and with different interactions like having them introduced to small children. They are playful, friendly and ready for any adventure.\n",
"\n",
"Seeking safe home. Tell me about your self.\n",
"\n",
"\n",
"Email me for any questions you may have.\n",
"Serious inquire leave contact info.\n",
"\n",
"Thank you.\n",
"\n",
"---Title---\n",
"Fast Affordable Reliable Clean Out Services\n",
"---content---\n",
"QR Code Link to This Post\n",
"HOURLY RATES!!!!\n",
"CALL TO SCHEDULE!!\n",
"\n",
"Fast Affordable Reliable Honest\n",
"Trash Removal Services\n",
"\n",
"In business over 10yrs\n",
"\n",
"Lots of satisfied customers of all races and ages!!!\n",
"\n",
"Serviced all 5 borough and the counties\n",
"Westchester and Jersey City\n",
"\n",
"Removals of\n",
"Construction Debris Furniture Mattress Removal Garage Attic Basement Backyard\n",
"Dirt Rock Sand Tree debris\n",
"Cardboard Plastic Paper Book 📚 Disposal\n",
"Waste Glass Pick up and removal\n",
"Storage Cellar clean out cleanup\n",
"Move in/Move Out cleanup\n",
"Post Construction cleanup\n",
"Massive cleanup capability\n",
"Estate cleanup clean out\n",
"\n",
"If your looking for a great Service on Craigslist give us a try😀\n",
"\n",
"🆓 estimate\n",
"Send 🎥 pictures\n",
"💵Or💳 accepted\n",
"\n",
"📱 Or Text show contact info\n",
"\n",
"Day or Evening services available\n",
"\n",
"\n",
"Look forward to making the mess disappear\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Look 👀 out for our flyer as seen in picture 2. Find that flyer on your door or mailbox means one of your neighbors became a satisfied customer!!!😀\n",
"\n",
"---Title---\n",
"Handyman Services Odd Job Services Painting Household Repairs Cleanup+\n",
"---content---\n",
"QR Code Link to This Post\n",
"Handyman Services $99&up\n",
"\n",
"Painting Tiling Flooring Lighting installed Door installation Lock installation\n",
"Furniture Assembly Tv Mounting ect. Light Moving and Moving Assistance\n",
"Clean Out Services Garage Basement and Attic Organizing\n",
"Pavers repaired/Installed Masonry repairs Driveway repairs\n",
"Asphalt potholes Asphalt Resurfacing Fencing installed/Repaired\n",
"Epoxy flooring installation Easy install stick down tile installation\n",
"Wall repairs Flooring repairs Plumbing repairs/Installation\n",
"Oil Tank Removal/Replacement ( Oil Removal Provided)\n",
"\n",
"Serving: Queens Brooklyn Manhattan Bronx Nassau\n",
"For all Odd Job and Handy Repairs Call or Text show contact info\n",
"For evening Services Scheduling or Info Call show contact info\n",
"\n",
"\n",
"Cash or Credit accepted\n",
"\n",
"---Title---\n",
"I'm looking for a mature companionship.\n",
"---content---\n",
"QR Code Link to This Post\n",
"I'm a man looking for an other person to have time to watching t.v. watch the games and movies together etc.. i'm a good guy looking for the same, let me know if you are interested. Thank you.\n",
"\n",
"---Title---\n",
"Drinks then NSA sex\n",
"---content---\n",
"QR Code Link to This Post\n",
"I know there are a ton of bots / professionals on here but I'm just a real woman who wants some physical attention. Text my number: 5\\four\\0\\9\\nine\\1\\1\\two\\zero\\0.\n",
"\n",
"---Title---\n",
"Thank you Saint Jude.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"MIRACLE AT HAND. THANK YOU SAINT JUDE!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"WEBSITE FOR SALE ( $1 million a year potential )\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"\n",
"GENERAL LABOR OUTSOURCING WEBSITE FOR SALE , THE BASIC FUNCTION IS MATCHING JOB SEEKERS AND CLIENTS LIKE TASK RABBIT AND HANDY.COM .BEEN IN BUSINESS SINCE 2012 SO THATS\n",
"6 YEARS OF SWEAT EQUITY AND INVESTMENT WITH A STEADY MONTHLY INCOME . ALSO WITH A,BUILT IN REVOLVING CLIENT BASE OF 10,000 REPEAT CLIENTS . THIS IS THE UBER OF THE GENERAL LABOR INDUSTRY AND THE FUTURE , IM SELLING FOR\n",
"$250,000, BUT IM ALSO INTERESTED IN INVESTORS\n",
"CHECK OUT THE SITE\n",
"HTTP://WWW.CHEAPLABOR4HIRE.COM/\n",
"\n",
"CALL SCOTT MCDONALD IF INTERESTED show contact info\n",
"\n",
"---Title---\n",
"Need cash, no loans!!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your extra diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Call or text for prices\n",
"\n",
"---Title---\n",
"$$$ Top pay for your test strips $$\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date after 5/19\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me Anytime\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"Black man with a BBC masters degree seeks curvy latina tutor\n",
"---content---\n",
"QR Code Link to This Post\n",
"Nice handsome black man with a Masters degree in BBC seeks curvy latina female tutor, to help with bbc studys\n",
"if interested contact me\n",
"\n",
"show contact info\n",
"\n",
"---Title---\n",
"we purchase iphone and android cel phones.\n",
"---content---\n",
"QR Code Link to This Post\n",
"We purchase iphone and android cell phones.\n",
"professional service.\n",
"message for free quotes.\n",
"call show contact info .\n",
"\n",
"---Title---\n",
"Buying unwanted mobile devices all carriers and any condition.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Buying unwanted mobile devices all carriers and any condition.\n",
"message for quote.\n",
"Tel: show contact info\n",
"\n",
"---Title---\n",
"Looking to Buy Phones ANY Condition\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking To Buy Cell Phones, Carrier Doesn't Matter . . .\n",
"\n",
"Any Condition. . . Cracked . . . Broken . . . Won't Turn On . . .\n",
"\n",
"For a Free Estimate -- Text show contact info\n",
"\n",
"---Title---\n",
"Looking To Buy iPhones . . . ALL Carriers\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking To Buy Cell Phones, Carrier Doesn't Matter . . .\n",
"\n",
"Any Condition, Cracked, Broken, Won't Turn On . . .\n",
"\n",
"For a Free Estimate -- Text show contact info\n",
"\n",
"---Title---\n",
"Earn F/T or supplemental income\n",
"---content---\n",
"QR Code Link to This Post\n",
"Have a smart phone and car or bike? You can earn $450 - $1000 working full time or part time hours as a delivery driver. Drivers wanted! Follow this link to make guaranteed earning.\n",
"\n",
"Email me if you have questions.\n",
"\n",
"---Title---\n",
"Earn Full-time or Part-time Income\n",
"---content---\n",
"QR Code Link to This Post\n",
"Have a smart phone and car or bike? You can earn $450 - $1000 working full time or part time hours as a delivery driver. Drivers wanted! Follow this link to make guaranteed earning.\n",
"\n",
"Email me if you have questions.\n",
"\n",
"---Title---\n",
"Looking To Purchase Cell Phones . . . Any Carrier\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking To Buy Cell Phones, Carrier Doesn't Matter . . .\n",
"\n",
"Any Condition, Cracked, Broken, Won't Turn On . . .\n",
"\n",
"For a Free Estimate -- Text show contact info\n",
"\n",
"---Title---\n",
"Housekeeper Job Here!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Full Time OR Part Time jobs in your area!\n",
"(Must have experience!)\n",
"\n",
"Call us at: show contact info\n",
"(NO FEES EVER!)\n",
"\n",
"---Title---\n",
"NYPD, SDNY, DOT, NYC MEDIA: We need your help.\n",
"---content---\n",
"QR Code Link to This Post\n",
"I moved my family to 90 Sullivan Place between Bedford Avenue and McKeever Place in Crown Heights. Everyday except Sundays, my neighbors, guests and I have to navigate and zigzag our kids, baby strollers, wheelchairs, walkers and grocery carts along the sidewalk of this one block that has two busy auto repair shops with vehicles literally parked on the sidewalk and also double-parked in the street. I want to speak to the shops' owners, but they seem unconcerned about moving the vehicles. This is a very, very unsafe hazard for me and my kids. I welcome the media, community board, NYPD, Sanitation, DOT, media and others to help resolve this matter.\n",
"\n",
"---Title---\n",
"Prospect Park and 7th Ave Subway Stations on B/Q lines need makeovers.\n",
"---content---\n",
"QR Code Link to This Post\n",
"The Prospect Park subway station on the B/Q and S lines in Brooklyn needs a major makeover! Commuters, tourists and visitors deserve better. The station is dirty, filthy, and nasty! Such a transportation hub near Prospect Park and Brooklyn Botanic Gardens entrance on Empire/Flatbush is always busy.\n",
"\n",
"Anybody else noticed the increased presence of rats and garbage in the 7th Ave subway station on the B/Q lines in Park Slope/Prospect Heights in Brooklyn? Huge rats can be seen running on the track level, on the platforms; and they are rampant on the stairs and near the turnstiles! Disgusting!\n",
"\n",
"If the dismal presence of such subway conditions is a matter of manpower, perhaps some area residents who frequent these stations (and/or who work for MTA, transit, city government and media orgs) could help demand for renovations, painting, an awareness campaign, rodent remedies, and also rally for the support of volunteers to adopt, clean and paint these subway stations (and other stations around the city).\n",
"\n",
"---Title---\n",
"Stop the cover-ups. New Yorkers deserve the truth.\n",
"---content---\n",
"QR Code Link to This Post\n",
"NBC (and all media outlets and journalists) should fairly cover the \"Me Too Movement\" including Harvey Weinstein and even accusations regarding Extra TV's NYC-based entertainment reporter. Google, Google, Google. Stop the cover-ups.\n",
"\n",
"---Title---\n",
"Ebbets Field Apartments is a rat-infested private housing development.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Ebbets Field Apartments in Crown Heights Brooklyn was once the site of the famous Ebbets Field Stadium for the then-Brooklyn Dodgers. Now the privately-owned housing development -- comprised of seven high-rise buildings with many children, disabled, elderly and senior citizens -- is a rat-infested, health and safety hazard.\n",
"\n",
"Owners/management should be ashamed, especially as they only remodel apartments once a tenant moves out, and then they rent the new fancy modern units at above market rate.\n",
"\n",
"New tenants then eventually see current tenants' realities: rat, mice, roach and waterbug infestation in their apartments, building lobby, basement, garage, patio, elevators, hallways, walkways, outside area; and also regularly experience poor-conditioned elevators, dirty floors, overflown garbage in compact rooms, overflown garbage outside the development, unlocked/unsecured entrances, lack of professional security personnel, etc.\n",
"\n",
"http://nypost.com/2016/01/12/ebbets-field-apartments-are-getting-a-makeover/\n",
"http://pix11.com/2016/09/21/tenants-outraged-over-elevator-upgrade-fee-despite-buildings-disrepair/\n",
"\n",
"How can Ebbets Field residents continue to live under such conditions? Hopely the media will soon return to Ebbets Field to report updates.\n",
"\n",
"---Title---\n",
"Veteran NY anchor/reporter is chef/owner at The Sound Bite.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Enjoy The Sound Bite (www.thesoundbiterestaurant.com) -- located in New York City's Hell's Kitchen/Theatre District at 737 Ninth Avenue near West 50th Street -- for a tasty-trendy fusion of Cajun, Southern and Italian cuisines seasoned and served by Julian Phillips (restaurateur/celebrity chef, Emmy Award-winning anchor and veteran journalist) and Barbara King (restaurateur, world-renowned jazz vocalist and Julian's wife), plus with a special treat of live Jazz & Blues.\n",
"\n",
"---Title---\n",
"Full Time Housekeeper Job!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Full Time jobs in your area!\n",
"(Must have experience!)\n",
"\n",
"Call us at: show contact info\n",
"(NO FEES EVER!)\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"Thank you Saint Jude.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"FILM YOUR TV SHOW WITH US!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"DO YOU HAVE AN IDEA FOR A TELEVISION SHOW?\n",
"\n",
"WE HAVE THE STUDIO TO FILM IT!\n",
"\n",
"WE NEED CONTENT FOR OUR UPCOMING NETWORK... SO WE'RE SHOOTING PILOTS THIS FALL.\n",
"\n",
"GIVE US A BRIEF SYNOPSIS ABOUT YOUR SHOW..\n",
"\n",
"IS IT A DAILY TALK SHOW, AN AFTER HOURS SHOW, SPORTS TALK OR EXTRA/ET STYLE SHOW.\n",
"\n",
"IS IT SHOT EXCLUSIVELY IN THE STUDIO? IS IT SHOT ON LOCATION?\n",
"\n",
"WE'RE LOOKING FOR PASSIONATE HOSTS AND GUESTS..\n",
"\n",
"DO YOU HAVE ANY STAFF OR CO-HOSTS?\n",
"\n",
"HOW WILL THE NEW SHOW DIFFER FROM YOUR CURRENT SHOW?\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"PLEASE LEAVE YOUR INSTAGRAM OR YOUTUBE LINK.\n",
"\n",
"THANK YOU FOR YOUR TIME, WE LOOK FORWARD TO SPEAKING WITH YOU SOON.\n",
"\n",
"---Title---\n",
"Nannies Wanted!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Full Time OR Part Time jobs in your area!\n",
"(Must have experience!)\n",
"\n",
"Call us at: show contact info\n",
"(NO FEES EVER!)\n",
"\n",
"---Title---\n",
"Housekeepers Wanted!!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Full Time OR Part Time jobs in your area!\n",
"(Must have experience!)\n",
"\n",
"Call us at: show contact info\n",
"(NO FEES EVER!)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"HUGE TAG SALE IN NEW ROCHELLE NY\n",
"---content---\n",
"QR Code Link to This Post\n",
"Everything must go! We have a lot of brand new clothes, (expensive brands like seven jeans, bonobos, express.. etc), furniture, cribs, strollers, mirrors! Cheap prices!!\n",
"\n",
"24 Hertford Street, New Rochelle NY 10801\n",
"Saturday September 29 & September 30\n",
"9am-3pm\n",
"\n",
"---Title---\n",
"Online classes coursework, tutoring, essay writing, etc.- REAL PERSON!\n",
"---content---\n",
"QR Code Link to This Post\n",
"I can complete your college/university thesis, capstone, essay, research paper, or ENTIRE online class.\n",
"\n",
"I am a real person with a Master's in English. I do ALL of the work myself, and I'm available to discuss via phone, text, or email. I only produce timely and quality work!\n",
"\n",
"Message or call me for a free quote!\n",
"\n",
"Julie\n",
"\n",
"---Title---\n",
"Will pay $$ for your medical test strips\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Hello\n",
"\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash\n",
"\n",
"Must be in good condition\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date after 5/19\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Text me Anytime\n",
"\n",
"---Title---\n",
"Will pay $$$ for your medical test strips\n",
"---content---\n",
"QR Code Link to This Post\n",
"Do you need extra cash??\n",
"\n",
"I will buy your diabetic test strips.\n",
"\n",
"I'm interested in\n",
"\n",
"Accu chek\n",
"One touch\n",
"Freestyle\n",
"Contour\n",
"\n",
"Boxes of 50 or 100.\n",
"\n",
"Local meet up\n",
"Will pay in cash�\n",
"\n",
"Must be in good condition�\n",
"No dents, tears, marks\n",
"Not opened\n",
"Have long expiration date�\n",
"\n",
"If you serious, contact me!!!\n",
"\n",
"show contact info\n",
"Call or text for prices\n",
"\n",
"---Title---\n",
"Hi Vanesa Latina only queens\n",
"---content---\n",
"QR Code Link to This Post\n",
"Latina Vanesa Ts visiting corona queens\n",
"\n",
"---Title---\n",
"ODD JOB SERVICES FLOORING INSTALLATIONS+ CLICKHERE\n",
"---content---\n",
"QR Code Link to This Post\n",
"Need affordable projects completed!!!!\n",
"\n",
"Weekend or After work projects to complex for just your hands???!!!\n",
"\n",
"\n",
"Contact us at show contact info call or text\n",
"\n",
"Flooring installation\n",
"Tile wood Vynil ceramic linoleum\n",
"Old flooring removed as well\n",
"\n",
"Painting Projects\n",
"Basement bedrooms kitchen Bath\n",
"Outdoor&Indoor\n",
"\n",
"Moving and Delivery Assistance\n",
"Truck provided\n",
"\n",
"Cleanup Projects\n",
"Construction debris Furniture Household\n",
"Dirt Rock Sand Scrap Metals Removed\n",
"\n",
"Furniture assembly Tv mounted\n",
"Locks installed(replaced)\n",
"\n",
"Garage Attic Basement organization projects\n",
"\n",
"Yard cleanup Small Tree removal up to 20 ft\n",
"\n",
"Yard maintenance for vacant or overgrown weeds bushes ect.\n",
"\n",
"Cash and Credit excepted\n",
"\n",
"---Title---\n",
"Wanted immediately\n",
"---content---\n",
"QR Code Link to This Post\n",
"Lotus deli is looking for a deli person with good experience in Mexican and Middle Eastern cuisine. Stop by for further info. Experience is a must, people skills is a plus,\n",
"\n",
"---Title---\n",
"Online classes coursework, tutoring, essay writing, etc.- REAL PERSON!\n",
"---content---\n",
"QR Code Link to This Post\n",
"I can complete your college/university thesis, capstone, essay, research paper, or ENTIRE online class.\n",
"\n",
"I am a real person with a Master's in English. I do ALL of the work myself, and I'm available to discuss via phone, text, or email. I only produce timely and quality work!\n",
"\n",
"Message or call me for a free quote!\n",
"\n",
"Julie\n",
"\n",
"---Title---\n",
"Grand spa Laser Hair Removal\n",
"---content---\n",
"QR Code Link to This Post\n",
"Welcome to Grand Spa!\n",
"We are a medical Spa offering\n",
"Non surgical cosmetic procedures!\n",
"-Laser hair removal\n",
"-Hair restoration\n",
"-Skin tag Removal\n",
"- Microneedling\n",
"-Botox/ Juvederm\n",
"-Anti aging facials Depending on skin concern.\n",
"- Infrared Body wrap (weight loss)\n",
"\n",
"Come in and receive 25% off on all our packages!\n",
"\n",
"Right now we have special promotion you might like!\n",
"We honor the price\n",
"From Group on in Spa. No need to purchase online.\n",
"\n",
"6 session laser hair removal small area\n",
"$89\n",
"\n",
"6 session laser hair removal medium area $159\n",
"\n",
"6 sessions laser hair removal large area\n",
"$199\n",
"\n",
"6 sessions whole body! $999 (why not just get it all gone!)\n",
"\n",
"Special on Facials\n",
"\n",
"Oxygen facial\n",
"$59 for 60min\n",
"\n",
"2 oxygen facial for\n",
"$115 for 60 minutes\n",
"\n",
"Come in check us out!\n",
"Come for a free! consultation or stop by to say hello.\n",
"\n",
"Grandspa.NYC.com\n",
"My name is Mercedes\n",
"\n",
"---Title---\n",
"Thank you Saint Jude.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"<HTML url='https://newyork.craigslist.org/search/mis?s=240'>\n",
"\n",
"---Title---\n",
"Local and Long Distance Taxi and Courier Service.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Local and Long Distance Taxi and Courier Service show contact info\n",
".\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"GOLDEN APPLE SPA LUXURY!\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Welcome to Golden apple Spa!\n",
"We are a medical Spa offering\n",
"Non surgical cosmetic procedures!\n",
"-Laser hair removal\n",
"-Hair restoration\n",
"-Skin tag Removal\n",
"- Microneedling\n",
"-Botox/ Juvederm\n",
"-Anti aging facials Depending on skin concern.\n",
"- Infrared Body wrap (weight loss)\n",
"\n",
"Come in and receive 25% off on all our packages!\n",
"\n",
"Right now we have special promotion you might like! This is in our Williamsburg location! All Laser hair removal, We also offer Sugaring\n",
"\n",
"We honor the price\n",
"From Group on in Spa. No need to purchase online.\n",
"\n",
"6 session laser hair removal small area\n",
"$89\n",
"\n",
"6 session laser hair removal medium area $159\n",
"\n",
"6 sessions laser hair removal large area\n",
"$199\n",
"\n",
"6 sessions whole body! $999 (why not just get it all gone!)\n",
"\n",
"Special on Facials\n",
"\n",
"Oxygen facial\n",
"$59 for 60min\n",
"\n",
"2 oxygen facial for\n",
"$115 for 60 minutes\n",
"\n",
"Come in check us out!\n",
"Come for a free! consultation or stop by to say hello.\n",
"Ask for Melana\n",
"PLEASE Check our website.\n",
"Goldenapplespa.com\n",
"\n",
"---Title---\n",
"Improve English grammar and Communication skills with a Private coach\n",
"---content---\n",
"QR Code Link to This Post\n",
"The first session is free and will give you a chance to meet with your teacher or writing coach so you get to know one another and then discuss your primary needs. Next, we will have you put together an essay to the best of your ability so you can get across what you would like to express. Then we will meet with you and get started on editing the essay and perfecting it for you one page at a time.\n",
"\n",
"We also offer:\n",
"\n",
"Intensive One-to-One learn Business English in our Adobe Connect classroom\n",
"directly to your office or home with an emphasis on developing rapidly Business English skills and allowing maximum attention and focus on your weaknesses.\n",
"\n",
"This is an intensive six-week online program which will require you to attend two 90 minute lessons per week in order to strengthen your weaknesses rapidly.\n",
"\n",
"Our Intensive One-to-One learn Business English six week training program covers the following areas, subject to your personal and professional needs:\n",
"\n",
"English grammar revision\n",
"Development of English grammar skills\n",
"English usage development\n",
"Word power and vocabulary building\n",
"Semantics and meaning\n",
"Learning English email writing\n",
"Learning English letter writing\n",
"Learning English report writing\n",
"Learning English minute writing\n",
"Informal English writing\n",
"Learning English colloquialism\n",
"Writing to inform, advise and explain\n",
"Writing to argue, persuade and instruct\n",
"Learning to speak BBC English\n",
"Accent reduction for professional communication\n",
"English pronunciation\n",
"English elocution techniques\n",
"Developing listening skills\n",
"Developing sub-listening skills\n",
"Reading skills development\n",
"Reading for target information\n",
"Development of reading comprehension\n",
"Reading for analytical development\n",
"Presentation skills\n",
"Business negotiation skills\n",
"Cross-Cultural Business English\n",
"\n",
"Call us today to get started show contact info or register for an appointment and more information at http://usaccentcoach.com\n",
"\n",
"---Title---\n",
"iOS App Development - Xcode Native App - iPhone iPad Mobile Developer\n",
"---content---\n",
"QR Code Link to This Post\n",
"I am an individual freelance iOS App Developer who is interested in taking on iOS App development projects. I have Master Degree in Computer Science and I am also a Microsoft Certified IT Professional. I have developed more than 60 iPhone applications for my U.S. clients.\n",
"\n",
"All of my work is custom (no templates/pre-designed themes and app maker designs). I start from scratch according to your app idea and business requirement. I am extremely good at tips and tricks of submitting apps to Apple Store and getting them approved. I'll guide you in the process and also support and maintain the App long term as needed.\n",
"\n",
"I have developed apps with features like\n",
"\n",
"-REST/XML/JSON Web Service,\n",
"- GPS services\n",
"- MapKit(Apple Maps, Google Maps)\n",
"- Facebook API\n",
"- Twitter API\n",
"- Instagram API\n",
"- Youtube API\n",
"- User Management\n",
"- Back-end Integration\n",
"- Parse.com Database (Online)\n",
"- Kinvey.com (Online Database)\n",
"- SQlite Database (Offline)\n",
"- iCloud\n",
"- Paypal Credit Card Purchase Integration\n",
"- Stripe Credit Card Purchase Integration\n",
"- iAd Integration & Admob Integration\n",
"- Core Location\n",
"- Core Animation\n",
"- Core Data,\n",
"- Core Graphics\n",
"- Job Search\n",
"- Comment Viewing\n",
"- Parsing\n",
"- Spritekit (iOS 2D Games)\n",
"-Consumable & Non-Consumable In-App Purchases\n",
"-Non-renewing In-App Purchase\n",
"- URL Scheme\n",
"- AVFoundation Framework (Audio)\n",
"- Custom Tableviews\n",
"- Many More\n",
"\n",
"Please contact me via email and put \" iOS Developer\" in subject line.\n",
"\n",
"---Title---\n",
"DID U KNOW -W 2\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"-FIRST BANK REVIEW\n",
"I live less than a half block from a bank called FIRST BANK on upper state st.So I thought , why not do\n",
"my banking here.It's close and convenient.So with the help of the man in charge, I opened a checking\n",
"account and another account for my social security; The man was very nice, but he\n",
"kept insisting that I needed a debit card and a credit card.I told him I didn't use a debit card and I didn;t\n",
"want a credit card. He kept insisting and I finally agreed.I guess I had the account for about 3 or 4 months\n",
"when I received my statement with a $30.00 fee. It said the charge was for a 30 day\n",
"inactive account. NOW at 97 years old, I have been doing business with banks for over 80 years and\n",
"never heard of this.So I closed the account, butthe teller suggested that I leave a $5.00 balance because\n",
"of my social security. I agreed, and sure enough my statement came with a $5.00 fee for an over drawn\n",
"account.The following month it was a $15.00 charge for an overdrawn account.I was there for two and a\n",
"half hours trying to settle the account.\n",
"They made me sign some documents before a notary public in the meantime the teller is waiting on the\n",
"phone.I asked who are you calling? He said, I have to call my boss to get authorization.By this time I'm\n",
"so angry I walk out, went home and called the police dept.They called the bank, they called me back and\n",
"said that my money was ready for me. If someone told me this story, I wouldn't believe it. But I know the\n",
"police call is on record. - - Art Nunez\n",
"\n",
"---Title---\n",
"ODD JOB SERVICES FLOORING INSTALLATIONS+ CLICKHERE\n",
"---content---\n",
"QR Code Link to This Post\n",
"Need affordable projects completed!!!!\n",
"\n",
"Weekend or After work projects to complex for just your hands???!!!\n",
"\n",
"\n",
"Contact us at show contact info call or text\n",
"\n",
"Flooring installation\n",
"Tile wood Vynil ceramic linoleum\n",
"Old flooring removed as well\n",
"\n",
"Painting Projects\n",
"Basement bedrooms kitchen Bath\n",
"Outdoor&Indoor\n",
"\n",
"Moving and Delivery Assistance\n",
"Truck provided\n",
"\n",
"Cleanup Projects\n",
"Construction debris Furniture Household\n",
"Dirt Rock Sand Scrap Metals Removed\n",
"\n",
"Furniture assembly Tv mounted\n",
"Locks installed(replaced)\n",
"\n",
"Garage Attic Basement organization projects\n",
"\n",
"Yard cleanup Small Tree removal up to 20 ft\n",
"\n",
"Yard maintenance for vacant or overgrown weeds bushes ect.\n",
"\n",
"Cash and Credit excepted\n",
"\n",
"---Title---\n",
"BEST SENIOR CARE IN NEW JERSEY - AFFORDABLE RATES\n",
"---content---\n",
"QR Code Link to This Post\n",
"Looking for the Best Senior Care Facility for your Parents in New Jersey, We at Bonjour Home Care Can help .\n",
"\n",
"This is NOT the Typical Pitch ,but we offer the best Home Health Aide Service in New Jersey\n",
"\n",
"\n",
"Parents Suffering from Alzheimers and Dementia :- Check!\n",
"Assistance with personal care needs : - Check!\n",
"Emotional support and spiritual guidance : -Check!\n",
"Medical Equipment such as hospital bed, air mattress, oxygen and wheelchair as needed for care and comfort: -Check!\n",
"Hospice nurses on call 24 hours a day, seven days a week : -Check!\n",
"Home Health Aides with Background Scrutiny : -Check!\n",
"\n",
"\n",
"Hospice may be provided:\n",
"\n",
"At Home\n",
"In-patient at Meridian Hospitals\n",
"Assisted Living Facilities, and\n",
"Skilled Nursing Facilities\n",
"\n",
"\n",
"PLUS: No Need to Talk to Any Sales People.Just Call our :\n",
"1-800 FREE Toll Free No at : show contact info\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"Chelsea - Manhattan - Long Island - ENVOY BUSINESS SYSTEMS\n",
"---content---\n",
"QR Code Link to This Post\n",
"Just a heads up. There are a lot of registered sex offenders in the area. Some have AKA's. One in particular is a local person listed below. He uses the following information. He is believed to be living in Caldwell right now.\n",
"His Name is, Josh Mandell, CPP, aka Ben Anderson of Wisconsin. He may vary his appearance with hair coloring, with or without a beard. EMISSARY NEW YORK. EMISSARY LOS ANGELES. ENVOY. University of Wisconsin-Madison, Ski Team Heartland. Essex County Online. He works in the credit card processing payment industry right here in NYC Midtown Uptown, Long Island. \"NYCBNG\"\n",
"\n",
"https://appsdoc.wi.gov/public/offenderdetails?id=12713\n",
"\n",
"---Title---\n",
"Grand spa Laser Hair Removal\n",
"---content---\n",
"QR Code Link to This Post\n",
"Welcome to Grand Spa!\n",
"We are a medical Spa offering\n",
"Non surgical cosmetic procedures!\n",
"-Laser hair removal\n",
"-Hair restoration\n",
"-Skin tag Removal\n",
"- Microneedling\n",
"-Botox/ Juvederm\n",
"-Anti aging facials Depending on skin concern.\n",
"- Infrared Body wrap (weight loss)\n",
"\n",
"Come in and receive 25% off on all our packages!\n",
"\n",
"Right now we have special promotion you might like!\n",
"We honor the price\n",
"From Group on in Spa. No need to purchase online.\n",
"\n",
"6 session laser hair removal small area\n",
"$89\n",
"\n",
"6 session laser hair removal medium area $159\n",
"\n",
"6 sessions laser hair removal large area\n",
"$199\n",
"\n",
"6 sessions whole body! $999 (why not just get it all gone!)\n",
"\n",
"Special on Facials\n",
"\n",
"Oxygen facial\n",
"$59 for 60min\n",
"\n",
"2 oxygen facial for\n",
"$115 for 60 minutes\n",
"\n",
"Come in check us out!\n",
"Come for a free! consultation or stop by to say hello.\n",
"\n",
"Grandspa.NYC.com\n",
"My name is Mercedes\n",
"\n",
"text show contact info\n",
"\n",
"---Title---\n",
"GOLDEN APPLE SPA LUXURY!\n",
"---content---\n",
"QR Code Link to This Post\n",
"\n",
"Welcome to Golden apple Spa!\n",
"We are a medical Spa offering\n",
"Non surgical cosmetic procedures!\n",
"-Laser hair removal\n",
"-Hair restoration\n",
"-Skin tag Removal\n",
"- Microneedling\n",
"-Botox/ Juvederm\n",
"-Anti aging facials Depending on skin concern.\n",
"- Infrared Body wrap (weight loss)\n",
"\n",
"Come in and receive 25% off on all our packages!\n",
"\n",
"Right now we have special promotion you might like! This is in our Williamsburg location! All Laser hair removal, We also offer Sugaring\n",
"\n",
"We honor the price\n",
"From Group on in Spa. No need to purchase online.\n",
"\n",
"6 session laser hair removal small area\n",
"$89\n",
"\n",
"6 session laser hair removal medium area $159\n",
"\n",
"6 sessions laser hair removal large area\n",
"$199\n",
"\n",
"6 sessions whole body! $999 (why not just get it all gone!)\n",
"\n",
"Special on Facials\n",
"\n",
"Oxygen facial\n",
"$59 for 60min\n",
"\n",
"2 oxygen facial for\n",
"$115 for 60 minutes\n",
"\n",
"Come in check us out!\n",
"Come for a free! consultation or stop by to say hello.\n",
"Ask for Melana\n",
"PLEASE Check our website.\n",
"Goldenapplespa.com\n",
"\n",
"---Title---\n",
"who adopt my5service dogs in nov 500reward\n",
"---content---\n",
"QR Code Link to This Post\n",
"aspca blakmail me urgent help needed show contact info\n",
"beg4mercpyurgenttttt\n",
"\n",
"---Title---\n",
"Homeless Syrian Mother and Son,...\n",
"---content---\n",
"QR Code Link to This Post\n",
"...for whom no country but Germany cared to provide shelter, have found a home on canvas.\n",
"\n",
"The holocaust goes on, while Americans overeat, overspend, and tweet away their days...\n",
"\n",
"---Title---\n",
"Let's Make a Deal Video for your business...\n",
"---content---\n",
"QR Code Link to This Post\n",
"for 15 years, I know exactly what is required for any job.\n",
"\n",
"feel free to Check out my work.\n",
"https://vimeo.com/lat2gprod\n",
"https://www.youtube.com/user/lat2gprod/videos\n",
"Instagram lat2gprod\n",
"\n",
"If you would like to know more?\n",
"Please Contact me, I'll be happy to discuss your project.\n",
"thank you!\n",
"\n",
"---Title---\n",
"generous guy looking for someone to join the adventure\n",
"---content---\n",
"QR Code Link to This Post\n",
"lots of laughs lots of fun and good energy is all you need to have a great time Just looking for great company to enjoy what's left of what's supposed to be summer smh weather love doing things out doors as well as in but this weather makes me want to be outside most of the time I like beaches and pools I do not discriminate...i love all fun things outdoors and as well as in movies dinner lounges museums oh and I love to talk deep convos only!!! and I'm 4/20 friendly so I'm basically perfect LMAO.... lets have some!\n",
"\n",
"---Title---\n",
"Improve English grammar and Communication skills with a Private coach\n",
"---content---\n",
"QR Code Link to This Post\n",
"The first session is free and will give you a chance to meet with your teacher or writing coach so you get to know one another and then discuss your primary needs. Next, we will have you put together an essay to the best of your ability so you can get across what you would like to express. Then we will meet with you and get started on editing the essay and perfecting it for you one page at a time.\n",
"\n",
"We also offer:\n",
"\n",
"Intensive One-to-One learn Business English in our Adobe Connect classroom\n",
"directly to your office or home with an emphasis on developing rapidly Business English skills and allowing maximum attention and focus on your weaknesses.\n",
"\n",
"This is an intensive six-week online program which will require you to attend two 90 minute lessons per week in order to strengthen your weaknesses rapidly.\n",
"\n",
"Our Intensive One-to-One learn Business English six week training program covers the following areas, subject to your personal and professional needs:\n",
"\n",
"English grammar revision\n",
"Development of English grammar skills\n",
"English usage development\n",
"Word power and vocabulary building\n",
"Semantics and meaning\n",
"Learning English email writing\n",
"Learning English letter writing\n",
"Learning English report writing\n",
"Learning English minute writing\n",
"Informal English writing\n",
"Learning English colloquialism\n",
"Writing to inform, advise and explain\n",
"Writing to argue, persuade and instruct\n",
"Learning to speak BBC English\n",
"Accent reduction for professional communication\n",
"English pronunciation\n",
"English elocution techniques\n",
"Developing listening skills\n",
"Developing sub-listening skills\n",
"Reading skills development\n",
"Reading for target information\n",
"Development of reading comprehension\n",
"Reading for analytical development\n",
"Presentation skills\n",
"Business negotiation skills\n",
"Cross-Cultural Business English\n",
"\n",
"Call us today to get started show contact info or register for an appointment and more information at http://usaccentcoach.com\n",
"\n",
"---Title---\n",
"DOOMSDAY Survival Lessons Learn to Live off the Land, Bushcraft\n",
"---content---\n",
"QR Code Link to This Post\n",
"train you on \"how to\" survive off the land, bugging-out, bugging-in and protection from a large variety of human and non-human elements of potentially harmful and life threatening situations. My consulting daily fee is $300/day 6hr day, one location within Long Island (extra cost outside Long Island) per day that you will disclose to me one week prior to meeting). These two areas I do NOT train (but will give advise) on the use of: fire arms (cousin can do this upstate on his 200 acres compound for separate fee) or self-defense (offence only). I will enhance your awareness of your environment (present and bug-out future) and what may potentially lay ahead down the road. I will evaluate your unique situation (family included as a whole unit) and make suggestions on bug out locations, hunting, transportation, water, what to stockpile and shelter to maintain core body temperature. The mere fact that I am even posting this and you are reading this far means you know as well as I do that something is coming to prepare for. Germany and two other nations just told their people to stockpile food and water for 10 days. Mormons tell their members to prepare for at least 1 year off-grid. I tell my clients to prepare for 100 years. I will also consider bartering for items, services, products, etc. This is not a course, school of running drills, (coming soon upstate NY) it is simply training on \"how to knowledge\". I will address ALL of your concerns. Protect yourself, protect your family, be the hero when the time comes. Regards Mike Albert www.youtube.com/ambertracks , www.facebook.com/ambertracks www.worthingtonbunkers.com www.ambertracks.com\n",
"\n",
"---Title---\n",
"FIELD REAL ESTATE AGENTS NEEDED, MUST BE ENERGETIC/POSITIVE MIND-SET\n",
"---content---\n",
"QR Code Link to This Post\n",
"Are you or anyone you know looking for a career in the exciting real estate field? NYC Closing Agents Realty is looking for charismatic and ambitious individuals to join our growing investment sales team.\n",
"What are we looking for?\n",
"Energetic, positive, self-motivated individual looking to make real money selling/renting real estate in NYC.\n",
"We DO NOT want an office potato, real estate is done on the streets, not sitting behind a desk, we see results, we don't want to SEE YOU, just on payment day ;)\n",
"\n",
"---Title---\n",
"MIRACLES ARE POSSIBLE. THANK YOU SAINT JUDE.\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"---Title---\n",
"MIRACLE AT HAND. THANK YOU SAINT JUDE!\n",
"---content---\n",
"QR Code Link to This Post\n",
"Whenever you may need help in a difficult time ask for it to Saint Jude. He's the worker of miracles to those who believe. Pray this easy prayer 9 times for 9 days and he will help you in what you ask his help for. This is for serious inquiries that come from the heart and with good intentions.\n",
"\n",
"May the Sacred Heart of Jesus be adored, glorified, preserved and loved throughout the world now and forever.\n",
"Sacred Heart of Jesus, pray for us.\n",
"Saint. Jude, helper of the hopeless, pray for us.\n",
"Saint. Jude, worker of miracles, pray for us.\n",
"\n",
"Once your miracle happens and you finished the novena publish it for anyone who will read to know the power of Saint Jude. It works. You must promise publishing in order to spread the word!\n",
"\n",
"Thank you Saint Jude.\n",
"H.E.L.\n",
"\n",
"---Title---\n",
"Wanted - Ipads and Macbooks\n",
"---content---\n",
"QR Code Link to This Post\n",
"I buy them in all conditions\n",
"\n",
"I also buy iphones and apple watches\n",
"\n",
"I can drive to you or meet wherever is easiest\n",
"\n",
"Call me or text me for a quote show contact info\n",
"\n",
"---Title---\n",
"Selling my cell phone ZTE prestige 1\n",
"---content---\n",
"QR Code Link to This Post\n",
"I am selling my cell phone ZTE Prestige phone for $35.00 If interested, please contact me.\n",
"\n",
"\n",
"Tamara\n",
"\n",
"---Title---\n",
"Looking to buy iphones,ipads and laptops all condition.\n",
"---content---\n",
"QR Code Link to This Post\n",
"looking to buy iphones,ipads,and laptops.\n",
"friendly and reliable service.\n",
"Tel: show contact info\n",
"\n",
"---Title---\n",
"Sell your unwanted laptops,Tables and Smart phones\n",
"---content---\n",
"QR Code Link to This Post\n",
"Sell your unwanted laptops,Tablets and Smartphones.\n",
"message for quote.\n",
"Tel: show contact info .\n",
"\n",
"---Title---\n",
"I'm purchasing iphone and Android phones all carriers\n",
"---content---\n",
"QR Code Link to This Post\n",
"I'm purchasing iphone and android phones all carriers.\n",
"message for quote.\n",
"Tel: show contact info .\n",
"\n",
"---Title---\n",
"modista a la orden\n",
"---content---\n",
"QR Code Link to This Post\n",
"show contact info\n",
"He servido a mi comunidad por más de 25 años. Experto en confecciones, alteraciones, muestras y pequeña producción. Reparo todo tipo de prendas a su gusto. Ropa de deporte\n",
"Ropa de noche\n",
"Vestidos de boda\n",
"Ropa de trabajo\n",
"Trabajo de calidad y servicio rápido con precios razonables.\n",
"Vestido básico de $ 25 y más\n",
"Vestido de noche de $ 50 y más\n",
"Blusas de $ 20 y más\n",
"Faldas de $ 20 y más\n",
"Reemplazo del forro en los abrigos $ 40\n",
"Reemplazo de revestimiento en chaquetas $ 30\n",
"Alter pantalones pierna ancha a la pierna flaca. 10\n",
"Corta el dobladillo $ 10\n",
"El dobladillo de Jean acorta $ 5\n",
"Cambie la cremallera del vestido $ 10\n",
"Acorte el dobladillo de la manga $ 5\n",
"Tome medidas de $ 10\n",
"Lucir bien y sentirse bien\n",
"104-66 42 ave corona\n",
"\n",
"---Title---\n",
"Chelsea - Manhattan - Long Island - ENVOY BUSINESS SYSTEMS\n",
"---content---\n",
"QR Code Link to This Post\n",
"Just a heads up. There are a lot of registered sex offenders in the area. Some have AKA's. One in particular is a local person listed below. He uses the following information. He is believed to be living in Caldwell right now.\n",
"His Name is, Josh Mandell, CPP, aka Ben Anderson of Wisconsin. He may vary his appearance with hair coloring, with or without a beard. EMISSARY NEW YORK. EMISSARY LOS ANGELES. ENVOY. University of Wisconsin-Madison, Ski Team Heartland. Essex County Online. He works in the credit card processing payment industry right here in NYC Midtown Uptown, Long Island. \"NYCBNG\"\n",
"\n",
"https://appsdoc.wi.gov/public/offenderdetails?id=12713\n",
"\n",
"---Title---\n",
"Long Island University, Josh Mandell, CPP - ENVOY BUSINESS SYSTEMS\n",
"---content---\n",
"QR Code Link to This Post\n",
"Just a heads up. There are a lot of registered sex offenders in the area. Some have AKA's. One in particular is a local person listed below. He uses the following information. He is believed to be living in Caldwell right now.\n",
"His Name is, \"Josh Mandell CPP\", aka \"Ben A Anderson\" of Wisconsin. He may vary his appearance with hair coloring, with or without a beard. EMISSARY NEW YORK. EMISSARY LOS ANGELES. ENVOY. University of Wisconsin-Madison, Ski Team Heartland. Essex County Online. He works in the credit card processing payment industry right here in NYC Midtown Uptown, Long Island. \"NYCBNG\" 195 Fairfield Ave, #1B, Caldwell, New Jersey 07006\n",
"\n",
"Click here for more info https://appsdoc.wi.gov/public/offenderdetails?id=12713\n"
]
}
],
"source": [
"# go to next lists!\n",
"Dfile = open(\"./scrape-craiglist-localnews.txt\",\"wt\")\n",
"\n",
"r= session.get(\"https://newyork.craigslist.org/d/local-news-and-views/search/vnn\")\n",
"for rlist in r.html:\n",
" print(html) #this contains a list!!\n",
" titles = rlist.find(\".result-title\")\n",
" for title in titles:\n",
" text = title.text\n",
" url = title.attrs.get(\"href\") #.attrs returns a dictionary\n",
" article = session.get(url)\n",
" content = article.html.find(\"#postingbody\",first=True,)\n",
" if content:\n",
" out =\"\\n---Title---\\n\"+text+\"\\n---content---\\n\"+content.text;\n",
" Dfile.writelines(out);\n",
" print(out)\n",
" time.sleep(0.2) #get content in every 200ms(not to access too frequently)\n",
"Dfile.close()"
]
},
{
"cell_type": "code",
"execution_count": 70,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<HTML url='https://www.alibaba.com/trade/search?fsb=y&IndexArea=product_en&CatId=&SearchText=drug'>\n",
"Supply smart drugs NSI-189 US $1.00-$55.00 / Gram\n",
"Veterinary amoxicillin antibiotic animal drugs GMP oxytetracycline 10% API cas 2058-46-0 feed premix pass US $15.00-$30.00 / Kilogram\n",
"drugs Piracetam EP grade with GMP and DMF Piracetam powder/7491-74-9 US $15.00-$25.00 / Kilogram\n",
"Factory supply Hormone drugs Estrone CAS 53-16-7 US $1.00-$5.00 / Gram\n",
"In 2017, Sell Like Hot Cakes Drug Supply 623-05-2 US $50.00-$100.00 / Kilogram\n",
"Buy smart drugs 99% Nsi-189 Nootropics drugs Powder Nsi-189 US $3.00-$4.00 / Grams\n",
"Gmp Factory Supply High Purity Anti hair loss drug RU58841 CAS:154992-24-2 US $1.00-$5.00 / Gram\n",
"Raw Steroid Powders Anti HCV drugs 99% Ritonavir, CAS 155213-67-5 US $1.40-$2.00 / Gram\n",
"API raw material pharmaceutical grade Nitazoxanide Anti-bacterial drugs US $1.00-$10.00 / Gram\n",
"Smart drugs 99.20% Racetam family CAS 72432-10-1 Aniracetam powder US $150.00-$180.00 / Kilogram\n",
"Factory supply High purity antiepileptic drugs 1069-66-5 sodium valproate US $110.00-$130.00 / Kilogram\n",
"Stock smart drugs 99% Nsi-189/neurogenic drugs Powder Nsi-189 US $10.00-$15.00 / Gram\n",
"Facotry supply high purity 99% Pantoprazole Sodium for Anti-ulcer Drug cas.138786-67-1 US $10.00-$100.00 / Kilogram\n",
"Stock smart drugs 99% Nsi-189/neurogenic drugs Powder Nsi-189 CAS NO:1270138-40-3 US $1.00-$100.00 / Gram\n",
"CAS 23593-75-1,Clotrimazole /Antifungal drugs,Pharmaceutical Grade,GMP,ISO US $26.00-$45.00 / Kilogram\n",
"CAS:59122-46-2,Misoprostol/Prostaglandin drug US $920.00-$1000.00 / Gram\n",
"Hot selling product furazolidone 99% api drug/CAS:67-45-8 made in china US $10.00-$100.00 / Kilogram\n",
"Synthetic Drugs LY-2874455, Research chemicals cas 1254473-64-7 LY2874455 US $1.00-$900.00 / Gram\n",
"Raw Steroid Powders Anti HCV drugs 99% Ritonavir, CAS 155213-67-5 US $1.10-$1.50 / Gram\n",
"Veterinary Medicine , Antibacterial Drugs , Ivermectin Injection 1% 10ml US $0.10-$0.50 / Box\n",
"HIV cure drug/Zidovudine/AZT/Anti-HIV US $1.00-$100.00 / Kilogram\n",
"Contraceptives Drug 99% High purity Levonorgestrel powder CAS 797-63-7 Levonorgestrel US $20.00-$500.00 / Kilogram\n",
"ULIPRISTAL ACETATE, oral contraceptive drug, CAS:126784-99-4 US $1.00-$100.00 / Kilogram\n",
"Raw Steroid Powders Anti HCV drugs 99% Ritonavir, CAS 155213-67-5 US $1.00-$10.00 / Gram\n",
"99% Ampicillin / Ampicilin Sodium, Penicillin Antibiotics Pharmaceutical Medicine Drug US $1.00-$100.00 / Kilogram\n"
]
}
],
"source": [
"# alibaba example\n",
"r = session.get(\"https://www.alibaba.com/trade/search?fsb=y&IndexArea=product_en&CatId=&SearchText=drug\")\n",
"\n",
"print(rlist)\n",
"items = r.html.find(\".item-content\")\n",
"for item in items:\n",
" price = item.find(\".price\",first=True).text\n",
" title = item.find(\".title\",first=True).text\n",
" print(title,price)\n",
" time.sleep(0.2)"
]
},
{
"cell_type": "code",
"execution_count": 97,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"3652\n",
"Title: 7 World Trade Center\n",
"--------\n",
" Summary:Either of two buildings that have existed at the same location within the World Trade Center site in Lower Manhattan, New York City\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/7_World_Trade_Center\n",
"------\n",
"\n",
"Title: Acra (fortress)\n",
"--------\n",
" Summary:A fortified compound in Jerusalem built by Antiochus Epiphanes\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Acra_(fortress)\n",
"------\n",
"\n",
"Title: Angkor Wat\n",
"--------\n",
" Summary:A temple complex in Cambodia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Angkor_Wat\n",
"------\n",
"\n",
"Title: Anthony Roll\n",
"--------\n",
" Summary:A record of ships of the English Tudor navy of the 1540s\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Anthony_Roll\n",
"------\n",
"\n",
"Title: Belton House\n",
"--------\n",
" Summary:Country house in Belton near Grantham, Lincolnshire, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Belton_House\n",
"------\n",
"\n",
"Title: Blakeney Chapel\n",
"--------\n",
" Summary:Ruined building on the Norfolk coast of England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Blakeney_Chapel\n",
"------\n",
"\n",
"Title: Bodiam Castle\n",
"--------\n",
" Summary:Moated castle near Robertsbridge in East Sussex, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bodiam_Castle\n",
"------\n",
"\n",
"Title: Borobudur\n",
"--------\n",
" Summary:9th-century Buddhist temple in Java, Indonesia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Borobudur\n",
"------\n",
"\n",
"Title: Boydell Shakespeare Gallery\n",
"--------\n",
" Summary:Art museum in London\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Boydell_Shakespeare_Gallery\n",
"------\n",
"\n",
"Title: Bramall Hall\n",
"--------\n",
" Summary:Tudor manor house in Bramhall, within the Metropolitan Borough of Stockport, Greater Manchester, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bramall_Hall\n",
"------\n",
"\n",
"Title: Brougham Castle\n",
"--------\n",
" Summary:Medieval castle near Penrith in Cumbria, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Brougham_Castle\n",
"------\n",
"\n",
"Title: Bruce Castle\n",
"--------\n",
" Summary:16th-century manor house in London\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bruce_Castle\n",
"------\n",
"\n",
"Title: Buckingham Palace\n",
"--------\n",
" Summary:Official London residence and principal workplace of the British monarch\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Buckingham_Palace\n",
"------\n",
"\n",
"Title: Buckton Castle\n",
"--------\n",
" Summary:12th-century castle near Carrbrook in Stalybridge, Greater Manchester, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Buckton_Castle\n",
"------\n",
"\n",
"Title: Buildings and architecture of Bristol\n",
"--------\n",
" Summary:\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Buildings_and_architecture_of_Bristol\n",
"------\n",
"\n",
"Title: Buildings of Jesus College, Oxford\n",
"--------\n",
" Summary:University buildings\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Buildings_of_Jesus_College,_Oxford\n",
"------\n",
"\n",
"Title: Buildings of Nuffield College, Oxford\n",
"--------\n",
" Summary:College of the University of Oxford\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Buildings_of_Nuffield_College,_Oxford\n",
"------\n",
"\n",
"Title: Capon Chapel\n",
"--------\n",
" Summary:A mid-19th century United Methodist church located near Capon Bridge, West Virginia in the United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Capon_Chapel\n",
"------\n",
"\n",
"Title: Castell Coch\n",
"--------\n",
" Summary:19th-century Gothic Revival castle in Tongwynlais, Wales\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Castell_Coch\n",
"------\n",
"\n",
"Title: Castle\n",
"--------\n",
" Summary:Fortified residential structure of medieval Europe\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Castle\n",
"------\n",
"\n",
"Title: Cathedral of the Immaculate Conception (Moscow)\n",
"--------\n",
" Summary:Neo-Gothic Roman Catholic cathedral in Moscow\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cathedral_of_the_Immaculate_Conception_(Moscow)\n",
"------\n",
"\n",
"Title: Chetro Ketl\n",
"--------\n",
" Summary:Ancestral Puebloan great house and archeological site in New Mexico, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Chetro_Ketl\n",
"------\n",
"\n",
"Title: Chicago Board of Trade Building\n",
"--------\n",
" Summary:A skyscraper in Chicago, Illinois, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Chicago_Board_of_Trade_Building\n",
"------\n",
"\n",
"Title: Clemuel Ricketts Mansion\n",
"--------\n",
" Summary:A sandstone Georgian-style house on the shore of Ganoga Lake, Sullivan County, Pennsylvania\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Clemuel_Ricketts_Mansion\n",
"------\n",
"\n",
"Title: Construction of Rockefeller Center\n",
"--------\n",
" Summary:Urban renewal project in New York City's Midtown Manhattan\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Construction_of_Rockefeller_Center\n",
"------\n",
"\n",
"Title: Cottingley Fairies\n",
"--------\n",
" Summary:Faked photographs of fairies by Elsie Wright and Frances Griffiths\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cottingley_Fairies\n",
"------\n",
"\n",
"Title: Cragside\n",
"--------\n",
" Summary:Victorian country house near Rothbury in Northumberland, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cragside\n",
"------\n",
"\n",
"Title: Crucifix (Cimabue, Santa Croce)\n",
"--------\n",
" Summary:Painting by Cimabue\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Crucifix_(Cimabue,_Santa_Croce)\n",
"------\n",
"\n",
"Title: Crucifixion and Last Judgement diptych\n",
"--------\n",
" Summary:Two small painted panels attributed to Jan van Eyck\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Crucifixion_and_Last_Judgement_diptych\n",
"------\n",
"\n",
"Title: The Dawn of Love (painting)\n",
"--------\n",
" Summary:Oil painting on canvas by English artist William Etty\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/The_Dawn_of_Love_(painting)\n",
"------\n",
"\n",
"Title: Early Netherlandish painting\n",
"--------\n",
" Summary:Work of artists active in the Low Countries during the 15th- and 16th-century Northern Renaissance\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Early_Netherlandish_painting\n",
"------\n",
"\n",
"Title: Egyptian temple\n",
"--------\n",
" Summary:Structures for official worship of the gods and commemoration of pharaohs in Ancient Egypt\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Egyptian_temple\n",
"------\n",
"\n",
"Title: Elgin Cathedral\n",
"--------\n",
" Summary:A historic ruin in Elgin, Moray, north-east Scotland.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Elgin_Cathedral\n",
"------\n",
"\n",
"Title: The Entombment (Bouts)\n",
"--------\n",
" Summary:Painting attributed to Dieric Bouts\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/The_Entombment_(Bouts)\n",
"------\n",
"\n",
"Title: Equestrian statue of Edward Horner\n",
"--------\n",
" Summary:Memorial to Edward Horner, who died of wounds in the First World War\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Equestrian_statue_of_Edward_Horner\n",
"------\n",
"\n",
"Title: Exelon Pavilions\n",
"--------\n",
" Summary:Four buildings that generate electricity from solar energy and provide access to underground parking in Millennium Park in Chicago, Illinois, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Exelon_Pavilions\n",
"------\n",
"\n",
"Title: Fort Ticonderoga\n",
"--------\n",
" Summary:18th-century star fort in northern New York in the United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fort_Ticonderoga\n",
"------\n",
"\n",
"Title: Four Freedoms (Norman Rockwell)\n",
"--------\n",
" Summary:A series of four 1943 oil paintings by the American artist Norman Rockwell\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Four_Freedoms_(Norman_Rockwell)\n",
"------\n",
"\n",
"Title: Freedom from Want (painting)\n",
"--------\n",
" Summary:Painting by Norman Rockwell\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Freedom_from_Want_(painting)\n",
"------\n",
"\n",
"Title: Freedom Monument\n",
"--------\n",
" Summary:Memorial located in Riga, Latvia, honouring soldiers killed during the Latvian War of Independence\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Freedom_Monument\n",
"------\n",
"\n",
"Title: Funerary art\n",
"--------\n",
" Summary:Art associated with a repository for the remains of the dead\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Funerary_art\n",
"------\n",
"\n",
"Title: Greece runestones\n",
"--------\n",
" Summary:About 30 runestones about voyages made by Norsemen to the Byzantine Empire\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Greece_runestones\n",
"------\n",
"\n",
"Title: Guilden Morden boar\n",
"--------\n",
" Summary:Anglo-Saxon copper alloy figure of a boar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Guilden_Morden_boar\n",
"------\n",
"\n",
"Title: Harris Theater (Chicago)\n",
"--------\n",
" Summary:Theater in Millenium Park, Chicago, Illinois, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Harris_Theater_(Chicago)\n",
"------\n",
"\n",
"Title: Hebron Church (Intermont, West Virginia)\n",
"--------\n",
" Summary:A mid-19th-century Lutheran church in Intermont, West Virginia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hebron_Church_(Intermont,_West_Virginia)\n",
"------\n",
"\n",
"Title: Heian Palace\n",
"--------\n",
" Summary:The original imperial palace of Heian-kyō, the capital of Japan\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Heian_Palace\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Holkham Hall\n",
"--------\n",
" Summary:Large 18th-century Palladian country house in Norfolk, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Holkham_Hall\n",
"------\n",
"\n",
"Title: Holy Thorn Reliquary\n",
"--------\n",
" Summary:14th-century reliquary made for John, Duke of Berry\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Holy_Thorn_Reliquary\n",
"------\n",
"\n",
"Title: Hope (painting)\n",
"--------\n",
" Summary:1886 painting by George Frederic Watts\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hope_(painting)\n",
"------\n",
"\n",
"Title: House with Chimaeras\n",
"--------\n",
" Summary:An Art Nouveau building in the Lypky neighborhood of Kiev, Ukraine\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/House_with_Chimaeras\n",
"------\n",
"\n",
"Title: Hoxne Hoard\n",
"--------\n",
" Summary:The largest hoard of late Roman silver and gold discovered in Britain,\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hoxne_Hoard\n",
"------\n",
"\n",
"Title: Hoysala architecture\n",
"--------\n",
" Summary:The building style developed under the rule of the Hoysala Empire between the 11th and 14th centuries, in the region known today as Karnataka, in India\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hoysala_architecture\n",
"------\n",
"\n",
"Title: Icelandic Phallological Museum\n",
"--------\n",
" Summary:Museum of penises and penis parts in Reykjavik, Iceland\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Icelandic_Phallological_Museum\n",
"------\n",
"\n",
"Title: IG Farben Building\n",
"--------\n",
" Summary:A building complex of the University of Frankfurt, Germany\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/IG_Farben_Building\n",
"------\n",
"\n",
"Title: Jay Pritzker Pavilion\n",
"--------\n",
" Summary:A bandshell in Millennium Park in Chicago, Illinois, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Jay_Pritzker_Pavilion\n",
"------\n",
"\n",
"Title: Joseph Priestley House\n",
"--------\n",
" Summary:The American home of Joseph Priestley\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Joseph_Priestley_House\n",
"------\n",
"\n",
"Title: Kona Lanes\n",
"--------\n",
" Summary:Former bowling center in Costa Mesa, California\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Kona_Lanes\n",
"------\n",
"\n",
"Title: Kronan (ship)\n",
"--------\n",
" Summary:The flagship of the Swedish Navy in the Baltic Sea in the 1670s\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Kronan_(ship)\n",
"------\n",
"\n",
"Title: Lindow Man\n",
"--------\n",
" Summary:Preserved body of an Iron Age man found in a bog in England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lindow_Man\n",
"------\n",
"\n",
"Title: Little Moreton Hall\n",
"--------\n",
" Summary:Moated half-timbered manor house near Congleton in England, built between about 1504 and 1610.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Little_Moreton_Hall\n",
"------\n",
"\n",
"Title: Maiden Castle, Dorset\n",
"--------\n",
" Summary:Iron Age hill fort in Dorset, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Maiden_Castle,_Dorset\n",
"------\n",
"\n",
"Title: Maya stelae\n",
"--------\n",
" Summary:Intricately carved stone slabs made by the Pre-Columbian Maya\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Maya_stelae\n",
"------\n",
"\n",
"Title: McCormick Tribune Plaza & Ice Rink\n",
"--------\n",
" Summary:A multi-purpose venue within Millennium Park in Chicago, Illinois\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/McCormick_Tribune_Plaza_%26_Ice_Rink\n",
"------\n",
"\n",
"Title: Melbourne Castle\n",
"--------\n",
" Summary:A medieval castle in Melbourne, Derbyshire\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Melbourne_Castle\n",
"------\n",
"\n",
"Title: Michigan State Capitol\n",
"--------\n",
" Summary:The building that houses the legislative branch of the government of the U.S. state of Michigan\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Michigan_State_Capitol\n",
"------\n",
"\n",
"Title: Millennium Park\n",
"--------\n",
" Summary:Public park in Chicago, Illinois, USA\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Millennium_Park\n",
"------\n",
"\n",
"Title: Monadnock Building\n",
"--------\n",
" Summary:Skyscraper on West Jackson Boulevard in Chicago, Illinois\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Monadnock_Building\n",
"------\n",
"\n",
"Title: More Hall Annex\n",
"--------\n",
" Summary:Former nuclear laboratory in historic building\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/More_Hall_Annex\n",
"------\n",
"\n",
"Title: Museum Of Bad Art\n",
"--------\n",
" Summary:Privately owned museum\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Museum_Of_Bad_Art\n",
"------\n",
"\n",
"Title: Nativity (Christus)\n",
"--------\n",
" Summary:Oil on wood panel painting by Petrus Christus\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nativity_(Christus)\n",
"------\n",
"\n",
"Title: Nelson's Pillar\n",
"--------\n",
" Summary:Former column and statue in Dublin, Ireland\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nelson%27s_Pillar\n",
"------\n",
"\n",
"Title: Nine Stones, Winterbourne Abbas\n",
"--------\n",
" Summary:Stone circle in Dorset, southwestern England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nine_Stones,_Winterbourne_Abbas\n",
"------\n",
"\n",
"Title: Norton Priory\n",
"--------\n",
" Summary:A historic site in Norton, Runcorn, Cheshire, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Norton_Priory\n",
"------\n",
"\n",
"Title: Old Church of St Nidan, Llanidan\n",
"--------\n",
" Summary:A medieval church in the community of Llanidan, in Anglesey, North Wales\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Old_Church_of_St_Nidan,_Llanidan\n",
"------\n",
"\n",
"Title: Old Pine Church\n",
"--------\n",
" Summary:1838 church near Purgitsville, West Virginia, United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Old_Pine_Church\n",
"------\n",
"\n",
"Title: Oregon State Capitol\n",
"--------\n",
" Summary:The building housing the state legislature and the offices of the governor, secretary of state, and treasurer of the U.S. state of Oregon\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Oregon_State_Capitol\n",
"------\n",
"\n",
"Title: Palace of Queluz\n",
"--------\n",
" Summary:18th-century Rococo Portuguese palace in Lisbon\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Palace_of_Queluz\n",
"------\n",
"\n",
"Title: Palazzo Pitti\n",
"--------\n",
" Summary:Renaissance palace and museum in Florence, Italy\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Palazzo_Pitti\n",
"------\n",
"\n",
"Title: Palladian architecture\n",
"--------\n",
" Summary:Style of architecture derived from the work of Venetian Andrea Palladio\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Palladian_architecture\n",
"------\n",
"\n",
"Title: Pennsylvania State Capitol\n",
"--------\n",
" Summary:The seat of government for the U.S. state of Pennsylvania\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pennsylvania_State_Capitol\n",
"------\n",
"\n",
"Title: Peveril Castle\n",
"--------\n",
" Summary:A ruined 11th-century castle overlooking the village of Castleton in Derbyshire\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Peveril_Castle\n",
"------\n",
"\n",
"Title: Pioneer Helmet\n",
"--------\n",
" Summary:Anglo-Saxon helmet from the late seventh century found in Wollaston, Northamptonshire\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pioneer_Helmet\n",
"------\n",
"\n",
"Title: Portrait of a Lady (van der Weyden)\n",
"--------\n",
" Summary:Oil-on-oak panel painting executed around 1460 by Rogier van der Weyden\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Portrait_of_a_Lady_(van_der_Weyden)\n",
"------\n",
"\n",
"Title: Portrait of a Young Girl (Christus)\n",
"--------\n",
" Summary:Oil on oak painting by Petrus Christus\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Portrait_of_a_Young_Girl_(Christus)\n",
"------\n",
"\n",
"Title: Prince's Palace of Monaco\n",
"--------\n",
" Summary:Official residence of the Prince of Monaco\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Prince%27s_Palace_of_Monaco\n",
"------\n",
"\n",
"Title: Quiriguá\n",
"--------\n",
" Summary:An ancient Maya archaeological site in south-eastern Guatemala\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Quirigu%C3%A1\n",
"------\n",
"\n",
"Title: Restoration of the Sistine Chapel frescoes\n",
"--------\n",
" Summary:One of the most significant art conservation-restoration projects of the 20th century.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Restoration_of_the_Sistine_Chapel_frescoes\n",
"------\n",
"\n",
"Title: Rochester Castle\n",
"--------\n",
" Summary:Well preserved 12th century castle in Rochester, Kent, South East England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rochester_Castle\n",
"------\n",
"\n",
"Title: Round Church, Preslav\n",
"--------\n",
" Summary:A large partially preserved early medieval Eastern Orthodox church in Bulgaria\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Round_Church,_Preslav\n",
"------\n",
"\n",
"Title: Rosetta Stone\n",
"--------\n",
" Summary:Ancient Egyptian stele with inscriptions in three languages\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rosetta_Stone\n",
"------\n",
"\n",
"Title: Rova of Antananarivo\n",
"--------\n",
" Summary:A royal palace complex in Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rova_of_Antananarivo\n",
"------\n",
"\n",
"Title: Royal Gold Cup\n",
"--------\n",
" Summary:Gold cup decorated with enamel and pearls made for the French royal family at the end of the 14th century\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Royal_Gold_Cup\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Santa María de Óvila\n",
"--------\n",
" Summary:A former Cistercian monastery in Trillo, Spain\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Santa_Mar%C3%ADa_de_%C3%93vila\n",
"------\n",
"\n",
"Title: Scottish Parliament Building\n",
"--------\n",
" Summary:Home of the Scottish Parliament at Holyrood, Edinburgh\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Scottish_Parliament_Building\n",
"------\n",
"\n",
"Title: Shorwell helmet\n",
"--------\n",
" Summary:Anglo-Saxon helmet from the early to mid-sixth century AD found near Shorwell on the Isle of Wight\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Shorwell_helmet\n",
"------\n",
"\n",
"Title: Shrine of Remembrance\n",
"--------\n",
" Summary:War memorial in Melbourne, Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Shrine_of_Remembrance\n",
"------\n",
"\n",
"Title: Sicilian Baroque\n",
"--------\n",
" Summary:Baroque architectural style from Sicily\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sicilian_Baroque\n",
"------\n",
"\n",
"Title: St Cuthbert Gospel\n",
"--------\n",
" Summary:Early 8th-century Anglo-Saxon pocket gospel book\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/St_Cuthbert_Gospel\n",
"------\n",
"\n",
"Title: St Helen's Church, Ashby-de-la-Zouch\n",
"--------\n",
" Summary:Church in North West Leicestershire, UK\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/St_Helen%27s_Church,_Ashby-de-la-Zouch\n",
"------\n",
"\n",
"Title: St James' Church, Sydney\n",
"--------\n",
" Summary:Church in Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/St_James%27_Church,_Sydney\n",
"------\n",
"\n",
"Title: St. Michael's Golden-Domed Monastery\n",
"--------\n",
" Summary:Monastery in Kiev, Ukraine\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/St._Michael%27s_Golden-Domed_Monastery\n",
"------\n",
"\n",
"Title: St Nicholas, Blakeney\n",
"--------\n",
" Summary:13th century Church in North Norfolk, UK\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/St_Nicholas,_Blakeney\n",
"------\n",
"\n",
"Title: Stanford Memorial Church\n",
"--------\n",
" Summary:Church on Stanford University campus in California built as a memorial to Leland Stanford\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Stanford_Memorial_Church\n",
"------\n",
"\n",
"Title: Statue of Liberty\n",
"--------\n",
" Summary:Colossal neoclassical sculpture on Liberty Island in New York Harbor\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Statue_of_Liberty\n",
"------\n",
"\n",
"Title: Streatham portrait\n",
"--------\n",
" Summary:Oil-on-panel painting claimed to be a copy of a portrait of Lady Jane Grey\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Streatham_portrait\n",
"------\n",
"\n",
"Title: Takalik Abaj\n",
"--------\n",
" Summary:Pre-Columbian archaeological site in Guatemala\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Takalik_Abaj\n",
"------\n",
"\n",
"Title: Tech Tower\n",
"--------\n",
" Summary:Historical building on the central campus of the Georgia Institute of Technology in Atlanta, Georgia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Tech_Tower\n",
"------\n",
"\n",
"Title: Temple of Eshmun\n",
"--------\n",
" Summary:Ancient temple to the Phoenician god of healing in Lebanon\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Temple_of_Eshmun\n",
"------\n",
"\n",
"Title: Tomb of Antipope John XXIII\n",
"--------\n",
" Summary:Marble-and-bronze tomb monument of Baldassare Cossa created by Donatello and Michelozzo in Florence\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Tomb_of_Antipope_John_XXIII\n",
"------\n",
"\n",
"Title: The Tower House\n",
"--------\n",
" Summary:Late Victorian townhouse in the Holland Park district, London, built by William Burges\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/The_Tower_House\n",
"------\n",
"\n",
"Title: Tower of London\n",
"--------\n",
" Summary:A historic castle on the north bank of the River Thames in central London\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Tower_of_London\n",
"------\n",
"\n",
"Title: Trump International Hotel and Tower (Chicago)\n",
"--------\n",
" Summary:Skyscraper condo-hotel in downtown Chicago, Illinois\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Trump_International_Hotel_and_Tower_(Chicago)\n",
"------\n",
"\n",
"Title: Ukiyo-e\n",
"--------\n",
" Summary:A genre of Japanese art which flourished from the 17th through 19th centuries\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ukiyo-e\n",
"------\n",
"\n",
"Title: Vasa (ship)\n",
"--------\n",
" Summary:Early 17th century Swedish warship which foundered on her maiden voyage, later salvaged and displayed in Stockholm\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Vasa_(ship)\n",
"------\n",
"\n",
"Title: Virgin and Child Enthroned (van der Weyden)\n",
"--------\n",
" Summary:c. 1433 painting attributed to Rogier van der Weyden\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Virgin_and_Child_Enthroned\n",
"------\n",
"\n",
"Title: Waddesdon Bequest\n",
"--------\n",
" Summary:An ex-Rothschild collection of Renaissance art in the British Museum\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Waddesdon_Bequest\n",
"------\n",
"\n",
"Title: Warkworth Castle\n",
"--------\n",
" Summary:Ruined medieval castle in Warkworth, Northumberland, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Warkworth_Castle\n",
"------\n",
"\n",
"Title: Warwick Castle\n",
"--------\n",
" Summary:Medieval motte-and-bailey castle in Warwickshire, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Warwick_Castle\n",
"------\n",
"\n",
"Title: Wells Cathedral\n",
"--------\n",
" Summary:Anglican cathedral in Wells, Somerset, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Wells_Cathedral\n",
"------\n",
"\n",
"Title: West Wycombe Park\n",
"--------\n",
" Summary:Country house in West Wycombe, Buckinghamshire, England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/West_Wycombe_Park\n",
"------\n",
"\n",
"Title: Western Chalukya architecture\n",
"--------\n",
" Summary:Style of architecture from the 11th and 12th century Western Chalukya Empire in modern central Karnataka, India\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Western_Chalukya_architecture\n",
"------\n",
"\n",
"Title: Windsor Castle\n",
"--------\n",
" Summary:Royal residence at Windsor in the English county of Berkshire\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Windsor_Castle\n",
"------\n",
"\n",
"Title: Withypool Stone Circle\n",
"--------\n",
" Summary:Late neolithic stone circle on Exmoor in Somerset\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Withypool_Stone_Circle\n",
"------\n",
"\n",
"Title: The Wrestlers (Etty)\n",
"--------\n",
" Summary:c. 1840 painting of two wrestlers by William Etty\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/The_Wrestlers_(Etty)\n",
"------\n",
"\n",
"Title: Bronwyn Bancroft\n",
"--------\n",
" Summary:Australian artist and fashion designer\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bronwyn_Bancroft\n",
"------\n",
"\n",
"Title: Felice Beato\n",
"--------\n",
" Summary:Italian-British photographer (1832 – 1909)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Felice_Beato\n",
"------\n",
"\n",
"Title: Jean Bellette\n",
"--------\n",
" Summary:Australian modernist painter (1908 – 1991)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Jean_Bellette\n",
"------\n",
"\n",
"Title: William Bruce (architect)\n",
"--------\n",
" Summary:Scottish architect (c. 1630 – 1710)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/William_Bruce_(architect)\n",
"------\n",
"\n",
"Title: William Burges\n",
"--------\n",
" Summary:English Gothic revival architect and designer (1827 – 1881)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/William_Burges\n",
"------\n",
"\n",
"Title: O. G. S. Crawford\n",
"--------\n",
" Summary:British archaeologist (1886 – 1957)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/O._G._S._Crawford\n",
"------\n",
"\n",
"Title: Lisa del Giocondo\n",
"--------\n",
" Summary:Subject of the Mona Lisa (1479 – 1542)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lisa_del_Giocondo\n",
"------\n",
"\n",
"Title: John Douglas (architect)\n",
"--------\n",
" Summary:English architect, (1830 – 1911)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/John_Douglas_(architect)\n",
"------\n",
"\n",
"Title: El Greco\n",
"--------\n",
" Summary:Greek painter, sculptor and architect of the Spanish Renaissance (1541 – 1614)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/El_Greco\n",
"------\n",
"\n",
"Title: El Lissitzky\n",
"--------\n",
" Summary:Soviet artist, designer, photographer, teacher, typographer and architect (1890 – 1941)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/El_Lissitzky\n",
"------\n",
"\n",
"Title: Stefan Lochner\n",
"--------\n",
" Summary:German late Gothic style painter (c. 1410–1451)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Stefan_Lochner\n",
"------\n",
"\n",
"Title: Adolfo Farsari\n",
"--------\n",
" Summary:Italian photographer based in Yokohama, Japan (1841 – 1898)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Adolfo_Farsari\n",
"------\n",
"\n",
"Title: Florence Fuller\n",
"--------\n",
" Summary:South African-born Australian portrait and landscape painter (1867 – 1946)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Florence_Fuller\n",
"------\n",
"\n",
"Title: Caspar David Friedrich\n",
"--------\n",
" Summary:German Romantic landscape painter (1774 – 1840)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Caspar_David_Friedrich\n",
"------\n",
"\n",
"Title: Vincent van Gogh\n",
"--------\n",
" Summary:Influential Dutch Post-Impressionist painter (1853 – 1890)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Vincent_van_Gogh\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Ima Hogg\n",
"--------\n",
" Summary:Philanthropist, patron of the arts, one of the most respected Texas women of the 20th century\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ima_Hogg\n",
"------\n",
"\n",
"Title: Charles Holden\n",
"--------\n",
" Summary:English architect (1875 – 1960)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Charles_Holden\n",
"------\n",
"\n",
"Title: Hu Zhengyan\n",
"--------\n",
" Summary:Chinese painter, seal carver, and publisher (c. 1584 – 1674)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hu_Zhengyan\n",
"------\n",
"\n",
"Title: André Kertész\n",
"--------\n",
" Summary:Hungarian photographer (1894 – 1985)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Andr%C3%A9_Kert%C3%A9sz\n",
"------\n",
"\n",
"Title: James B. Longacre\n",
"--------\n",
" Summary:American portraitist and engraver (1794–1869)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/James_B._Longacre\n",
"------\n",
"\n",
"Title: Danie Mellor\n",
"--------\n",
" Summary:Australian artist (born 1971)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Danie_Mellor\n",
"------\n",
"\n",
"Title: Henry Moore\n",
"--------\n",
" Summary:English artist known for sculpture (1898 – 1986)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Henry_Moore\n",
"------\n",
"\n",
"Title: Benjamin Mountfort\n",
"--------\n",
" Summary:English architect, emigrant to New Zealand (1825–1898)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Benjamin_Mountfort\n",
"------\n",
"\n",
"Title: Margaret Murray\n",
"--------\n",
" Summary:British egyptologist (1863–1963)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Margaret_Murray\n",
"------\n",
"\n",
"Title: Daisy Jugadai Napaltjarri\n",
"--------\n",
" Summary:Pintupi– and Luritja–speaking Indigenous Australian artist (c. 1955 – 2008)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Daisy_Jugadai_Napaltjarri\n",
"------\n",
"\n",
"Title: Wintjiya Napaltjarri\n",
"--------\n",
" Summary:Pintupi-speaking Indigenous Australian artist (born c.1928)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Wintjiya_Napaltjarri\n",
"------\n",
"\n",
"Title: Makinti Napanangka\n",
"--------\n",
" Summary:Indigenous Australian artist from the Western Desert region (c. 1930 – 2011)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Makinti_Napanangka\n",
"------\n",
"\n",
"Title: Hilda Rix Nicholas\n",
"--------\n",
" Summary:Australian painter (1884 – 1961)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hilda_Rix_Nicholas\n",
"------\n",
"\n",
"Title: Bronwyn Oliver\n",
"--------\n",
" Summary:Australian sculptor in metal (1959-2006)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bronwyn_Oliver\n",
"------\n",
"\n",
"Title: Robert Peake the Elder\n",
"--------\n",
" Summary:English painter (c. 1551–1619)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Robert_Peake_the_Elder\n",
"------\n",
"\n",
"Title: I. M. Pei\n",
"--------\n",
" Summary:Chinese-American architect (born 1917)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/I._M._Pei\n",
"------\n",
"\n",
"Title: Minnie Pwerle\n",
"--------\n",
" Summary:Indigenous Australian artist from Utopia, Northern Territory (c1915 – March 2006)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Minnie_Pwerle\n",
"------\n",
"\n",
"Title: Pierre Rossier\n",
"--------\n",
" Summary:Swiss photographer (1829 – 1886)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pierre_Rossier\n",
"------\n",
"\n",
"Title: Jacob van Ruisdael\n",
"--------\n",
" Summary:Dutch landscape painter and engraver ( c. 1629 – 1682)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Jacob_van_Ruisdael\n",
"------\n",
"\n",
"Title: Edmund Sharpe\n",
"--------\n",
" Summary:English architect and engineer (1809 – 1877)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Edmund_Sharpe\n",
"------\n",
"\n",
"Title: Constance Stokes\n",
"--------\n",
" Summary:Modernist Australian painter (née Parkin, 1906 – 1991)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Constance_Stokes\n",
"------\n",
"\n",
"Title: Mortimer Wheeler\n",
"--------\n",
" Summary:British archaeologist and Army officer (1890 – 1976)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mortimer_Wheeler\n",
"------\n",
"\n",
"Title: Nigel Williams (conservator)\n",
"--------\n",
" Summary:British conservator and expert on the restoration of ceramics and glass (1944–1992)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nigel_Williams_(conservator)\n",
"------\n",
"\n",
"Title: Rudolf Wolters\n",
"--------\n",
" Summary:German architect and government official (1903 – 1983)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rudolf_Wolters\n",
"------\n",
"\n",
"Title: John Michael Wright\n",
"--------\n",
" Summary:Portrait painter in the Baroque style (1617 – 1694)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/John_Michael_Wright\n",
"------\n",
"\n",
"Title: Abuwtiyuw\n",
"--------\n",
" Summary:An Egyptian dog, one of the earliest documented domestic animals\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Abuwtiyuw\n",
"------\n",
"\n",
"Title: Archaea\n",
"--------\n",
" Summary:A domain of single-celled prokaryotic microorganisms\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Archaea\n",
"------\n",
"\n",
"Title: Bacteria\n",
"--------\n",
" Summary:A domain of prokaryotes – single celled organisms without a nucleus\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bacteria\n",
"------\n",
"\n",
"Title: Bone Wars\n",
"--------\n",
" Summary:The period of competitive fossil hunting during the Gilded Age of American history, marked by a heated rivalry between Edward Drinker Cope and Othniel Charles Marsh\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bone_Wars\n",
"------\n",
"\n",
"Title: Cell nucleus\n",
"--------\n",
" Summary:A membrane-bounded organelle of eukaryotic cells in which chromosomes are housed and replicated.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cell_nucleus\n",
"------\n",
"\n",
"Title: Cretaceous–Paleogene extinction event\n",
"--------\n",
" Summary:Mass extinction event ending the Mesozoic Era\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cretaceous%E2%80%93Paleogene_extinction_event\n",
"------\n",
"\n",
"Title: DNA nanotechnology\n",
"--------\n",
" Summary:The design and manufacture of artificial nucleic acid structures for technological uses\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/DNA_nanotechnology\n",
"------\n",
"\n",
"Title: DNA repair\n",
"--------\n",
" Summary:Processes by which a cell identifies and corrects damage to the DNA molecules that encode its genome\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/DNA_repair\n",
"------\n",
"\n",
"Title: Ediacaran biota\n",
"--------\n",
" Summary:Enigmatic tubular and frond-shaped, mostly sessile organisms that lived during the Ediacaran Period (ca. 635–542 Mya)\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ediacaran_biota\n",
"------\n",
"\n",
"Title: Evolution\n",
"--------\n",
" Summary:Change in the heritable characteristics of biological populations over successive generations\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Evolution\n",
"------\n",
"\n",
"Title: Exosome complex\n",
"--------\n",
" Summary:A multi-protein intracellular complex capable of degrading various types of RNA molecules\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Exosome_complex\n",
"------\n",
"\n",
"Title: Fauna of Puerto Rico\n",
"--------\n",
" Summary:\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fauna_of_Puerto_Rico\n",
"------\n",
"\n",
"Title: Fauna of Scotland\n",
"--------\n",
" Summary:\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fauna_of_Scotland\n",
"------\n",
"\n",
"Title: Flight feather\n",
"--------\n",
" Summary:The long, stiff, feathers on the wings or tail of a bird that aid in the generation of lift and thrust\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Flight_feather\n",
"------\n",
"\n",
"Title: Genetics\n",
"--------\n",
" Summary:Science of genes, heredity, and variation in living organisms\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Genetics\n",
"------\n",
"\n",
"Title: History of biology\n",
"--------\n",
" Summary:History of the study of life from ancient to modern times\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/History_of_biology\n",
"------\n",
"\n",
"Title: History of evolutionary thought\n",
"--------\n",
" Summary:The history of evolutionary thought in biology\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/History_of_evolutionary_thought\n",
"------\n",
"\n",
"Title: Immune system\n",
"--------\n",
" Summary:A biological system that protects an organism against disease\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Immune_system\n",
"------\n",
"\n",
"Title: Introduction to viruses\n",
"--------\n",
" Summary:A non-technical introduction to the subject.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Introduction_to_viruses\n",
"------\n",
"\n",
"Title: Lemurs of Madagascar (book)\n",
"--------\n",
" Summary:2010 reference work and field guide\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lemurs_of_Madagascar_(book)\n",
"------\n",
"\n",
"Title: Major urinary proteins\n",
"--------\n",
" Summary:Proteins found in the urine and other secretions of many animals\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Major_urinary_proteins\n",
"------\n",
"\n",
"Title: Metabolism\n",
"--------\n",
" Summary:The set of life-sustaining chemical transformations within the cells of organisms\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Metabolism\n",
"------\n",
"\n",
"Title: Phagocyte\n",
"--------\n",
" Summary:Cells that protect the body by ingesting harmful foreign particles, bacteria, and dead or dying cells\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Phagocyte\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Proteasome\n",
"--------\n",
" Summary:Protein complexes which degrade unneeded or damaged proteins by proteolysis\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Proteasome\n",
"------\n",
"\n",
"Title: RNA interference\n",
"--------\n",
" Summary:A biological process in which RNA molecules inhibit gene expression or translation, by neutralizing targeted mRNA molecules.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/RNA_interference\n",
"------\n",
"\n",
"Title: Rotating locomotion in living systems\n",
"--------\n",
" Summary:Propulsion of living organisms via rotation of the whole body or a body part\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rotating_locomotion_in_living_systems\n",
"------\n",
"\n",
"Title: Serpin\n",
"--------\n",
" Summary:Superfamily of proteins with similar structures and diverse functions\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Serpin\n",
"------\n",
"\n",
"Title: Toothcomb\n",
"--------\n",
" Summary:A dental structure found in some mammals, comprising a group of front teeth arranged in a manner that facilitates grooming\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Toothcomb\n",
"------\n",
"\n",
"Title: Virus\n",
"--------\n",
" Summary:Type of non-cellular infectious agent\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Virus\n",
"------\n",
"\n",
"Title: Fungus\n",
"--------\n",
" Summary:Any member of the eukaryotic kingdom that includes organisms such as yeasts, molds and mushrooms\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fungus\n",
"------\n",
"\n",
"Title: American Cream Draft\n",
"--------\n",
" Summary:American draft horse breed\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/American_Cream_Draft\n",
"------\n",
"\n",
"Title: Andalusian horse\n",
"--------\n",
" Summary:Horse breed from the Iberian Peninsula\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Andalusian_horse\n",
"------\n",
"\n",
"Title: Australian Cattle Dog\n",
"--------\n",
" Summary:A breed of herding dog originally developed in Australia for droving cattle\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Australian_Cattle_Dog\n",
"------\n",
"\n",
"Title: Baleen whale\n",
"--------\n",
" Summary:Whales that strain plankton using baleen\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Baleen_whale\n",
"------\n",
"\n",
"Title: Banker horse\n",
"--------\n",
" Summary:A breed of feral horse living on barrier islands in North Carolina's Outer Banks\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Banker_horse\n",
"------\n",
"\n",
"Title: Beagle\n",
"--------\n",
" Summary:A breed of small scent hound developed primarily for hunting hare\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Beagle\n",
"------\n",
"\n",
"Title: Beringian wolf\n",
"--------\n",
" Summary:extinct type of wolf that lived during the Ice Age in Alaska, Yukon, and northern Wyoming\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Beringian_wolf\n",
"------\n",
"\n",
"Title: Bluebuck\n",
"--------\n",
" Summary:Extinct species of South African antelope\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bluebuck\n",
"------\n",
"\n",
"Title: Blue whale\n",
"--------\n",
" Summary:Baleen whale, largest animal known to ever exist.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Blue_whale\n",
"------\n",
"\n",
"Title: Bobcat\n",
"--------\n",
" Summary:North American mammal of the cat family Felidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bobcat\n",
"------\n",
"\n",
"Title: Boulonnais horse\n",
"--------\n",
" Summary:Heavy draft horse breed originating in France\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Boulonnais_horse\n",
"------\n",
"\n",
"Title: Camas pocket gopher\n",
"--------\n",
" Summary:Small species of burrowing rodent from Oregon\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Camas_pocket_gopher\n",
"------\n",
"\n",
"Title: Cleveland Bay\n",
"--------\n",
" Summary:A breed of horse that originated in England\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cleveland_Bay\n",
"------\n",
"\n",
"Title: Columbian mammoth\n",
"--------\n",
" Summary:An extinct species of mammoth that inhabited North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Columbian_mammoth\n",
"------\n",
"\n",
"Title: Conservation of slow lorises\n",
"--------\n",
" Summary:Conservation management of the nocturnal primates in Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Conservation_of_slow_lorises\n",
"------\n",
"\n",
"Title: Cougar\n",
"--------\n",
" Summary:Large cat of the family Felidae native to the Americas\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cougar\n",
"------\n",
"\n",
"Title: Dire wolf\n",
"--------\n",
" Summary:Extinct species of the genus Canis from North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Dire_wolf\n",
"------\n",
"\n",
"Title: Elephant\n",
"--------\n",
" Summary:Large terrestrial mammals with trunks from Africa and Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Elephant\n",
"------\n",
"\n",
"Title: Elk\n",
"--------\n",
" Summary:Large antlered species of deer from North America and east Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Elk\n",
"------\n",
"\n",
"Title: Evolution of lemurs\n",
"--------\n",
" Summary:History of primate evolution on Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Evolution_of_lemurs\n",
"------\n",
"\n",
"Title: False potto\n",
"--------\n",
" Summary:Lorisoid primate of uncertain taxonomic status found in Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/False_potto\n",
"------\n",
"\n",
"Title: Ferugliotheriidae\n",
"--------\n",
" Summary:One of three known families in the order Gondwanatheria, an enigmatic group of extinct mammals\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ferugliotheriidae\n",
"------\n",
"\n",
"Title: Fin whale\n",
"--------\n",
" Summary:Baleen whale, and second-largest mammal species\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fin_whale\n",
"------\n",
"\n",
"Title: Flocke\n",
"--------\n",
" Summary:A female polar bear born in captivity at the Nuremberg Zoo in Germany\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Flocke\n",
"------\n",
"\n",
"Title: Fork-marked lemur\n",
"--------\n",
" Summary:Genus of Madagascan primates\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fork-marked_lemur\n",
"------\n",
"\n",
"Title: Fossa (animal)\n",
"--------\n",
" Summary:Cat-like, carnivorous mammal endemic to Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fossa_(animal)\n",
"------\n",
"\n",
"Title: Giant anteater\n",
"--------\n",
" Summary:A large insectivorous mammal native to Central and South America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Giant_anteater\n",
"------\n",
"\n",
"Title: Giant eland\n",
"--------\n",
" Summary:An open-forest and savanna antelope of the family Bovidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Giant_eland\n",
"------\n",
"\n",
"Title: Giraffe\n",
"--------\n",
" Summary:Tall African ungulate\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Giraffe\n",
"------\n",
"\n",
"Title: Golden-crowned sifaka\n",
"--------\n",
" Summary:A medium-sized lemur with mostly white fur, prominent furry ears, and a golden-orange crown\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Golden-crowned_sifaka\n",
"------\n",
"\n",
"Title: Golden jackal\n",
"--------\n",
" Summary:A wolf-like canid that is native to Southeast Europe and Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Golden_jackal\n",
"------\n",
"\n",
"Title: Gray mouse lemur\n",
"--------\n",
" Summary:A small primate from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Gray_mouse_lemur\n",
"------\n",
"\n",
"Title: Guinea pig\n",
"--------\n",
" Summary:domesticated rodent species from South America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Guinea_pig\n",
"------\n",
"\n",
"Title: Haflinger\n",
"--------\n",
" Summary:A breed of horse developed in Austria and northern Italy\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Haflinger\n",
"------\n",
"\n",
"Title: Hippopotamus\n",
"--------\n",
" Summary:A large, mostly herbivorous, semiaquatic mammal native to sub-Saharan Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Hippopotamus\n",
"------\n",
"\n",
"Title: Humpback whale\n",
"--------\n",
" Summary:A large baleen whale with long pectoral fins and a knobbly head\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Humpback_whale\n",
"------\n",
"\n",
"Title: Icelandic horse\n",
"--------\n",
" Summary:A small horse breed developed in Iceland\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Icelandic_horse\n",
"------\n",
"\n",
"Title: Impala\n",
"--------\n",
" Summary:A medium-sized antelope found in eastern and southern Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Impala\n",
"------\n",
"\n",
"Title: Jaguar\n",
"--------\n",
" Summary:species of mammal\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Jaguar\n",
"------\n",
"\n",
"Title: Javan rhinoceros\n",
"--------\n",
" Summary:A rare species of mammal from Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Javan_rhinoceros\n",
"------\n",
"\n",
"Title: Javan slow loris\n",
"--------\n",
" Summary:A species of primate native to Java in Indonesia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Javan_slow_loris\n",
"------\n",
"\n",
"Title: Killer whale\n",
"--------\n",
" Summary:The largest living species of dolphin\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Killer_whale\n",
"------\n",
"\n",
"Title: Knut (polar bear)\n",
"--------\n",
" Summary:A polar bear born in captivity at the Berlin Zoological Garden\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Knut_(polar_bear)\n",
"------\n",
"\n",
"Title: Koala\n",
"--------\n",
" Summary:An arboreal herbivorous marsupial native to Australia.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Koala\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Lemur\n",
"--------\n",
" Summary:A clade of primates endemic to the island of Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lemur\n",
"------\n",
"\n",
"Title: Lion\n",
"--------\n",
" Summary:A species of large cat in the subfamily Pantherinae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lion\n",
"------\n",
"\n",
"Title: Marsh rice rat\n",
"--------\n",
" Summary:A semiaquatic North American rodent in the family Cricetidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Marsh_rice_rat\n",
"------\n",
"\n",
"Title: Marwari horse\n",
"--------\n",
" Summary:A rare breed of horse from the Marwar region of India.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Marwari_horse\n",
"------\n",
"\n",
"Title: New Forest pony\n",
"--------\n",
" Summary:A recognised mountain and moorland or native pony breed of the British Isles.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/New_Forest_pony\n",
"------\n",
"\n",
"Title: Norman Cob\n",
"--------\n",
" Summary:Breed of light draught horse from Normandy\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Norman_Cob\n",
"------\n",
"\n",
"Title: North Ronaldsay sheep\n",
"--------\n",
" Summary:Breed of sheep originating from the Orkney Islands, Scotland.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/North_Ronaldsay_sheep\n",
"------\n",
"\n",
"Title: Olympic marmot\n",
"--------\n",
" Summary:A rodent in the squirrel family from the U.S. state of Washington\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Olympic_marmot\n",
"------\n",
"\n",
"Title: Percheron\n",
"--------\n",
" Summary:A breed of draft horse from France\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Percheron\n",
"------\n",
"\n",
"Title: Petter's big-footed mouse\n",
"--------\n",
" Summary:Species of Madagascan rodent\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Petter%27s_big-footed_mouse\n",
"------\n",
"\n",
"Title: Platypus\n",
"--------\n",
" Summary:A semi-aquatic egg-laying mammal from eastern Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Platypus\n",
"------\n",
"\n",
"Title: Primate\n",
"--------\n",
" Summary:An order of mammals\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Primate\n",
"------\n",
"\n",
"Title: Pygmy hippopotamus\n",
"--------\n",
" Summary:A small species of hippopotamid from West Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pygmy_hippopotamus\n",
"------\n",
"\n",
"Title: Quagga\n",
"--------\n",
" Summary:An extinct subspecies of plains zebra from South Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Quagga\n",
"------\n",
"\n",
"Title: Raccoon\n",
"--------\n",
" Summary:medium sized procyonid mammal native to North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Raccoon\n",
"------\n",
"\n",
"Title: Right whale\n",
"--------\n",
" Summary:Three species of large baleen whales of the genus Eubalaena\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Right_whale\n",
"------\n",
"\n",
"Title: Ring-tailed lemur\n",
"--------\n",
" Summary:A large lemur from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ring-tailed_lemur\n",
"------\n",
"\n",
"Title: Rodent\n",
"--------\n",
" Summary:Diverse order of mammals\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rodent\n",
"------\n",
"\n",
"Title: Ruffed lemur\n",
"--------\n",
" Summary:A species of primate from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ruffed_lemur\n",
"------\n",
"\n",
"Title: Sea mink\n",
"--------\n",
" Summary:An extinct species of mustelid mammal from eastern North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sea_mink\n",
"------\n",
"\n",
"Title: Sea otter\n",
"--------\n",
" Summary:A species of marine mammal from the northern and eastern coasts of the North Pacific Ocean\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sea_otter\n",
"------\n",
"\n",
"Title: Sei whale\n",
"--------\n",
" Summary:Large species of baleen whale\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sei_whale\n",
"------\n",
"\n",
"Title: Sheep\n",
"--------\n",
" Summary:Domesticated ruminant bred for meat, wool and milk\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sheep\n",
"------\n",
"\n",
"Title: Short-beaked echidna\n",
"--------\n",
" Summary:Spiny furred egg-laying mammal from Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Short-beaked_echidna\n",
"------\n",
"\n",
"Title: Silky sifaka\n",
"--------\n",
" Summary:A large lemur from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Silky_sifaka\n",
"------\n",
"\n",
"Title: Slow loris\n",
"--------\n",
" Summary:A genus of primates from Southeast Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Slow_loris\n",
"------\n",
"\n",
"Title: Small-toothed sportive lemur\n",
"--------\n",
" Summary:A species of primate from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Small-toothed_sportive_lemur\n",
"------\n",
"\n",
"Title: Steller's sea cow\n",
"--------\n",
" Summary:Extinct species of sirenian from the Bering Sea\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Steller%27s_sea_cow\n",
"------\n",
"\n",
"Title: Strepsirrhini\n",
"--------\n",
" Summary:A suborder of primates which includes lemurs, galagos, pottos and lorises\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Strepsirrhini\n",
"------\n",
"\n",
"Title: Subfossil lemur\n",
"--------\n",
" Summary:Lemurs from Madagascar that are represented by recent (subfossil) remains\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Subfossil_lemur\n",
"------\n",
"\n",
"Title: Suffolk Punch\n",
"--------\n",
" Summary:English breed of draught horse.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Suffolk_Punch\n",
"------\n",
"\n",
"Title: Sumatran rhinoceros\n",
"--------\n",
" Summary:Endangered species of small Asian rhinoceros\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sumatran_rhinoceros\n",
"------\n",
"\n",
"Title: Tammar wallaby\n",
"--------\n",
" Summary:A small macropod native to South and Western Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Tammar_wallaby\n",
"------\n",
"\n",
"Title: Tasmanian devil\n",
"--------\n",
" Summary:A carnivorous marsupial from Tasmania\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Tasmanian_devil\n",
"------\n",
"\n",
"Title: Thoroughbred\n",
"--------\n",
" Summary:Horse breed developed for racing\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Thoroughbred\n",
"------\n",
"\n",
"Title: Thylacine\n",
"--------\n",
" Summary:An extinct species of carnivorous marsupial from Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Thylacine\n",
"------\n",
"\n",
"Title: Trait du Nord\n",
"--------\n",
" Summary:A breed of heavy draft horse from Belgium and France\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Trait_du_Nord\n",
"------\n",
"\n",
"Title: Woolly mammoth\n",
"--------\n",
" Summary:An extinct species of mammoth from the Pleistocene epoch\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Woolly_mammoth\n",
"------\n",
"\n",
"Title: African crake\n",
"--------\n",
" Summary:A bird in the rail family that breeds in most of sub-Saharan Africa.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/African_crake\n",
"------\n",
"\n",
"Title: African river martin\n",
"--------\n",
" Summary:A migratory passerine bird of the swallow family\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/African_river_martin\n",
"------\n",
"\n",
"Title: Albatross\n",
"--------\n",
" Summary:Large seabirds in the order Procellariiformes found in the Southern Ocean and the North Pacific\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Albatross\n",
"------\n",
"\n",
"Title: Alpine chough\n",
"--------\n",
" Summary:A bird in the crow family which breeds in high mountains from Spain eastwards through southern Europe and North Africa to Central Asia and Nepal\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Alpine_chough\n",
"------\n",
"\n",
"Title: American goldfinch\n",
"--------\n",
" Summary:A small North American migratory bird in the finch family\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/American_goldfinch\n",
"------\n",
"\n",
"Title: American white ibis\n",
"--------\n",
" Summary:A species of bird in the ibis family found from Virginia via the Gulf Coast of the United States south through most of the coastal New World tropics.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/American_white_ibis\n",
"------\n",
"\n",
"Title: Andean condor\n",
"--------\n",
" Summary:A large South American bird in the New World vulture family\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Andean_condor\n",
"------\n",
"\n",
"Title: Antbird\n",
"--------\n",
" Summary:A large passerine bird family, found across subtropical and tropical Central and South America, from Mexico to Argentina.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Antbird\n",
"------\n",
"\n",
"Title: Arctic tern\n",
"--------\n",
" Summary:A bird in the family Laridae with a circumpolar breeding distribution covering the Arctic and sub-Arctic regions of Europe, Asia, and North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Arctic_tern\n",
"------\n",
"\n",
"Title: Atlantic puffin\n",
"--------\n",
" Summary:A seabird in the auk family native to the Atlantic Ocean\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Atlantic_puffin\n",
"------\n",
"\n",
"Title: Australian magpie\n",
"--------\n",
" Summary:A medium-sized black and white passerine bird native to Australia and southern New Guinea.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Australian_magpie\n",
"------\n",
"\n",
"Title: Aylesbury duck\n",
"--------\n",
" Summary:A breed of domesticated duck, bred mainly for its meat and appearance\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Aylesbury_duck\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Bald eagle\n",
"--------\n",
" Summary:A bird of prey from North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bald_eagle\n",
"------\n",
"\n",
"Title: Banded stilt\n",
"--------\n",
" Summary:A nomadic wading bird of the stilt and avocet family Recurvirostridae native to Australia.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Banded_stilt\n",
"------\n",
"\n",
"Title: Barn owl\n",
"--------\n",
" Summary:A common cosmopolitan owl\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Barn_owl\n",
"------\n",
"\n",
"Title: Barn swallow\n",
"--------\n",
" Summary:A migratory passerine bird, and the most widspread species of swallow\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Barn_swallow\n",
"------\n",
"\n",
"Title: Bird\n",
"--------\n",
" Summary:Warm-blooded, egg-laying vertebrates with wings, feathers and beaks\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bird\n",
"------\n",
"\n",
"Title: Black vulture\n",
"--------\n",
" Summary:A New World vulture found from the southeastern United States to Central Chile and Uruguay\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Black_vulture\n",
"------\n",
"\n",
"Title: Blue-faced honeyeater\n",
"--------\n",
" Summary:A passerine bird of the family Meliphagidae from northern and eastern Australia and southern New Guinea.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Blue-faced_honeyeater\n",
"------\n",
"\n",
"Title: Bohemian waxwing\n",
"--------\n",
" Summary:A passerine bird from Eurasia and North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Bohemian_waxwing\n",
"------\n",
"\n",
"Title: Broad-billed parrot\n",
"--------\n",
" Summary:A large extinct parrot endemic to Mauritius\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Broad-billed_parrot\n",
"------\n",
"\n",
"Title: California condor\n",
"--------\n",
" Summary:Large New World vulture from western North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/California_condor\n",
"------\n",
"\n",
"Title: Cape sparrow\n",
"--------\n",
" Summary:A small passerine bird from southern Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cape_sparrow\n",
"------\n",
"\n",
"Title: Carnaby's black cockatoo\n",
"--------\n",
" Summary:A large bird endemic to southwest Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Carnaby%27s_black_cockatoo\n",
"------\n",
"\n",
"Title: Cattle egret\n",
"--------\n",
" Summary:A cosmopolitan heron found in the tropic, sub-tropics and warm temperate zones\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cattle_egret\n",
"------\n",
"\n",
"Title: Choiseul pigeon\n",
"--------\n",
" Summary:An extinct bird from the Solomon Islands\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Choiseul_pigeon\n",
"------\n",
"\n",
"Title: Cockatoo\n",
"--------\n",
" Summary:Any bird in the family Cacatuidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Cockatoo\n",
"------\n",
"\n",
"Title: Common blackbird\n",
"--------\n",
" Summary:A thrush native to Europe, Asia and North Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_blackbird\n",
"------\n",
"\n",
"Title: Common chiffchaff\n",
"--------\n",
" Summary:A small migratory passerine bird found in Europe, Asia and north Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_chiffchaff\n",
"------\n",
"\n",
"Title: Common firecrest\n",
"--------\n",
" Summary:A very small passerine bird from Europe and northwest Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_firecrest\n",
"------\n",
"\n",
"Title: Common house martin\n",
"--------\n",
" Summary:A migratory passerine bird of the swallow family found in Europe, Africa and Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_house_martin\n",
"------\n",
"\n",
"Title: Common raven\n",
"--------\n",
" Summary:A large, black, passerine bird of the Northern Hemisphere\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_raven\n",
"------\n",
"\n",
"Title: Common starling\n",
"--------\n",
" Summary:A medium sized passerine bird native to temperate Europe and western Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Common_starling\n",
"------\n",
"\n",
"Title: Corn crake\n",
"--------\n",
" Summary:Migratory bird in the rail family found in Europe, Asia and Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Corn_crake\n",
"------\n",
"\n",
"Title: Crescent honeyeater\n",
"--------\n",
" Summary:A passerine bird of the family Meliphagidae from southeastern Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Crescent_honeyeater\n",
"------\n",
"\n",
"Title: Dodo\n",
"--------\n",
" Summary:An extinct large flightless pigeon from Mauritius\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Dodo\n",
"------\n",
"\n",
"Title: Emperor penguin\n",
"--------\n",
" Summary:A large flightless seabird endemic to Antarctica\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Emperor_penguin\n",
"------\n",
"\n",
"Title: Emu\n",
"--------\n",
" Summary:Large flightless bird endemic to Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Emu\n",
"------\n",
"\n",
"Title: Eurasian nuthatch\n",
"--------\n",
" Summary:A small passerine bird found in temperate Eurasia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Eurasian_nuthatch\n",
"------\n",
"\n",
"Title: Eurasian treecreeper\n",
"--------\n",
" Summary:A small passerine bird found in temperate Eurasia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Eurasian_treecreeper\n",
"------\n",
"\n",
"Title: Fiji parrotfinch\n",
"--------\n",
" Summary:A species of bird in the family Estreldidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fiji_parrotfinch\n",
"------\n",
"\n",
"Title: Flame robin\n",
"--------\n",
" Summary:A small passerine bird native to Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Flame_robin\n",
"------\n",
"\n",
"Title: Frigatebird\n",
"--------\n",
" Summary:A family of seabeirds found across tropical and subtropical oceans\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Frigatebird\n",
"------\n",
"\n",
"Title: Fulvous whistling duck\n",
"--------\n",
" Summary:A species of bird in the family Anatidae, widespead in tropical wetlands\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Fulvous_whistling_duck\n",
"------\n",
"\n",
"Title: Garden warbler\n",
"--------\n",
" Summary:A small migratory passerine bird\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Garden_warbler\n",
"------\n",
"\n",
"Title: Golden white-eye\n",
"--------\n",
" Summary:A bird in the white-eye family from the Northern Mariana Islands\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Golden_white-eye\n",
"------\n",
"\n",
"Title: Great auk\n",
"--------\n",
" Summary:Extinct flightless seabird from the North Atlantic\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Great_auk\n",
"------\n",
"\n",
"Title: Greater crested tern\n",
"--------\n",
" Summary:Seabird in the family Laridae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Greater_crested_tern\n",
"------\n",
"\n",
"Title: Grey jay\n",
"--------\n",
" Summary:A passerine bird of the family Corvidae from North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Grey_jay\n",
"------\n",
"\n",
"Title: Huia\n",
"--------\n",
" Summary:Extinct species of New Zealand wattlebird from North Island\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Huia\n",
"------\n",
"\n",
"Title: Invisible rail\n",
"--------\n",
" Summary:A large flightless bird endemic to Indonesia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Invisible_rail\n",
"------\n",
"\n",
"Title: Kakapo\n",
"--------\n",
" Summary:A large flightless nocturnal parrot endemic to New Zealand\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Kakapo\n",
"------\n",
"\n",
"Title: King Island emu\n",
"--------\n",
" Summary:Extinct species of flightless bird from the Bass Strait island\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/King_Island_emu\n",
"------\n",
"\n",
"Title: King vulture\n",
"--------\n",
" Summary:A large bird found in Central and South America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/King_vulture\n",
"------\n",
"\n",
"Title: Lesser Antillean macaw\n",
"--------\n",
" Summary:Extinct bird from the Caribbean\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Lesser_Antillean_macaw\n",
"------\n",
"\n",
"Title: Long-tailed ground roller\n",
"--------\n",
" Summary:A bird in the family Brachypteraciidae from Madagascar\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Long-tailed_ground_roller\n",
"------\n",
"\n",
"Title: Macaroni penguin\n",
"--------\n",
" Summary:A crested penguin found from the Subantarctic to the Antarctic Peninsula\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Macaroni_penguin\n",
"------\n",
"\n",
"Title: Madeira firecrest\n",
"--------\n",
" Summary:A very small passerine bird in the kinglet family from Madeira\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Madeira_firecrest\n",
"------\n",
"\n",
"Title: Mangrove swallow\n",
"--------\n",
" Summary:A passerine bird in the swallow famly from Mexico and Central America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mangrove_swallow\n",
"------\n",
"\n",
"Title: Mascarene martin\n",
"--------\n",
" Summary:A passerine bird in the swallow family that breeds im Madagascar, Mauritius and Réunion\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mascarene_martin\n",
"------\n",
"\n",
"Title: Masked shrike\n",
"--------\n",
" Summary:Migratory bird in the family Laniidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Masked_shrike\n",
"------\n",
"\n",
"Title: Mauritius blue pigeon\n",
"--------\n",
" Summary:Extinct bird in the family Columbidae from Mauritius\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mauritius_blue_pigeon\n",
"------\n",
"\n",
"Title: Mourning dove\n",
"--------\n",
" Summary:North American bird in the family Columbidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mourning_dove\n",
"------\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Title: Nauru reed warbler\n",
"--------\n",
" Summary:A passerine bird endemic to the Pacific island Nauru\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nauru_reed_warbler\n",
"------\n",
"\n",
"Title: Newton's parakeet\n",
"--------\n",
" Summary:Extinct parrot from the island Rodrigues\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Newton%27s_parakeet\n",
"------\n",
"\n",
"Title: Noisy miner\n",
"--------\n",
" Summary:A bird in the honeyeater family from eastern Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Noisy_miner\n",
"------\n",
"\n",
"Title: Northern bald ibis\n",
"--------\n",
" Summary:An endangered migratory bird found in barren and rocky habitats\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Northern_bald_ibis\n",
"------\n",
"\n",
"Title: Northern pintail\n",
"--------\n",
" Summary:A migratory duck that breeds in northern Eurasia and North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Northern_pintail\n",
"------\n",
"\n",
"Title: Nuthatch\n",
"--------\n",
" Summary:A genus, Sitta, of small passserine birds from the Northern Hemisphere\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Nuthatch\n",
"------\n",
"\n",
"Title: Passenger pigeon\n",
"--------\n",
" Summary:An extinct migratory pigeon previously endemic to North America\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Passenger_pigeon\n",
"------\n",
"\n",
"Title: Peregrine falcon\n",
"--------\n",
" Summary:A widespread bird of prey in the family Falconidae\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Peregrine_falcon\n",
"------\n",
"\n",
"Title: Pelican\n",
"--------\n",
" Summary:A genus of large water birds with a large bill and throat pouch\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pelican\n",
"------\n",
"\n",
"Title: Pied currawong\n",
"--------\n",
" Summary:A medium-sized black passerine bird native to eastern Australia and Lord Howe Island\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Pied_currawong\n",
"------\n",
"\n",
"Title: Procellariidae\n",
"--------\n",
" Summary:A family of seabirds which includes petrels, shearweters and prions\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Procellariidae\n",
"------\n",
"\n",
"Title: Przevalski's nuthatch\n",
"--------\n",
" Summary:A small passerine bird endemic to southeastern Tibet and west central China\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Przevalski%27s_nuthatch\n",
"------\n",
"\n",
"Title: Puerto Rican amazon\n",
"--------\n",
" Summary:A parrot. The only extant bird endemic to Puerto Rico.\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Puerto_Rican_amazon\n",
"------\n",
"\n",
"Title: Red-backed fairywren\n",
"--------\n",
" Summary:A passerine bird in the Australasian wren family\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-backed_fairywren\n",
"------\n",
"\n",
"Title: Red-billed chough\n",
"--------\n",
" Summary:A bird in the crow family from Eurasia and North Africa\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-billed_chough\n",
"------\n",
"\n",
"Title: Red-billed tropicbird\n",
"--------\n",
" Summary:Species of seabird of tropical oceans\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-billed_tropicbird\n",
"------\n",
"\n",
"Title: Red-capped robin\n",
"--------\n",
" Summary:A small passerine bird native to Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-capped_robin\n",
"------\n",
"\n",
"Title: Red-necked grebe\n",
"--------\n",
" Summary:A migratory aquatic bird found in the temperate regions of the northern hemisphere\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-necked_grebe\n",
"------\n",
"\n",
"Title: Red-tailed black cockatoo\n",
"--------\n",
" Summary:Large black cockatoo native to Australia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-tailed_black_cockatoo\n",
"------\n",
"\n",
"Title: Red-winged fairywren\n",
"--------\n",
" Summary:A passerine bird in the Australasian wren family\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red-winged_fairywren\n",
"------\n",
"\n",
"Title: Red rail\n",
"--------\n",
" Summary:An extinct species of flightless rail which was endemic to Mauritius,\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Red_rail\n",
"------\n",
"\n",
"Title: Ruff\n",
"--------\n",
" Summary:A medium-sized migratory wading bird that breeds in northern Eurasia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Ruff\n",
"------\n",
"\n",
"Title: Rufous-crowned sparrow\n",
"--------\n",
" Summary:A small passerine bird from the Southwestern United States and Mexico\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Rufous-crowned_sparrow\n",
"------\n",
"\n",
"Title: Sind sparrow\n",
"--------\n",
" Summary:Sparrow species of bird found in South Asia\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Sind_sparrow\n",
"------\n",
"\n",
"Title: Amphibian\n",
"--------\n",
" Summary:A class of ectothermic tetrapods, which typically breed in water\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Amphibian\n",
"------\n",
"\n",
"Title: Megalodon\n",
"--------\n",
" Summary:Extinct giant shark of the Early Miocene to Late Pliocene\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Megalodon\n",
"------\n",
"\n",
"Title: Mayfly\n",
"--------\n",
" Summary:Aquatic insects of the order Ephemeroptera\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Mayfly\n",
"------\n",
"\n",
"Title: Edward Drinker Cope\n",
"--------\n",
" Summary:American paleontologist and biologist\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Edward_Drinker_Cope\n",
"------\n",
"\n",
"Title: Carucage\n",
"--------\n",
" Summary:12th-century English medieval tax\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Carucage\n",
"------\n",
"\n",
"Title: BAE Systems\n",
"--------\n",
" Summary:Defense, security and aerospace company\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/BAE_Systems\n",
"------\n",
"\n",
"Title: Flying Eagle cent\n",
"--------\n",
" Summary:A one-cent piece struck by the Mint of the United States\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Flying_Eagle_cent\n",
"------\n",
"\n",
"Title: Huguenot-Walloon half dollar\n",
"--------\n",
" Summary:US commemorative coin issued in 1924\n",
"------\n",
" URL: https://en.wikipedia.org/wiki/Huguenot-Walloon_half_dollar\n",
"------\n",
"\n"
]
},
{
"ename": "ConnectionError",
"evalue": "('Connection aborted.', OSError(\"(54, 'ECONNRESET')\",))",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 599\u001b[0m \u001b[0mbody\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mbody\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mheaders\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 600\u001b[0;31m chunked=chunked)\n\u001b[0m\u001b[1;32m 601\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;31m# otherwise it looks like a programming error was the cause.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mraise_from\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mSocketTimeout\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mBaseSSLError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mraise_from\u001b[0;34m(value, from_value)\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 379\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 380\u001b[0;31m \u001b[0mhttplib_response\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mconn\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 381\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1330\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1331\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1332\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 296\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 297\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 298\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 257\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 258\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 259\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 585\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 586\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 587\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py\u001b[0m in \u001b[0;36mrecv_into\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 289\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 290\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 291\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mOpenSSL\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mSSL\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mZeroReturnError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mOSError\u001b[0m: (54, 'ECONNRESET')",
"\nDuring handling of the above exception, another exception occurred:\n",
"\u001b[0;31mProtocolError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests/adapters.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 444\u001b[0m \u001b[0mretries\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmax_retries\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 445\u001b[0;31m \u001b[0mtimeout\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 446\u001b[0m )\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 637\u001b[0m retries = retries.increment(method, url, error=e, _pool=self,\n\u001b[0;32m--> 638\u001b[0;31m _stacktrace=sys.exc_info()[2])\n\u001b[0m\u001b[1;32m 639\u001b[0m \u001b[0mretries\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/util/retry.py\u001b[0m in \u001b[0;36mincrement\u001b[0;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[1;32m 366\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mread\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mFalse\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_is_method_retryable\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 367\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merror\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0merror\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0m_stacktrace\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 368\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mread\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mreraise\u001b[0;34m(tp, value, tb)\u001b[0m\n\u001b[1;32m 684\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__traceback__\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mtb\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 685\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwith_traceback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 686\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 599\u001b[0m \u001b[0mbody\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mbody\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mheaders\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 600\u001b[0;31m chunked=chunked)\n\u001b[0m\u001b[1;32m 601\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;31m# otherwise it looks like a programming error was the cause.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mraise_from\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mSocketTimeout\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mBaseSSLError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mraise_from\u001b[0;34m(value, from_value)\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 379\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 380\u001b[0;31m \u001b[0mhttplib_response\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mconn\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 381\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1330\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1331\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1332\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 296\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 297\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 298\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 257\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 258\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 259\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 585\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 586\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 587\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py\u001b[0m in \u001b[0;36mrecv_into\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 289\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 290\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 291\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mOpenSSL\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mSSL\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mZeroReturnError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mProtocolError\u001b[0m: ('Connection aborted.', OSError(\"(54, 'ECONNRESET')\",))",
"\nDuring handling of the above exception, another exception occurred:\n",
"\u001b[0;31mConnectionError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-97-45666f5b3a48>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mitemurl\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mitemurls\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;31m# print(itemurl)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 11\u001b[0;31m \u001b[0mshortdesc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msession\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitemurl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 12\u001b[0m \u001b[0mshortcontent\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mshortdesc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mhtml\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfind\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\".shortdescription\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mfirst\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mitem\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mshortcontent\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, url, **kwargs)\u001b[0m\n\u001b[1;32m 523\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msetdefault\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'allow_redirects'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 525\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'GET'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 526\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 527\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0moptions\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests_html.py\u001b[0m in \u001b[0;36mrequest\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 670\u001b[0m \"\"\"\n\u001b[1;32m 671\u001b[0m \u001b[0;31m# Convert Request object into HTTPRequest object.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 672\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msuper\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mHTMLSession\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 673\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 674\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mHTMLResponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_from_response\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36mrequest\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 510\u001b[0m }\n\u001b[1;32m 511\u001b[0m \u001b[0msend_kwargs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupdate\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msettings\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 512\u001b[0;31m \u001b[0mresp\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mprep\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0msend_kwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 513\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 514\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, **kwargs)\u001b[0m\n\u001b[1;32m 620\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 621\u001b[0m \u001b[0;31m# Send the request\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 622\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0madapter\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 623\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 624\u001b[0m \u001b[0;31m# Total elapsed time of the request (approximately)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.pyenv/versions/miniconda3-latest/lib/python3.6/site-packages/requests/adapters.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 493\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 494\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mProtocolError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msocket\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0merror\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0merr\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 495\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrequest\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 496\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 497\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mMaxRetryError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mConnectionError\u001b[0m: ('Connection aborted.', OSError(\"(54, 'ECONNRESET')\",))"
]
}
],
"source": [
"#get wikipedia featured page\n",
"\n",
"r = session.get(\"https://en.wikipedia.org/wiki/Wikipedia:Featured_articles\")\n",
"items = r.html.find(\".featured_article_metadata.has_been_on_main_page>a\")\n",
"print(len(items))\n",
"\n",
"for item in items:\n",
" itemurls = item.absolute_links\n",
" for itemurl in itemurls:\n",
"# print(itemurl)\n",
" shortdesc = session.get(itemurl)\n",
" shortcontent = shortdesc.html.find(\".shortdescription\",first=True)\n",
" if item and shortcontent:\n",
" out = \"Title: \"+item.text+\"\\n--------\\n Summary:\"+shortcontent.text+\"\\n------\\n URL: \"+str(itemurl)+\"\\n------\\n\"\n",
" print(out)\n",
" time.sleep(0.2);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.6"
},
"toc": {
"base_numbering": 1,
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment