Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 60c4eb9

Browse files
committed
Deployed 7a70415 with MkDocs version: 0.16.3
1 parent bf05197 commit 60c4eb9

File tree

2 files changed

+60
-54
lines changed

2 files changed

+60
-54
lines changed

index.html

Lines changed: 46 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,13 @@
312312
ChatOps Tools
313313
</a>
314314

315+
</li>
316+
317+
<li class="md-nav__item">
318+
<a href="#cluster-computing" title="Cluster Computing" class="md-nav__link">
319+
Cluster Computing
320+
</a>
321+
315322
</li>
316323

317324
<li class="md-nav__item">
@@ -592,13 +599,6 @@
592599
Machine Learning
593600
</a>
594601

595-
</li>
596-
597-
<li class="md-nav__item">
598-
<a href="#mapreduce" title="MapReduce" class="md-nav__link">
599-
MapReduce
600-
</a>
601-
602602
</li>
603603

604604
<li class="md-nav__item">
@@ -936,6 +936,13 @@
936936
ChatOps Tools
937937
</a>
938938

939+
</li>
940+
941+
<li class="md-nav__item">
942+
<a href="#cluster-computing" title="Cluster Computing" class="md-nav__link">
943+
Cluster Computing
944+
</a>
945+
939946
</li>
940947

941948
<li class="md-nav__item">
@@ -1216,13 +1223,6 @@
12161223
Machine Learning
12171224
</a>
12181225

1219-
</li>
1220-
1221-
<li class="md-nav__item">
1222-
<a href="#mapreduce" title="MapReduce" class="md-nav__link">
1223-
MapReduce
1224-
</a>
1225-
12261226
</li>
12271227

12281228
<li class="md-nav__item">
@@ -1486,6 +1486,7 @@ <h1 id="awesome-python">Awesome Python <a href="https://github.com/sindresorhus/
14861486
<li><a href="#built-in-classes-enhancement">Built-in Classes Enhancement</a></li>
14871487
<li><a href="#caching">Caching</a></li>
14881488
<li><a href="#chatops-tools">ChatOps Tools</a></li>
1489+
<li><a href="#cluster-computing">Cluster Computing</a></li>
14891490
<li><a href="#cms">CMS</a></li>
14901491
<li><a href="#code-analysis">Code Analysis</a></li>
14911492
<li><a href="#command-line-tools">Command-line Tools</a></li>
@@ -1527,7 +1528,6 @@ <h1 id="awesome-python">Awesome Python <a href="https://github.com/sindresorhus/
15271528
<li><a href="#job-scheduler">Job Scheduler</a></li>
15281529
<li><a href="#logging">Logging</a></li>
15291530
<li><a href="#machine-learning">Machine Learning</a></li>
1530-
<li><a href="#mapreduce">MapReduce</a></li>
15311531
<li><a href="#miscellaneous">Miscellaneous</a></li>
15321532
<li><a href="#natural-language-processing">Natural Language Processing</a></li>
15331533
<li><a href="#network-virtualization">Network Virtualization</a></li>
@@ -1596,7 +1596,6 @@ <h2 id="algorithms-and-design-patterns">Algorithms and Design Patterns</h2>
15961596
<li><a href="https://github.com/tylerlaberge/PyPattyrn">PyPattyrn</a> - A simple yet effective library for implementing common design patterns.</li>
15971597
<li><a href="https://github.com/faif/python-patterns">python-patterns</a> - A collection of design patterns in Python.</li>
15981598
<li><a href="http://www.grantjenks.com/docs/sortedcontainers/">sortedcontainers</a> - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types.</li>
1599-
<li><a href="https://github.com/soravux/scoop">SCOOP</a> - Scalable Concurrent Operations in Python.</li>
16001599
</ul>
16011600
<h2 id="anti-spam">Anti-spam</h2>
16021601
<p><em>Libraries for fighting spam.</em></p>
@@ -1708,6 +1707,16 @@ <h2 id="chatops-tools">ChatOps Tools</h2>
17081707
<ul>
17091708
<li><a href="http://errbot.io/en/latest/">Errbot</a> - The easiest and most popular chatbot to implement ChatOps.</li>
17101709
</ul>
1710+
<h2 id="cluster-computing">Cluster Computing</h2>
1711+
<p><em>Frameworks and libraries for Cluster Computing.</em></p>
1712+
<ul>
1713+
<li><a href="https://pypi.python.org/pypi/pyspark/">PySpark</a> - <a href="https://spark.apache.org/">Apache Spark</a> Python API.</li>
1714+
<li><a href="https://dask.pydata.org/en/latest/">dask</a> - A flexible parallel computing library for analytic computing.</li>
1715+
<li><a href="https://github.com/robinhood/faust">faust</a> - A stream processing library, porting the ideas from <a href="https://kafka.apache.org/documentation/streams/">Kafka Streams</a> to Python.</li>
1716+
<li><a href="https://github.com/spotify/luigi">luigi</a> - A module that helps you build complex pipelines of batch jobs.</li>
1717+
<li><a href="https://github.com/Yelp/mrjob">mrjob</a> - Run MapReduce jobs on Hadoop or Amazon Web Services.</li>
1718+
<li><a href="https://github.com/Parsely/streamparse">streamparse</a> - Run Python code against real-time streams of data via <a href="http://storm.apache.org/">Apache Storm</a>.</li>
1719+
</ul>
17111720
<h2 id="code-analysis">Code Analysis</h2>
17121721
<p><em>Tools of static analysis, linters and code quality checkers. See: <a href="https://github.com/mre/awesome-static-analysis">awesome-static-analysis</a>.</em></p>
17131722
<ul>
@@ -1787,10 +1796,11 @@ <h2 id="computer-vision">Computer Vision</h2>
17871796
<h2 id="concurrency-and-parallelism">Concurrency and Parallelism</h2>
17881797
<p><em>Libraries for concurrent and parallel execution.</em></p>
17891798
<ul>
1799+
<li><a href="https://docs.python.org/3/library/multiprocessing.html">concurrent.futures</a> - (Python standard library) Process-based "<a href="https://docs.python.org/3/library/threading.html">threading</a>" interface.</li>
1800+
<li><a href="https://docs.python.org/3/library/multiprocessing.html">multiprocessing</a> - (Python standard library) A high-level interface for asynchronously executing callables.</li>
17901801
<li><a href="http://eventlet.net/">eventlet</a> - Asynchronous framework with WSGI support.</li>
17911802
<li><a href="http://www.gevent.org/">gevent</a> - A coroutine-based Python networking library that uses <a href="https://github.com/python-greenlet/greenlet">greenlet</a>.</li>
1792-
<li><a href="https://docs.python.org/3/library/multiprocessing.html">multiprocessing</a> - (Python standard library) Process-based "threading" interface.</li>
1793-
<li><a href="https://docs.python.org/3/library/threading.html">threading</a> - (Python standard library) Higher-level threading interface.</li>
1803+
<li><a href="https://github.com/soravux/scoop">SCOOP</a> - Scalable Concurrent Operations in Python.</li>
17941804
<li><a href="https://github.com/madisonmay/Tomorrow">Tomorrow</a> - Magic decorator syntax for asynchronous code.</li>
17951805
<li><a href="https://github.com/MagicStack/uvloop">uvloop</a> - Ultra fast implementation of asyncio event loop on top of libuv.</li>
17961806
</ul>
@@ -1808,7 +1818,7 @@ <h2 id="cryptography">Cryptography</h2>
18081818
<li><a href="https://cryptography.io/en/latest/">cryptography</a> - A package designed to expose cryptographic primitives and recipes to Python developers.</li>
18091819
<li><a href="https://github.com/davidaurelio/hashids-python">hashids</a> - Implementation of <a href="http://hashids.org">hashids</a> in Python.</li>
18101820
<li><a href="http://www.paramiko.org/">Paramiko</a> - A Python (2.6+, 3.3+) implementation of the SSHv2 protocol, providing both client and server functionality.</li>
1811-
<li><a href="https://pythonhosted.org/passlib/">Passlib</a> - Secure password storage/hashing library, very high level.</li>
1821+
<li><a href="https://passlib.readthedocs.io/en/stable/">Passlib</a> - Secure password storage/hashing library, very high level.</li>
18121822
<li><a href="https://github.com/pyca/pynacl">PyNacl</a> - Python binding to the Networking and Cryptography (NaCl) library.</li>
18131823
</ul>
18141824
<h2 id="data-analysis">Data Analysis</h2>
@@ -1825,6 +1835,10 @@ <h2 id="data-validation">Data Validation</h2>
18251835
<ul>
18261836
<li><a href="https://github.com/pyeve/cerberus">Cerberus</a> - A lightweight and extensible data validation library.</li>
18271837
<li><a href="https://docs.pylonsproject.org/projects/colander/en/latest/">colander</a> - Validating and deserializing data obtained via XML, JSON, an HTML form post.</li>
1838+
<li><a href="https://plot.ly/products/dash/">Dash</a> - Built on top of Flask, React and Plotly aimed at analytical web applications.<ul>
1839+
<li><a href="https://github.com/Acrotrend/awesome-dash">awesome-dash</a></li>
1840+
</ul>
1841+
</li>
18281842
<li><a href="https://github.com/Julian/jsonschema">jsonschema</a> - An implementation of <a href="http://json-schema.org/">JSON Schema</a> for Python.</li>
18291843
<li><a href="https://github.com/keleshev/schema">schema</a> - A library for validating Python data structures.</li>
18301844
<li><a href="https://github.com/schematics/schematics">Schematics</a> - Data Structure Validation.</li>
@@ -1874,13 +1888,16 @@ <h2 id="database-drivers">Database Drivers</h2>
18741888
</ul>
18751889
</li>
18761890
<li>NoSQL Databases<ul>
1877-
<li><a href="https://github.com/datastax/python-driver">cassandra-python-driver</a> - Python driver for Cassandra.</li>
1891+
<li><a href="https://github.com/datastax/python-driver">cassandra-driver</a> - The Python Driver for Apache Cassandra.</li>
18781892
<li><a href="https://github.com/wbolster/happybase">HappyBase</a> - A developer-friendly library for Apache HBase.</li>
1879-
<li><a href="https://github.com/wbolster/plyvel">Plyvel</a> - A fast and feature-rich Python interface to LevelDB.</li>
1893+
<li><a href="https://github.com/dpkp/kafka-python">kafka-python</a> - The Python client for Apache Kafka.</li>
18801894
<li><a href="http://py2neo.org/2.0/">py2neo</a> - Python wrapper client for Neo4j's restful interface.</li>
1881-
<li><a href="https://github.com/pycassa/pycassa">pycassa</a> - Python Thrift driver for Cassandra.</li>
18821895
<li><a href="https://docs.mongodb.com/ecosystem/drivers/python/">PyMongo</a> - The official Python client for MongoDB.</li>
1883-
<li><a href="https://github.com/andymccurdy/redis-py">redis-py</a> - The Redis Python Client.</li>
1896+
<li><a href="https://github.com/andymccurdy/redis-py">redis-py</a> - The Python client for Redis.</li>
1897+
</ul>
1898+
</li>
1899+
<li>Asynchronous Clients<ul>
1900+
<li><a href="https://github.com/mongodb/motor">Motor</a> - The async Python driver for MongoDB.</li>
18841901
<li><a href="https://github.com/driftx/Telephus">telephus</a> - Twisted based client for Cassandra.</li>
18851902
<li><a href="https://github.com/deldotdr/txRedis">txRedis</a> - Twisted based client for Redis.</li>
18861903
</ul>
@@ -2250,15 +2267,6 @@ <h2 id="machine-learning">Machine Learning</h2>
22502267
<li><a href="https://github.com/josephreisinger/vowpal_porpoise">vowpal_porpoise</a> - A lightweight Python wrapper for <a href="https://github.com/JohnLangford/vowpal_wabbit/">Vowpal Wabbit</a>.</li>
22512268
<li><a href="https://github.com/dmlc/xgboost">xgboost</a> - A scalable, portable, and distributed gradient boosting library.</li>
22522269
</ul>
2253-
<h2 id="mapreduce">MapReduce</h2>
2254-
<p><em>Frameworks and libraries for MapReduce.</em></p>
2255-
<ul>
2256-
<li><a href="https://pypi.python.org/pypi/pyspark/">PySpark</a> - Apache Spark Python API.</li>
2257-
<li><a href="https://github.com/spotify/luigi">luigi</a> - A module that helps you build complex pipelines of batch jobs.</li>
2258-
<li><a href="https://github.com/Yelp/mrjob">mrjob</a> - Run MapReduce jobs on Hadoop or Amazon Web Services.</li>
2259-
<li><a href="https://github.com/Parsely/streamparse">streamparse</a> - Run Python code against real-time streams of data. Integrates with <a href="http://storm.apache.org/">Apache Storm</a>.</li>
2260-
<li><a href="https://dask.pydata.org/en/latest/">dask</a> - A flexible parallel computing library for analytic computing.</li>
2261-
</ul>
22622270
<h2 id="microsoft-windows">Microsoft Windows</h2>
22632271
<p><em>Python programming on Microsoft Windows.</em></p>
22642272
<ul>
@@ -2302,7 +2310,10 @@ <h2 id="network-virtualization">Network Virtualization</h2>
23022310
<h2 id="networking">Networking</h2>
23032311
<p><em>Libraries for networking programming.</em></p>
23042312
<ul>
2305-
<li><a href="https://docs.python.org/3/library/asyncio.html">asyncio</a> - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks.</li>
2313+
<li><a href="https://docs.python.org/3/library/asyncio.html">asyncio</a> - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks.<ul>
2314+
<li><a href="https://github.com/timofurrer/awesome-asyncio">awesome-asyncio</a></li>
2315+
</ul>
2316+
</li>
23062317
<li><a href="https://github.com/dieseldev/diesel">diesel</a> - Greenlet-based event I/O Framework for Python.</li>
23072318
<li><a href="https://github.com/quantmind/pulsar">pulsar</a> - Event-driven concurrent framework for Python.</li>
23082319
<li><a href="http://zeromq.github.io/pyzmq/">pyzmq</a> - A Python wrapper for the ZeroMQ message library.</li>
@@ -2723,11 +2734,6 @@ <h2 id="web-crawling-web-scraping">Web Crawling &amp; Web Scraping</h2>
27232734
<h2 id="web-frameworks">Web Frameworks</h2>
27242735
<p><em>Full stack web frameworks.</em></p>
27252736
<ul>
2726-
<li><a href="http://bottlepy.org/docs/dev/index.html">Bottle</a> - A fast, simple and lightweight WSGI micro web-framework.</li>
2727-
<li><a href="https://plot.ly/products/dash/">Dash</a> - Built on top of Flask, React and Plotly aimed at analytical web applications.<ul>
2728-
<li><a href="https://github.com/Acrotrend/awesome-dash">awesome-dash</a></li>
2729-
</ul>
2730-
</li>
27312737
<li><a href="https://www.djangoproject.com/">Django</a> - The most popular web framework in Python.<ul>
27322738
<li><a href="https://github.com/rosarior/awesome-django">awesome-django</a></li>
27332739
</ul>
@@ -2742,14 +2748,14 @@ <h2 id="web-frameworks">Web Frameworks</h2>
27422748
</li>
27432749
<li><a href="https://github.com/channelcat/sanic">Sanic</a> - Web server that's written to go fast.</li>
27442750
<li><a href="http://www.tornadoweb.org/en/latest/">Tornado</a> - A Web framework and asynchronous networking library.</li>
2745-
<li><a href="https://vibora.io/">Vibora</a> - Fast, efficient and asynchronous Web framework inspired by Flask</li>
2751+
<li><a href="https://vibora.io/">Vibora</a> - Fast, efficient and asynchronous Web framework inspired by Flask.</li>
27462752
</ul>
27472753
<h2 id="websocket">WebSocket</h2>
27482754
<p><em>Libraries for working with WebSocket.</em></p>
27492755
<ul>
27502756
<li><a href="https://github.com/crossbario/autobahn-python">AutobahnPython</a> - WebSocket &amp; WAMP for Python on Twisted and <a href="https://docs.python.org/3/library/asyncio.html">asyncio</a>.</li>
27512757
<li><a href="https://github.com/crossbario/crossbar/">Crossbar</a> - Open-source Unified Application Router (Websocket &amp; WAMP for Python on Autobahn).</li>
2752-
<li><a href="https://github.com/django/channels">django-channels</a> - Developer-friendly asynchrony for Django</li>
2758+
<li><a href="https://github.com/django/channels">django-channels</a> - Developer-friendly asynchrony for Django.</li>
27532759
<li><a href="https://github.com/stephenmcd/django-socketio">django-socketio</a> - WebSockets for Django.</li>
27542760
<li><a href="https://github.com/Lawouach/WebSocket-for-Python">WebSocket-for-Python</a> - WebSocket client and server library for Python 2 and 3 as well as PyPy.</li>
27552761
</ul>

mkdocs/search_index.json

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)