User Controls
October is Domestic Violence Awareness Month
-
2024-10-16 at 9:28 PM UTCHow that make you feel?
"It's mother beating good." -LSD, 2014 -
2024-10-16 at 9:56 PM UTCBradley_b, would you beat your Mom up if she took your last latte out of the fridge, drank it, and then you rudely discovered it wasn't there anymore?
-
2024-10-16 at 11:11 PM UTCcall me a non coder you son of a bitch
import re
from bs4 import BeautifulSoup
import requests
url = "https://en.wikisource.org/wiki/Author:Barack_Obama/Presidential_Proclamations"
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
proclamations = soup.find_all('td')
unique_proclamations = set()
# Regular expression pattern to remove years
pattern = re.compile(r',\s*\d{4}')
for item in proclamations:
proclamation_text = item.get_text().strip()
# Remove the year (e.g., ", 2013") before storing the proclamation
proclamation_text_without_year = pattern.sub('', proclamation_text)
unique_proclamations.add(proclamation_text_without_year)
# enhancement for proclamations containing the word 'month'
awareness_months = {item for item in unique_proclamations if 'month' in item.lower()}
for month in awareness_months:
print(month) -
2024-10-16 at 11:20 PM UTC
-
2024-10-16 at 11:21 PM UTC
Originally posted by the man who put it in my hood call me a non coder you son of a bitch
import re
from bs4 import BeautifulSoup
import requests
url = "https://en.wikisource.org/wiki/Author:Barack_Obama/Presidential_Proclamations"
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
proclamations = soup.find_all('td')
unique_proclamations = set()
# Regular expression pattern to remove years
pattern = re.compile(r',\s*\d{4}')
for item in proclamations:
proclamation_text = item.get_text().strip()
# Remove the year (e.g., ", 2013") before storing the proclamation
proclamation_text_without_year = pattern.sub('', proclamation_text)
unique_proclamations.add(proclamation_text_without_year)
# enhancement for proclamations containing the word 'month'
awareness_months = {item for item in unique_proclamations if 'month' in item.lower()}
for month in awareness_months:
print(month)
that's gay and retarded -
2024-10-16 at 11:30 PM UTC
Originally posted by the man who put it in my hood call me a non coder you son of a bitch
import re
from bs4 import BeautifulSoup
import requests
url = "https://en.wikisource.org/wiki/Author:Barack_Obama/Presidential_Proclamations"
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
proclamations = soup.find_all('td')
unique_proclamations = set()
# Regular expression pattern to remove years
pattern = re.compile(r',\s*\d{4}')
for item in proclamations:
proclamation_text = item.get_text().strip()
# Remove the year (e.g., ", 2013") before storing the proclamation
proclamation_text_without_year = pattern.sub('', proclamation_text)
unique_proclamations.add(proclamation_text_without_year)
# enhancement for proclamations containing the word 'month'
awareness_months = {item for item in unique_proclamations if 'month' in item.lower()}
for month in awareness_months:
print(month)
I'm convinced! -
2024-10-16 at 11:36 PM UTCBeautiful Soup
-
2024-10-17 at 4:31 AM UTC