From b4504573591da6d9ef6c9e2e8efefdffdbff1eb9 Mon Sep 17 00:00:00 2001 From: njg7194 Date: Sun, 1 Feb 2026 13:24:14 +0900 Subject: [PATCH 1/6] Add vllm to Deep Learning section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dd473c2b7..aa8685fb5 100644 --- a/README.md +++ b/README.md @@ -435,6 +435,7 @@ _Frameworks for Neural Networks and Deep Learning. Also see [awesome-deep-learni - [pytorch](https://github.com/pytorch/pytorch) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. - [stable-baselines3](https://github.com/DLR-RM/stable-baselines3) - PyTorch implementations of Stable Baselines (deep) reinforcement learning algorithms. - [tensorflow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. +- [vllm](https://github.com/vllm-project/vllm) - A high-throughput and memory-efficient inference and serving engine for LLMs. ## DevOps Tools From 712bc9b8c55c7279489bc43aa9456c996502cdd2 Mon Sep 17 00:00:00 2001 From: njg7194 Date: Sun, 1 Feb 2026 13:24:48 +0900 Subject: [PATCH 2/6] Add markitdown to File Manipulation section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dd473c2b7..b467fb9e3 100644 --- a/README.md +++ b/README.md @@ -546,6 +546,7 @@ _Libraries for Python version and virtual environment management._ _Libraries for file manipulation._ +- [markitdown](https://github.com/microsoft/markitdown) - Python tool for converting files and office documents to Markdown. - [mimetypes](https://docs.python.org/3/library/mimetypes.html) - (Python standard library) Map filenames to MIME types. - [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/3/library/os.path.html). - [pathlib](https://docs.python.org/3/library/pathlib.html) - (Python standard library) An cross-platform, object-oriented path library. From 087349932302fad4457dab29a7a396172fb5c014 Mon Sep 17 00:00:00 2001 From: njg7194 Date: Sun, 1 Feb 2026 13:25:21 +0900 Subject: [PATCH 3/6] Add browser-use to Web Crawling section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dd473c2b7..ab3e878f9 100644 --- a/README.md +++ b/README.md @@ -1132,6 +1132,7 @@ _Libraries for extracting web contents._ _Libraries to automate web scraping._ +- [browser-use](https://github.com/browser-use/browser-use) - Make websites accessible for AI agents with easy browser automation. - [feedparser](https://github.com/kurtmckee/feedparser) - Universal feed parser. - [grab](https://github.com/lorien/grab) - Site scraping framework. - [mechanicalsoup](https://github.com/MechanicalSoup/MechanicalSoup) - A Python library for automating interaction with websites. From df021e87d5667265ae79591dd3b81974953cb930 Mon Sep 17 00:00:00 2001 From: NinjaOfNeurons Date: Sat, 31 Jan 2026 23:42:21 -0500 Subject: [PATCH 4/6] Add functools to Functional Programming section --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dd473c2b7..75b87d51f 100644 --- a/README.md +++ b/README.md @@ -563,6 +563,8 @@ _Functional Programming with Python._ - [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. - [returns](https://github.com/dry-python/returns) - A set of type-safe monads, transformers, and composition utilities. - [toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. +- [functools](https://docs.python.org/3/library/functools.html) - (Python standard library) Higher-order functions and operations on callable objects. + ## GUI Development From 5f2655e5172da3eef88dbcce7d21d187b09c20a5 Mon Sep 17 00:00:00 2001 From: NinjaOfNeurons Date: Sat, 31 Jan 2026 23:44:52 -0500 Subject: [PATCH 5/6] removing extra space --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 75b87d51f..a5a63a5ce 100644 --- a/README.md +++ b/README.md @@ -565,7 +565,6 @@ _Functional Programming with Python._ - [toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. - [functools](https://docs.python.org/3/library/functools.html) - (Python standard library) Higher-order functions and operations on callable objects. - ## GUI Development _Libraries for working with graphical user interface applications._ From 82455f3d1b4d5b2653a354b596b451213f03d386 Mon Sep 17 00:00:00 2001 From: NinjaOfNeurons Date: Sun, 1 Feb 2026 04:52:05 -0500 Subject: [PATCH 6/6] Fix alphabetical order in Computer Vision section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5a63a5ce..3027bede3 100644 --- a/README.md +++ b/README.md @@ -559,11 +559,11 @@ _Functional Programming with Python._ - [coconut](https://github.com/evhub/coconut) - A variant of Python built for simple, elegant, Pythonic functional programming. - [cytoolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. +- [functools](https://docs.python.org/3/library/functools.html) - (Python standard library) Higher-order functions and operations on callable objects. - [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. - [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. - [returns](https://github.com/dry-python/returns) - A set of type-safe monads, transformers, and composition utilities. - [toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. -- [functools](https://docs.python.org/3/library/functools.html) - (Python standard library) Higher-order functions and operations on callable objects. ## GUI Development