Tag Archives: tutorial

Quick Tutorial: PyQt 5 Browser

Dear Future Googler, If you are reading this you’re probably trying to find out how to display webpages in PyQt5. I bet you’ve been finding a bunch of tutorials written for QtWebKit but can’t get them to work, right? Don’t … Continue reading

Posted in Python, tutorial | Tagged , | 4 Comments

Quick Tutorial: Python Multiprocessing

I’m going to take a break from webhooks and project updates to give a quick tutorial about multiprocessing. Multiprocessing is very useful when it comes to any sort of networking focused code and most tutorials I found dealt with just … Continue reading

Posted in Python, tutorial | Tagged , | Leave a comment

Using Webhooks with Python: Part 2

In this post I’m going to go over the send message to Discord webhook function from last time and add in some error handling for when we hit a rate limit. Continue reading

Posted in Python, tutorial | Tagged , , , | Leave a comment

Using Webhooks with Python: Part 1

In this post I’m going to share a tutorial about how to use Discord webhooks in python. While the specific example is Discord, the tutorial will show how we can use docs and software like postman to figure out how to use webhooks in general. Continue reading

Posted in Python, tutorial | Tagged , , , | 2 Comments