en
Feedback
PythonHub

PythonHub

Open in Telegram

News & links about Python programming. https://pythonhub.dev/

Show more
2 532
Subscribers
+224 hours
+37 days
+530 days
Posts Archive
Game Boy Emulator: Writing the Z80 Disassembler Let’s continue where we left off in the introduction to Game Boy Emulation with a deep dive into the Game Boy’s opcodes and operands – the language of the Z80 CPU – and how to make sense of it all. https://www.inspiredpython.com/course/game-boy-emulator/game-boy-emulator-writing-the-z80-disassembler

Extracting information from Python source code What library symbols does a Python source code file use? And what symbols does it provide to its users? A simple tool called invectio can provide this information based on static source code analysis. This small tool can extract information about imports as well as information about what users can import from Python modules. https://developers.redhat.com/articles/2022/01/05/extracting-information-python-source-code

Analyzing Seated's restaurants by reversing their API Seated is an app that offers a certain (sizable) percentage off your bill for certain restaurants in your area. This post shows you how to grab all their restaurants and visualize the stats on them. https://blog.jonlu.ca/posts/seated

It's time to stop using Python 3.6 Upgrading to new software versions is work, and work that doesn’t benefit your software’s ... https://pythonspeed.com/articles/stop-using-python-3.6/

Django Developers Survey 2021 Results We are excited to share the results of the annual Django Developers Survey which was conducted this ... https://www.djangoproject.com/weblog/2022/jan/03/django-developers-survey-2021-results/

How to make word vectors from scratch Word vectors are representations of words into numbers. Once words are in this form, it becomes ... https://ljvmiranda921.github.io/notebook/2021/12/11/word-vectors/

Gem: exploding string alternatives Here’s a Python gem: a small bit of Python that uses the power of the language and standard ... https://nedbatchelder.com/blog/202112/gem_exploding_string_alternatives.html

10 Of My Favorite Python Decorators An overview of even more of the best decorators in the Python programming language.Contin
10 Of My Favorite Python Decorators An overview of even more of the best decorators in the Python programming language.Continue reading ... https://towardsdatascience.com/10-of-my-favorite-python-decorators-9f05c72d9e33

5 Advanced Tips on Python Functions Notes from Fluent Python by Luciano Ramalho (Chapter 5–6)Did you learn to code in Java, then moved ... https://towardsdatascience.com/5-advanced-tips-on-python-functions-1a0918017965

Function Pointer Cast Handling in Pyodide Why previous versions of Pyodide had a low recursion limit and how the upcoming version 0.19 supports a much higher one. https://blog.pyodide.org/posts/function-pointer-cast-handling/

How To Easily Do Asynchronous Programming With Asyncio In Python Learn about asynchronous programming in this tutorial where I explain the basics of async and await in Python and show you how you can run programs in parallel. https://www.youtube.com/watch?v=2IW-ZEui4h4

Ask HN: Good Python projects to read for modern Python? https://news.ycombinator.com/item?id=29698198

Overpass A self-hosted streaming platform with Discord authentication, auto-recording and more! https://github.com/GOATS2K/overpass

dataklasses Dataklasses is a library that allows you to quickly define data classes using Python type hints. https://github.com/dabeaz/dataklasses

Python Virtual Environments tutorial using Virtualenv and Poetry A mini-guided tutorial showing how to use virtual environment and why it's matters on virtualenv and poetry illustrated examples. https://serpapi.com/blog/python-virtual-environments-using-virtualenv-and-poetry/

Mining Financial Stock News Using SpaCy Matcher By the end of this article, you will be able to write an information extraction NLP pipeline using spaCy’s Matcher. It will extract dividend information from news headlines and articles. https://newscatcherapi.com/blog/spacy-matcher-mining-financial-stock-news

Unravelling `elif`/`else` from `if` statements https://snarky.ca/unravelling-elif-else-from-if-statements/