Tag: asynchronous programming

  • AsyncIO Task Management: A Hands-On Scheduler Project

    by

    in
    • Originally published at KitfuCoda.Medium.

    We discussed Awaitables last week. The article covered coroutines, tasks and futures as well as a quick introduction to the event loop. Let’s build an example task management project to continue our journey on learning asynchronous programming with AsyncIO. Here’s a recap of relevant articles on AsyncIO so far: How to write an AsyncIO Telegram…

  • Understanding Awaitables: Coroutines, Tasks, and Futures in Python

    by

    in
    • Originally published at KitfuCoda.Medium.

    Previously, we explored chatbot building with AsyncIO. As I am committing to publish one article a week, I am constantly on the lookout for new ideas. Then I figured it may be a good opportunity to delve deeper into asynchronous programming. The writing plan eventually expanded to a series of articles, and we are starting…

  • How to write an AsyncIO Telegram bot in Python

    by

    in
    • Originally published at KitfuCoda.Medium.

    Last week, we discussed a quick weekend project on building a word game. That project was sparked by a conversation suggesting I integrate LLM functionality into my experimental chatbot, BigMeow. Currently, I’m working on another chatbot project, and I’m reusing some code from BigMeow. Back then, I struggled a lot, especially with the lack of…

  • Video data IO through ffmpeg subprocess

    by

    in
    • Originally published at KitfuCoda.Medium.

    As I restarted my job search (yes, I am still #OpenToWork, ping me!), in one of the job applications, I was asked to implement a prototype that processes video data. While working through the project, I unexpectedly got a lot of help from generative AI chatbots due to my relatively inexperience in the area. As…