mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-13 11:16:10 -05:00
Deploy vinta/awesome-python to github.com/vinta/awesome-python.git:gh-pages
This commit is contained in:
parent
6d4482676f
commit
d5074d3b94
3 changed files with 8 additions and 7 deletions
13
index.html
13
index.html
|
@ -1713,11 +1713,11 @@
|
||||||
<p><em>Python implementation of algorithms and design patterns.</em></p>
|
<p><em>Python implementation of algorithms and design patterns.</em></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://github.com/keon/algorithms">algorithms</a> - Minimal examples of data structures and algorithms in Python.</li>
|
<li><a href="https://github.com/keon/algorithms">algorithms</a> - Minimal examples of data structures and algorithms in Python.</li>
|
||||||
<li><a href="https://github.com/erikrose/more-itertools">more-itertools</a> - More routines for operating on iterables, beyond <code>itertools</code>.</li>
|
|
||||||
<li><a href="https://github.com/tylerlaberge/PyPattyrn">PyPattyrn</a> - A simple yet effective library for implementing common design patterns.</li>
|
<li><a href="https://github.com/tylerlaberge/PyPattyrn">PyPattyrn</a> - A simple yet effective library for implementing common design patterns.</li>
|
||||||
|
<li><a href="https://github.com/prabhupant/python-ds">python-ds</a> - Clean and simple collection of data structure and algorithms in Python for coding interviews.</li>
|
||||||
<li><a href="https://github.com/faif/python-patterns">python-patterns</a> - A collection of design patterns in Python.</li>
|
<li><a href="https://github.com/faif/python-patterns">python-patterns</a> - A collection of design patterns in Python.</li>
|
||||||
<li><a href="https://github.com/grantjenks/python-sortedcontainers">sortedcontainers</a> - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types.</li>
|
<li><a href="https://github.com/grantjenks/python-sortedcontainers">sortedcontainers</a> - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types.</li>
|
||||||
<li><a href="https://github.com/prabhupant/python-ds">python-ds</a> - Clean and simple collection of data structure and algorithms in Python for coding interviews.</li>
|
<li><a href="https://github.com/pytransitions/transitions">transitions</a> - A lightweight, object-oriented finite state machine implementation in Python.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="asgi-servers">ASGI Servers</h2>
|
<h2 id="asgi-servers">ASGI Servers</h2>
|
||||||
<p><em>ASGI-compatible web servers.</em></p>
|
<p><em>ASGI-compatible web servers.</em></p>
|
||||||
|
@ -2247,12 +2247,13 @@
|
||||||
<h2 id="functional-programming">Functional Programming</h2>
|
<h2 id="functional-programming">Functional Programming</h2>
|
||||||
<p><em>Functional Programming with Python.</em></p>
|
<p><em>Functional Programming with Python.</em></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://coconut-lang.org/">Coconut</a> - Coconut is a variant of Python built for simple, elegant, Pythonic functional programming.</li>
|
<li><a href="https://github.com/evhub/coconut">Coconut</a> - A variant of Python built for simple, elegant, Pythonic functional programming.</li>
|
||||||
<li><a href="https://github.com/pytoolz/cytoolz/">CyToolz</a> - Cython implementation of Toolz: High performance functional utilities.</li>
|
|
||||||
<li><a href="https://github.com/kachayev/fn.py">fn.py</a> - Functional programming in Python: implementation of missing features to enjoy FP.</li>
|
<li><a href="https://github.com/kachayev/fn.py">fn.py</a> - Functional programming in Python: implementation of missing features to enjoy FP.</li>
|
||||||
<li><a href="https://github.com/Suor/funcy">funcy</a> - A fancy and practical functional tools.</li>
|
<li><a href="https://github.com/Suor/funcy">funcy</a> - A fancy and practical functional tools.</li>
|
||||||
<li><a href="https://github.com/pytoolz/toolz">Toolz</a> - A collection of functional utilities for iterators, functions, and dictionaries.</li>
|
<li><a href="https://github.com/erikrose/more-itertools">more-itertools</a> - More routines for operating on iterables, beyond <code>itertools</code>.</li>
|
||||||
<li><a href="https://github.com/dry-python/returns">returns</a> - A set of type-safe monads, tranformers, and composition utilities.</li>
|
<li><a href="https://github.com/dry-python/returns">returns</a> - A set of type-safe monads, tranformers, and composition utilities.</li>
|
||||||
|
<li><a href="https://github.com/pytoolz/toolz">Toolz</a> - A collection of functional utilities for iterators, functions, and dictionaries.</li>
|
||||||
|
<li><a href="https://github.com/pytoolz/cytoolz/">CyToolz</a> - Cython implementation of <code>Toolz</code>: High performance functional utilities.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="gui-development">GUI Development</h2>
|
<h2 id="gui-development">GUI Development</h2>
|
||||||
<p><em>Libraries for working with graphical user interface applications.</em></p>
|
<p><em>Libraries for working with graphical user interface applications.</em></p>
|
||||||
|
@ -2589,7 +2590,7 @@
|
||||||
<p><em>RPC-compatible servers.</em></p>
|
<p><em>RPC-compatible servers.</em></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://github.com/0rpc/zerorpc-python">zeroRPC</a> - zerorpc is a flexible RPC implementation based on <a href="http://zeromq.org/">ZeroMQ</a> and <a href="http://msgpack.org/">MessagePack</a>.</li>
|
<li><a href="https://github.com/0rpc/zerorpc-python">zeroRPC</a> - zerorpc is a flexible RPC implementation based on <a href="http://zeromq.org/">ZeroMQ</a> and <a href="http://msgpack.org/">MessagePack</a>.</li>
|
||||||
<li><a href="https://github.com/tomerfiliba/rpyc">RPyC</a> (Remote Python Call) - A transparent and symmetric RPC library for Python </li>
|
<li><a href="https://github.com/tomerfiliba/rpyc">RPyC</a> (Remote Python Call) - A transparent and symmetric RPC library for Python</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="science">Science</h2>
|
<h2 id="science">Science</h2>
|
||||||
<p><em>Libraries for scientific computing. Also see <a href="https://github.com/TomNicholas/Python-for-Scientists">Python-for-Scientists</a></em></p>
|
<p><em>Libraries for scientific computing. Also see <a href="https://github.com/TomNicholas/Python-for-Scientists">Python-for-Scientists</a></em></p>
|
||||||
|
|
File diff suppressed because one or more lines are too long
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binary file not shown.
Loading…
Reference in a new issue