Cruising through complex data
This post is a showcase of data wrangling techniques in Python, using glom.
https://sedimental.org/cruising_through_data.html
This post is a showcase of data wrangling techniques in Python, using glom.
https://sedimental.org/cruising_through_data.html
sedimental.org
Cruising through complex data — Sedimental
Accretionary thoughts by Mahmoud Hashemi
College Algebra – Full Course with Python Code
Learn college Algebra from an experienced university mathematics professor. You will also learn how to implement all the Algebra concepts using the Python programming language.
https://www.youtube.com/watch?v=i7vOAcUo5iA
Learn college Algebra from an experienced university mathematics professor. You will also learn how to implement all the Algebra concepts using the Python programming language.
https://www.youtube.com/watch?v=i7vOAcUo5iA
YouTube
College Algebra – Full Course with Python Code
Learn college Algebra from an experienced university mathematics professor. You will also learn how to implement all the Algebra concepts using the Python programming language.
💻 Syllabus & Code: https://github.com/edatfreecodecamp/python-math/blob/main/Algebra…
💻 Syllabus & Code: https://github.com/edatfreecodecamp/python-math/blob/main/Algebra…
Breaking the Snake: How Python went from 2 to 3
https://www.deusinmachina.net/p/breaking-the-snake-how-python-went
https://www.deusinmachina.net/p/breaking-the-snake-how-python-went
Deus In Machina
Breaking the Snake: How Python went from 2 to 3
The pain
Migrating from Flask to FastAPI, Part 1
A first part of the 3 parts series that covers preparing the ground for the actual migration.
https://engineering.forethought.ai/blog/2022/12/01/migrating-from-flask-to-fastapi-part-1/
A first part of the 3 parts series that covers preparing the ground for the actual migration.
https://engineering.forethought.ai/blog/2022/12/01/migrating-from-flask-to-fastapi-part-1/
engineering.forethought.ai
Migrating from Flask to FastAPI, Part 1 - Forethought AI Engineering
Welcome to the Forethought AI engineering team's blog! We are a group of software engineers, data scientists, and machine learning experts who are committed to building innovative solutions to improve the efficiency and effectiveness of customer service teams.
Testing a Python project using the WASI build of CPython with pytest
https://snarky.ca/testing-a-project-using-the-wasi-build-of-cpython-with-pytest/
https://snarky.ca/testing-a-project-using-the-wasi-build-of-cpython-with-pytest/
Tall, Snarky Canadian
Testing a Python project using the WASI build of CPython with pytest
As part of bringing Python to the browser via vscode.dev, I looked into what it looks like today (January 2023) to test a Python project that uses pytest with a WASI build of CPython (see my post on WebAssembly and its various platforms if you don't know…
Python Bindings for Performance Optimization: A Zero to One Guide
This article describes techniques to accelerate a Python codebase by exposing parallelized C++ functions using PyBind. It then analyzes the results of the optimization in which parallelizing one 40-line function in a 700-line program yielded up to a 3X end-to-end speedup.
https://alexhagiopol.github.io/posts/2023/01/python-bindings/
This article describes techniques to accelerate a Python codebase by exposing parallelized C++ functions using PyBind. It then analyzes the results of the optimization in which parallelizing one 40-line function in a 700-line program yielded up to a 3X end-to-end speedup.
https://alexhagiopol.github.io/posts/2023/01/python-bindings/
Alex Hagiopol
Python Bindings for Performance Optimization: A Zero to One Guide
This article describes techniques to accelerate a Python codebase by exposing parallelized C++ functions using PyBind. It then analyzes the results of the optimization in which parallelizing one 40-line function in a 700-line program yielded up to a 3X end…
Neural Networks: Zero to Hero
A course by Andrej Karpathy on building neural networks, from scratch, in code.
https://karpathy.ai/zero-to-hero.html
A course by Andrej Karpathy on building neural networks, from scratch, in code.
https://karpathy.ai/zero-to-hero.html
5 Common Asyncio Errors in Python (and how to avoid them)
Asyncio provides asynchronous programming in Python with coroutines. It is exciting, new, and can be deeply frustrating to beginners. The reason is because of a series of common errors made when getting started with coroutines and the asyncio API. In this tutorial, you will discover the most common errors encountered by beginners in asyncio in Python.
https://superfastpython.com/asyncio-common-errors/
Asyncio provides asynchronous programming in Python with coroutines. It is exciting, new, and can be deeply frustrating to beginners. The reason is because of a series of common errors made when getting started with coroutines and the asyncio API. In this tutorial, you will discover the most common errors encountered by beginners in asyncio in Python.
https://superfastpython.com/asyncio-common-errors/
Super Fast Python
5 Common Asyncio Errors in Python (and how to avoid them) - Super Fast Python
Asyncio provides asynchronous programming in Python with coroutines. It is exciting, new, and can be deeply frustrating to beginners. The reason is because of a series of common errors made when getting started with coroutines and the asyncio API. In this…
IPyflow
Next-generation IPython kernel with reactivity, execution suggestions, syntax extensions, and more.
https://github.com/ipyflow/ipyflow
Next-generation IPython kernel with reactivity, execution suggestions, syntax extensions, and more.
https://github.com/ipyflow/ipyflow
GitHub
GitHub - ipyflow/ipyflow: A reactive Python kernel for Jupyter notebooks.
A reactive Python kernel for Jupyter notebooks. Contribute to ipyflow/ipyflow development by creating an account on GitHub.
FlareSolverr / FlareSolverr
Proxy server to bypass Cloudflare protection
https://github.com/FlareSolverr/FlareSolverr
Proxy server to bypass Cloudflare protection
https://github.com/FlareSolverr/FlareSolverr
GitHub
GitHub - FlareSolverr/FlareSolverr: Proxy server to bypass Cloudflare protection
Proxy server to bypass Cloudflare protection. Contribute to FlareSolverr/FlareSolverr development by creating an account on GitHub.
LAION-AI / Open-Assistant
OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems, and retrieve information dynamically to do so.
https://github.com/LAION-AI/Open-Assistant
OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems, and retrieve information dynamically to do so.
https://github.com/LAION-AI/Open-Assistant
GitHub
GitHub - LAION-AI/Open-Assistant: OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party…
OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems, and retrieve information dynamically to do so. - LAION-AI/Open-Assistant
Reinforcement Learning for Beginners: Coding a Maze-solving Agent from Scratch
https://www.reddit.com/r/Python/comments/10o3k0b/reinforcement_learning_for_beginners_coding_a/
https://www.reddit.com/r/Python/comments/10o3k0b/reinforcement_learning_for_beginners_coding_a/
Reddit
From the Python community on Reddit: Reinforcement Learning for Beginners: Coding a Maze-solving Agent from Scratch
Explore this post and more from the Python community