27 May Python How I Fix the SSL Error in My First Wikipedia Crawler Using Python May 27, 2025 By Daniyal Ahmed 0 comments I built my first Wikipedia crawler in Web Scraping with Python, and it crashed with an SSL: CERTIFICATE_VERIFY_FAILED as soon as urlope... Continue reading
24 May Python How to Make an RLC Circuit in Python May 24, 2025 By Daniyal Ahmed 0 comments I’m the kind of developer who learns best when I see something appear on-screen. So when I found out that Schemdraw can turn a few line... Continue reading
24 May Python How to Create a Spiral Art with Python May 24, 2025 By Daniyal Ahmed 0 comments I like small projects that give an instant payoff. A spiral is perfect for that: a handful of lines, a press of Run in python, and you ... Continue reading
20 May Python How to Fix HTTPSConnectionPool SSL Errors When Using Python Request May 20, 2025 By Daniyal Ahmed 0 comments Today, I want to share an experience I had recently while working on a Python project that uses IBM Watson’s Tone Analyzer API to analy... Continue reading
20 May Python How to Fix The Leap Motion Error Device in Python May 20, 2025 By Daniyal Ahmed 0 comments When I first started working with Leap Motion using Python, I was really excited to build a simple application that could detect hand g... Continue reading
17 May Python How to Solve BeautifulSoup HTMLParser Fail May 17, 2025 By Daniyal Ahmed 0 comments When working with HTML data, one common task is parsing and removing HTML tags to extract the plain text. If you've ever tried to do th... Continue reading
12 May Python How to Fix the u2013 Unicode Error in Openpyxl on Python 2.7 May 12, 2025 By Daniyal Ahmed 0 comments I hit this snag while cleaning up an old Python 2.7 box that still churns out reports. One Excel file refused to convert because of a s... Continue reading
12 May Python Fix WinError 5 Pip Permission Errors on Windows 8.1 with Python May 12, 2025 By Daniyal Ahmed 0 comments I hit this wall on a Windows-8.1 laptop running Python 3.4: every time I tried to upgrade pip (or install anything) the installer froze... Continue reading
10 May Python How Do I Fix the Text/Byte Split Issue in Python 3’s XML Generation? May 10, 2025 By Daniyal Ahmed 0 comments The script builds a tiny XML file with lxml: it creates a <results> root, adds two nodes for “Country” and “City,” then tries to ... Continue reading
10 May Python How to Run a Execute cURL Commands in Python May 10, 2025 By Daniyal Ahmed 0 comments I love quick wins in the terminal. Type a single line, hit Enter, and data flows back. But sooner or later I need that same call inside... Continue reading