Slow Python Script and Using Pipenv with AWS Lambda
I’m working on improving a python script I wrote to get a list of old posts from a wordpress website. Basically I want to be able to see what post I wrote X years ago on this day for any wordpress site.
This script uses the wonderful requests library and the very powerful public Wordpress API.
I am also using pipenv for the first time and its wonderful. I wish I started using this tool years ago.
What it Does Right Now
- Takes a dictionary of sites and iterates over each one
- Prints out to the console
print("1 year ago I wrote about {0} {1}".format(p['title']['rendered'], p['link']))
if years_ago > 1:
print("{0} years ago I wrote about {1} {2}".format(years_ago, p['title']['rendered'], p['link']))
The Script is Super Slow
You can time how long a script takes on OS X using thetime
command.
Levs-iMac:OldPosts levlaz$ time python old_posts.py
1 year ago I wrote about Thoughts on “Sacramento Renaissance” https://tralev.net/thoughts-on-sacramento-renaissance/
real 0m11.192s
user 0m0.589s
sys 0m0.060s
Plans for Optimization
- Use Redis (or something) to cache the results.
- Get rid of some of the for loops if we can.
Plans for Usage
- Deploy to AWS (Labmda?)
- Have this run on a Cron Job every day (using CloudWatch)
Plans for Additional Features
I want to share all of the posts from that day on social media. Instead of plugging in all of the various accounts that I need I am planning on using the Buffer API to post everywhere at once and queue up posts so that it does not fire off a bunch of stuff at the same time in the event that there are many posts for that day.This will involve doing some sort of Outh dance because I don’t think that Buffer offers using personal access tokens.
I'll Just Use Lambda
Famous last words.It’s not the worst thing in the world, but when you are using the amazing pipenv tool you have to go track down where the site-packages are located and zip them up in order to ship your code to AWS Lambda.
Unsurprisingly someone opened a feature request for this, but the solution in the comments works just fine.
I wrote a little bash script that is being called through a Makefile to zip up the site-packages along with the core python code in preparation to ship it off to AWS Lambda.
Bash Script to Zip Up Site-Packages
Makefile
.PHONY: package
package:
sh package.sh
Thank you for reading! Share your thoughts with me on bluesky, mastodon, or via email.
Check out some more stuff to read down below.
Most popular posts this month
- Now What?
- Setting up ANTLR4 on Windows
- SQLite DB Migrations with PRAGMA user_version
- Meritocracy?
- Possible Plagiarism Made me Cringe
Recent Favorite Blog Posts
This is a collection of the last 8 posts that I bookmarked.
- The Rise of Bluesky from Communications of the ACM
- Podcaster, DJ, and writer DJ Louie XIV on going for it (even if you’re terrified) from The Creative Independent
- Useful Bluesky Tools from Robb Knight • Posts • Atom Feed
- Re: Bluesky from Colin Devroe
- From the Red Hell to the Sky of Blue from Straphanger
- We don’t need to use what we make from Derek Sivers blog
- Ubuntu Summit 2024: A joyful experience filled with sorrow from Planet KDE | English
- Sabotage from jwz
Articles from blogs I follow around the net
Pluralistic: Battery rationality (06 Dec 2024)
Today's links Battery rationality: Ringing down the curtain on 9/11's security theater. Hey look at this: Delights to delectate. This day in history: 2009, 2014, 2019, 2023 Upcoming appearances: Where to find me. Recent appearances: Where I've…
via Pluralistic: Daily links from Cory Doctorow December 6, 2024P&B: Erica Fustero
This is the 67th edition of People and Blogs, the series where I ask interesting people to talk about themselves and their blogs. Today we have Erica Fustero and her blog, ericafustero.com To follow this series subscribe to the newsletter. …
via All the interviews for the People and Blogs series. December 6, 2024P&B: Erica Fustero
This is the 67th edition of People and Blogs, the series where I ask interesting people to talk about themselves and their blogs. Today we have Erica Fustero and her blog, ericafustero.com To follow this series subscribe to the newsletter. …
via Manuel Moreale RSS Feed December 6, 2024Generated by openring