ar
Feedback
PythonHub

PythonHub

الذهاب إلى القناة على Telegram

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

إظهار المزيد
2 532
المشتركون
-324 ساعات
لا توجد بيانات7 أيام
+3230 أيام
أرشيف المشاركات
Pythonicity: Composition vs. Inheritance https://coady.github.io/posts/composition-vs-inheritance.html

PyNest PyNest is a Python framework built on top of FastAPI that follows the modular architecture of NestJS. https://github.com/PythonNest/PyNest

A JIT Compiler for CPython Brandt Bucher discusses the development of a Just-In-Time (JIT) compiler for CPython. The talk delves into the challenges and intricacies of implementing a JIT compiler specifically for CPython, the default Python interpreter. https://www.youtube.com/watch?v=HxSHIpEQRjs

GitHub OAuth in your Python Flask app A step-by-step guide on building Login with Github into your Python apps. https://supabase.com/blog/oauth2-login-python-flask-apps

Proposal for Software Bill-of-Materials for CPython https://sethmlarson.dev/security-developer-in-residence-weekly-report-19

sqlalchemy_data_model_visualizer Automatically turn your SQLalchemy Data Models into a Nice SVG Diagram https://github.com/Dicklesworthstone/sqlalchemy_data_model_visualizer

screenshot-to-code Drop in a screenshot and convert it to clean HTML/Tailwind/JS code. https://github.com/abi/screenshot-to-code

Two kinds of threads pools, and why you need both How big should your thread pool be? It depends on your use case. https://pythonspeed.com/articles/two-thread-pools/

Orca-2-13B Runs Directly on Rust+WASM – No Python/C++ Hassles https://www.secondstate.io/articles/orca-2-13b/

Four Kinds of Optimisation This article discusses four approaches to optimize programs: using a better algorithm, using a better data structure, using a lower-level system, or accepting a less precise solution. https://tratt.net/laurie/blog/2023/four_kinds_of_optimisation.html

stateless Statically typed, purely functional effects for Python. https://github.com/suned/stateless

Data Parallel Extensions for Python https://intelpython.github.io/DPEP/main/

ai-exploits A collection of real world AI/ML exploits for responsibly disclosed vulnerabilities. https://github.com/protectai/ai-exploits

How many Python core devs use typing? https://blog.orsinium.dev/posts/py/core-devs-typing/

How to Create a Subscription SaaS Application with Django and Stripe All the technical details of creating a subscription SaaS business using the Python-based Django web framework and Stripe payment processor. https://www.saaspegasus.com/guides/django-stripe-integrate/

Google-Colab-Selenium The best way to use Selenium in Google Colab Notebooks! https://github.com/jpjacobpadilla/Google-Colab-Selenium

Python Hub Weekly Digest for 2023-11-26 https://pythonhub.dev/digest/2023-11-26/

dpoint Open-source digital stylus using camera tracking and inertial measurements. https://github.com/Jcparkyn/dpoint

The Python Sofware Foundation Receives Wonderfully Welcoming Award from GitHub https://pyfound.blogspot.com/2023/11/psf-wonderfully-welcoming-award-github.html

Let’s create a Python Debugger together Have you ever wondered how debuggers work? What happens when you set a breakpoint and hit it later? Debuggers are tools that we as developers use daily in our work, but few know how they are actually implemented. Here is a 4-part series on writing a Python debugger from scratch. https://mostlynerdless.de/blog/2023/09/20/lets-create-a-python-debugger-together-part-1/