Adjective-Collector

Sat 17 May 2025

title: "Adjective Collector" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
page = requests.get('https://www.enchantedlearning.com/wordlist/adjectivesforpeople.shtml')
soup = BeautifulSoup(page.text, 'html.parser') 
items = soup.select('div.wordlist-item')

item_list = ''
for item in items:
    #print(item.get_text())
    item_list =  item_list + ',' +str(item.get_text())

print(item_list)
,able,abnormal,above average,absent-minded,adventurous,affectionate,agile,agreeable,alert,amazing,ambitious,amiable,amusing,analytical,angelic,apathetic,apprehensive,ardent,artificial,artistic,assertive,attentive,average,awesome,awful,balanced,beautiful,below average,beneficent,blue,blunt,boisterous,brave,bright,brilliant,buff,callous,candid,cantankerous,capable,careful,careless,caustic,cautious,charming,cheerful,chic,childish,childlike,churlish,circumspect,civil,clean,clever,clumsy,coherent,cold,competent,composed,conceited,condescending,confident,confused,conscientious,considerate,content,cool,cool-headed,cooperative,cordial,courageous,cowardly,crabby,crafty,cranky,crass,critical,cruel,curious,cynical,dainty,decisive,deep,deferential,deft,delicate,delightful,demonic,demure,dependent,depressed,devoted,dextrous,diligent,direct,dirty,disagreeable,discerning,discreet,disruptive,distant,distraught,distrustful,dowdy,dramatic,dreary,drowsy,drugged,drunk,dull,dutiful,eager,earnest,easy-going,efficient,egotistical,elfin,emotional,energetic,enterprising,enthusiastic,evasive,even-tempered,exacting,excellent,excitable,experienced,fabulous,fastidious,ferocious,fervent,fiery,flabby,flaky,flashy,frank,friendly,funny,fussy,generous,gentle,gloomy,glutinous,good,grave,great,groggy,grouchy,guarded,hateful,hearty,helpful,hesitant,hot-headed,hypercritical,hysterical,idiotic,idle,illogical,imaginative,immature,immodest,impatient,imperturbable,impetuous,impractical,impressionable,impressive,impulsive,inactive,incisive,incompetent,inconsiderate,inconsistent,indefatigable,independent,indiscreet,indolent,industrious,inexperienced,insensitive,inspiring,intelligent,interesting,intolerant,inventive,irascible,irritable,irritating,jocular,jovial,joyous,judgmental,keen,kind,lame,lazy,lean,leery,lethargic,level-headed,listless,lithe,lively,local,logical,long-winded,lovable,love-lorn,lovely,maternal,mature,mean,meddlesome,mercurial,methodical,meticulous,mild,miserable,modest,moronic,morose,motivated,musical,naive,nasty,natural,naughty,negative,nervous,noisy,normal,nosy,numb,obliging,obnoxious,old-fashioned,one-sided,orderly,ostentatious,outgoing,outspoken,passionate,passive,paternal,paternalistic,patient,peaceful,peevish,pensive,persevering,persnickety,petulant,picky,plain,plain-speaking,playful,pleasant,plucky,polite,popular,positive,powerful,practical,prejudiced,pretty,proficient,proud,provocative,prudent,punctual,quarrelsome,querulous,quick,quick-tempered,quiet,realistic,reassuring,reclusive,reliable,reluctant,resentful,reserved,resigned,resourceful,respected,respectful,responsible,restless,revered,ridiculous,sad,sassy,saucy,sedate,self-assured,selfish,sensible,sensitive,sentimental,serene,serious,sharp,short-tempered,shrewd,shy,silly,sincere,sleepy,slight,sloppy,slothful,slovenly,slow,smart,snazzy,sneering,snobby,sober,somber,sophisticated,soulful,soulless,sour,spirited,spiteful,stable,staid,steady,stern,stoic,striking,strong,stupid,sturdy,subtle,sulky,sullen,supercilious,superficial,surly,suspicious,sweet,tactful,tactless,talented,testy,thinking,thoughtful,thoughtless,timid,tired,tolerant,touchy,tranquil,ugly,unaffected,unbalanced,uncertain,uncooperative,undependable,unemotional,unfriendly,unguarded,unhelpful,unimaginative,unmotivated,unpleasant,unpopular,unreliable,unsophisticated,unstable,unsure,unthinking,unwilling,venal,versatile,vigilant,volcanic,vulnerable,warm,warmhearted,wary,watchful,weak,well-behaved,well-developed,well-intentioned,well-respected,well-rounded,willing,wonderful,zealous


Score: 5

Category: webreader


Github-Language-Finder

Sat 17 May 2025

title: "GitHub Language Finder" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
# Collect and parse first page
page = requests.get('https://github.com/getify/BikechainJS')
soup = BeautifulSoup(page.text, 'html.parser')    

#print(soup)

summary_element = soup.select("div.overall-summary")

#print(summary_element)

commits …

Category: webreader

Read More

Name-Collector

Sat 17 May 2025

title: "Name Collector" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
# Collect and parse first page
page = requests.get('https://www.babble.com/pregnancy/1000-most-popular-boy-names/')
soup = BeautifulSoup(page.text, 'html.parser')    

#print(soup)    

items = soup.select('main.tm-single-content li a')

item_list …

Category: webreader

Read More

Simple-Beautifulsoup

Sat 17 May 2025

title: "Simple BeautifulSoup" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
page = requests.get('https://github.com/getify/BikechainJS')
soup = BeautifulSoup(page.text, 'html.parser')    

print(soup) 
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8"/>
<link href="https://github.githubassets …

Category: webreader

Read More

Simple-Script-Reader

Sat 17 May 2025

title: "Simple Script Reader" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
# Collect and parse first page
page = requests.get('https://www.springfieldspringfield.co.uk/view_episode_scripts.php?tv-show=two-and-a-half-men&episode=s01e01')
soup = BeautifulSoup(page.text, 'html.parser')  
content = soup.select('div.scrolling-script-container')[0 …

Category: webreader

Read More

Template-Copy2

Sat 17 May 2025

title: "Template" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


print('Hello Toronto')
Hello Toronto


Score: 0

Category: webreader

Read More

Text-Decompose

Sat 17 May 2025

title: "Text Decompose" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
soup = BeautifulSoup('<p>This is a slimy text and <i> I am slimer</i></p>')
soup.i.decompose()
print(soup.text)
This is a slimy text and


Score: 0

Category: webreader

Read More

Wired-Reader

Sat 17 May 2025

title: "Wired Reader" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false


import requests
from bs4 import BeautifulSoup
page = requests.get('https://www.wired.com/2013/09/nsa-backdoored-and-stole-keys/')
soup = BeautifulSoup(page.text, 'html.parser')
artist_name_list = soup.find(class_='article-body-component')

print(artist_name_list.text[:100])
It was only a matter …

Category: webreader

Read More
Page 1 of 1