Functional SQL in Pure Python

I've published a framework for doing SQL-like programming in Pure Python -- no database required.

Here: https://github.com/slott56/functional-SQL. See the functional-SQL documentation.

This allows us to transform SQL:

SELECT n.name, v.c2
FROM names_table n, values_table v
WHERE n.code = v.c1

To pure Python:

Select(name …
more ...



Generators as Stacks of Operations

See https://towardsdatascience.com/building-generator-pipelines-in-python-8931535792ff

I'm delighted by this article.

I was shown only the first, horrible, example. I think the idea was to push back on the idea of complex generators. I fumed.

Then I read the entire article.

Now I'm fuming at someone who posted the first example …

more ...


A Python Roadmap

An interesting tweet. The roadmap has three sections. I'm not sure this is actually complete, or even grouped correctly. It is a very good list of topics.

https://twitter.com/prasoonpratham/status/1408435475426254849?s=11

"Here's a complete roadmap of topics to master Python."

The thread, however, seems no longer …

more ...



Plannng a Linked-in Learning Course (and using the := walrus operator)

I've recorded two courses for LinkedIn Learning https://www.linkedin.com/learning/me

Let me emphasize that their production values take a lot of work. While I think I'm a pretty good live presenter, a few days in the recording booth with a producer, reveals all my weaknesses. so. um …

more ...

HumbleBundle -- Functional Python Programming -- Through July 1

See this https://www.humblebundle.com

This is amazing to me.

Humble Bundle sells games, ebooks, software, and other digital content. Our mission is to support charity while providing awesome content to customers at great prices. We launched in 2010 with a single two-week Humble Indie Bundle, but we have …
more ...