PDF Merge Website (Python)

PDF Merge site up and running

Merging multiple PDFs seems to be a common request, and most people don't want to spend a small fortune on a tool to do the merging. I first looked at this problem with an early Python project (https://geektechstuff.com/2018/02/17/python-3-merge-multiple-pdfs-into-one-pdf/) and later improved on that project by adding a simple GUI (https://geektechstuff.com/2018/07/04/pdf-merge-with-gui-v2-python/). Now I have gone a … Continue reading PDF Merge Website (Python)

Password Check (Python)

Python Password Check

After discovering this week that someone had created a password checker I decided I would give the same idea a shot. For this project I am using information from the National Cyber Security Centre (NCSC) here in the UK. To read up on the information I recommend: https://www.ncsc.gov.uk/news/most-hacked-passwords-revealed-as-uk-cyber-survey-exposes-gaps-in-online-security https://www.ncsc.gov.uk/blog-post/passwords-passwords-everywhere https://www.ncsc.gov.uk/collection/passwords https://www.ncsc.gov.uk/collection/passwords/updating-your-approach ---- # geektechstuff # … Continue reading Password Check (Python)

Web Scraping: More Selenium & Ways To Interact With Websites (Python)

wordpress_logon function

Yesterday I introduced Selenium to my web scraping fun, see here: https://geektechstuff.com/2019/05/07/web-scraping-introducing-selenium-python/ if you missed it. Today I am going to use Selenium to interact with a website by: Opening a webpage Logging in Retrieving information from the page As much as I've enjoyed using Wikipedia in my previous examples (and if you too are … Continue reading Web Scraping: More Selenium & Ways To Interact With Websites (Python)