Skip to content

Instantly share code, notes, and snippets.

View newpoow's full-sized avatar

Ney Pinheiro newpoow

  • Brazil
View GitHub Profile
@newpoow
newpoow / get-posts-from-wordpress.py
Created March 14, 2021 15:27
Simple script for get post from wordpress blogs
from bs4 import BeautifulSoup
import http.client
import re
import io
import getopt
import sys
posts = []