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

Skip to content

Commit 8c6e260

Browse files
committed
Deployed 2d4f71d with MkDocs version: 0.16.3
1 parent 0cb435b commit 8c6e260

File tree

3 files changed

+53
-40
lines changed

3 files changed

+53
-40
lines changed

index.html

Lines changed: 33 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -812,8 +812,8 @@
812812
</li>
813813

814814
<li class="md-nav__item">
815-
<a href="#web-crawling" title="Web Crawling" class="md-nav__link">
816-
Web Crawling
815+
<a href="#web-crawling-web-scraping" title="Web Crawling &amp; Web Scraping" class="md-nav__link">
816+
Web Crawling &amp; Web Scraping
817817
</a>
818818

819819
</li>
@@ -1436,8 +1436,8 @@
14361436
</li>
14371437

14381438
<li class="md-nav__item">
1439-
<a href="#web-crawling" title="Web Crawling" class="md-nav__link">
1440-
Web Crawling
1439+
<a href="#web-crawling-web-scraping" title="Web Crawling &amp; Web Scraping" class="md-nav__link">
1440+
Web Crawling &amp; Web Scraping
14411441
</a>
14421442

14431443
</li>
@@ -1556,7 +1556,7 @@ <h1 id="awesome-python">Awesome Python <a href="https://github.com/sindresorhus/
15561556
<li><a href="#url-manipulation">URL Manipulation</a></li>
15571557
<li><a href="#video">Video</a></li>
15581558
<li><a href="#web-content-extracting">Web Content Extracting</a></li>
1559-
<li><a href="#web-crawling">Web Crawling</a></li>
1559+
<li><a href="#web-crawling--web-scraping">Web Crawling &amp; Web Scraping</a></li>
15601560
<li><a href="#web-frameworks">Web Frameworks</a></li>
15611561
<li><a href="#websocket">WebSocket</a></li>
15621562
<li><a href="#wsgi-servers">WSGI Servers</a></li>
@@ -1592,11 +1592,11 @@ <h2 id="admin-panels">Admin Panels</h2>
15921592
<h2 id="algorithms-and-design-patterns">Algorithms and Design Patterns</h2>
15931593
<p><em>Python implementation of algorithms and design patterns.</em></p>
15941594
<ul>
1595-
<li><a href="https://github.com/nryoung/algorithms">algorithms</a> - A module of algorithms for Python.</li>
1595+
<li><a href="https://github.com/keon/algorithms">algorithms</a> - Minimal examples of data structures and algorithms in Python.</li>
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>
1599+
<li><a href="https://github.com/soravux/scoop">SCOOP</a> - Scalable Concurrent Operations in Python.</li>
16001600
</ul>
16011601
<h2 id="anti-spam">Anti-spam</h2>
16021602
<p><em>Libraries for fighting spam.</em></p>
@@ -1700,7 +1700,7 @@ <h2 id="caching">Caching</h2>
17001700
<li><a href="https://github.com/5monkeys/django-viewlet">django-viewlet</a> - Render template parts with extended cache control.</li>
17011701
<li><a href="http://dogpilecache.readthedocs.io/en/latest/">dogpile.cache</a> - dogpile.cache is next generation replacement for Beaker made by same authors.</li>
17021702
<li><a href="https://pypi.python.org/pypi/HermesCache">HermesCache</a> - Python caching library with tag-based invalidation and dogpile effect prevention.</li>
1703-
<li><a href="https://github.com/jmoiron/johnny-cache">johnny-cache</a> - A caching framework for django applications.</li>
1703+
<li><a href="https://github.com/jmoiron/johnny-cache">johnny-cache</a> - A caching framework for Django applications.</li>
17041704
<li><a href="https://github.com/lericson/pylibmc">pylibmc</a> - A Python wrapper around the <a href="http://libmemcached.org/libMemcached.html">libmemcached</a> interface.</li>
17051705
</ul>
17061706
<h2 id="chatops-tools">ChatOps Tools</h2>
@@ -1723,6 +1723,7 @@ <h2 id="code-analysis">Code Analysis</h2>
17231723
</li>
17241724
<li>Static Type Checkers<ul>
17251725
<li><a href="http://mypy-lang.org/">mypy</a> - Check variable types during compile time.</li>
1726+
<li><a href="https://github.com/facebook/pyre-check">Pyre</a> - Performant type checking.</li>
17261727
</ul>
17271728
</li>
17281729
<li>Static Type Annotations Generators<ul>
@@ -1734,17 +1735,20 @@ <h2 id="command-line-tools">Command-line Tools</h2>
17341735
<p><em>Libraries for building command-line application.</em></p>
17351736
<ul>
17361737
<li>Command-line Application Development<ul>
1737-
<li><a href="https://github.com/peterbrittain/asciimatics">asciimatics</a> - A package to create full-screen text UIs (from interactive forms to ASCII animations).</li>
1738-
<li><a href="https://github.com/glamp/bashplotlib">bashplotlib</a> - Making basic plots in the terminal.</li>
17391738
<li><a href="http://builtoncement.com/">cement</a> - CLI Application Framework for Python.</li>
17401739
<li><a href="http://click.pocoo.org/dev/">click</a> - A package for creating beautiful command line interfaces in a composable way.</li>
17411740
<li><a href="https://docs.openstack.org/developer/cliff/">cliff</a> - A framework for creating command-line programs with multi-level commands.</li>
17421741
<li><a href="https://github.com/kennethreitz/clint">clint</a> - Python Command-line Application Tools.</li>
1743-
<li><a href="https://pypi.python.org/pypi/colorama">colorama</a> - Cross-platform colored terminal text.</li>
17441742
<li><a href="http://docopt.org/">docopt</a> - Pythonic command line arguments parser.</li>
1745-
<li><a href="https://github.com/chriskiehl/Gooey">Gooey</a> - Turn command line programs into a full GUI application with one line</li>
1743+
<li><a href="https://github.com/chriskiehl/Gooey">Gooey</a> - Turn command line programs into a full GUI application with one line.</li>
17461744
<li><a href="https://github.com/google/python-fire">Python-Fire</a> - A library for creating command line interfaces from absolutely any Python object.</li>
1747-
<li><a href="https://github.com/jonathanslenders/python-prompt-toolkit">python-prompt-toolkit</a> - A Library for building powerful interactive command lines.</li>
1745+
<li><a href="https://github.com/jonathanslenders/python-prompt-toolkit">python-prompt-toolkit</a> - A library for building powerful interactive command lines.</li>
1746+
</ul>
1747+
</li>
1748+
<li>Terminal Rendering<ul>
1749+
<li><a href="https://github.com/peterbrittain/asciimatics">asciimatics</a> - A package to create full-screen text UIs (from interactive forms to ASCII animations).</li>
1750+
<li><a href="https://github.com/glamp/bashplotlib">bashplotlib</a> - Making basic plots in the terminal.</li>
1751+
<li><a href="https://pypi.python.org/pypi/colorama">colorama</a> - Cross-platform colored terminal text.</li>
17481752
</ul>
17491753
</li>
17501754
<li>Productivity Tools<ul>
@@ -1761,7 +1765,7 @@ <h2 id="command-line-tools">Command-line Tools</h2>
17611765
<li><a href="https://github.com/donnemartin/saws">SAWS</a> - A Supercharged AWS CLI.</li>
17621766
<li><a href="https://github.com/nvbn/thefuck">thefuck</a> - Correcting your previous console command.</li>
17631767
<li><a href="https://github.com/tony/tmuxp">tmuxp</a> - A <a href="https://github.com/tmux/tmux">tmux</a> session manager.</li>
1764-
<li><a href="https://github.com/timofurrer/try">try</a> - A dead simple CLI to try out python packages - It's never been easier.</li>
1768+
<li><a href="https://github.com/timofurrer/try">try</a> - A dead simple CLI to try out python packages - it's never been easier.</li>
17651769
</ul>
17661770
</li>
17671771
</ul>
@@ -1814,7 +1818,7 @@ <h2 id="data-analysis">Data Analysis</h2>
18141818
<li><a href="https://github.com/mining/mining">Open Mining</a> - Business Intelligence (BI) in Pandas interface.</li>
18151819
<li><a href="https://orange.biolab.si/">Orange</a> - Data mining, data visualization, analysis and machine learning through visual programming or scripts.</li>
18161820
<li><a href="http://pandas.pydata.org/">Pandas</a> - A library providing high-performance, easy-to-use data structures and data analysis tools.</li>
1817-
<li><a href="https://github.com/ironmussa/Optimus">Optimus</a> - Cleansing, pre-processing, feature engineering, exploratory data analysis and easy Machine Learning with a PySpark backend. </li>
1821+
<li><a href="https://github.com/ironmussa/Optimus">Optimus</a> - Cleansing, pre-processing, feature engineering, exploratory data analysis and easy Machine Learning with a PySpark backend.</li>
18181822
</ul>
18191823
<h2 id="data-validation">Data Validation</h2>
18201824
<p><em>Libraries for validating data. Used for forms in many cases.</em></p>
@@ -1915,6 +1919,7 @@ <h2 id="debugging-tools">Debugging Tools</h2>
19151919
</ul>
19161920
</li>
19171921
<li>Others<ul>
1922+
<li><a href="https://github.com/gruns/icecream">IceCream</a> - Inspect variables, expressions, and program execution with a single, simple function call.</li>
19181923
<li><a href="https://github.com/jazzband/django-debug-toolbar">django-debug-toolbar</a> - Display various debug information for Django.</li>
19191924
<li><a href="https://github.com/dcramer/django-devserver">django-devserver</a> - A drop-in replacement for Django's runserver.</li>
19201925
<li><a href="https://github.com/mgood/flask-debugtoolbar">flask-debugtoolbar</a> - A port of the django-debug-toolbar to flask.</li>
@@ -2098,10 +2103,10 @@ <h2 id="gui">GUI</h2>
20982103
<li><a href="https://github.com/zoofIO/flexx">Flexx</a> - Flexx is a pure Python toolkit for creating GUI's, that uses web technology for its rendering.</li>
20992104
<li><a href="https://kivy.org/">kivy</a> - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS.</li>
21002105
<li><a href="https://bitbucket.org/pyglet/pyglet/wiki/Home">pyglet</a> - A cross-platform windowing and multimedia library for Python.</li>
2101-
<li><a href="https://wiki.gnome.org/Projects/PyGObject">PyGObject</a> - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3)</li>
2106+
<li><a href="https://wiki.gnome.org/Projects/PyGObject">PyGObject</a> - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3).</li>
21022107
<li><a href="https://riverbankcomputing.com/software/pyqt/intro">PyQt</a> - Python bindings for the <a href="https://www.qt.io/">Qt</a> cross-platform application and UI framework, with support for both Qt v4 and Qt v5 frameworks.</li>
21032108
<li><a href="https://wiki.qt.io/PySide">PySide</a> - Python bindings for the <a href="http://www.qt.io/">Qt</a> cross-platform application and UI framework, supporting the Qt v4 framework.</li>
2104-
<li><a href="https://github.com/r0x0r/pywebview/">pywebview</a> - A lightweight cross-platform native wrapper around a webview component that allows to display HTML content in its own native dedicated window</li>
2109+
<li><a href="https://github.com/r0x0r/pywebview/">pywebview</a> - A lightweight cross-platform native wrapper around a webview component that allows to display HTML content in its own native dedicated window.</li>
21052110
<li><a href="https://wiki.python.org/moin/TkInter">Tkinter</a> - Tkinter is Python's de-facto standard GUI package.</li>
21062111
<li><a href="https://github.com/pybee/toga">Toga</a> - A Python native, OS native GUI toolkit.</li>
21072112
<li><a href="http://urwid.org/">urwid</a> - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc.</li>
@@ -2237,6 +2242,7 @@ <h2 id="logging">Logging</h2>
22372242
<h2 id="machine-learning">Machine Learning</h2>
22382243
<p><em>Libraries for Machine Learning. See: <a href="https://github.com/josephmisiti/awesome-machine-learning#python">awesome-machine-learning</a>.</em></p>
22392244
<ul>
2245+
<li><a href="https://github.com/h2oai/h2o-3">H2O</a> - Open Source Fast Scalable Machine Learning Platform.</li>
22402246
<li><a href="https://github.com/benhamner/Metrics">Metrics</a> - Machine learning evaluation metrics.</li>
22412247
<li><a href="https://github.com/numenta/nupic">NuPIC</a> - Numenta Platform for Intelligent Computing.</li>
22422248
<li><a href="http://scikit-learn.org/">scikit-learn</a> - The most popular Python library for Machine Learning.</li>
@@ -2395,6 +2401,7 @@ <h2 id="recommender-systems">Recommender Systems</h2>
23952401
<li><a href="https://github.com/benfred/implicit">implicit</a> - A fast Python implementation of collaborative filtering for implicit datasets.</li>
23962402
<li><a href="https://github.com/guestwalk/libffm">libffm</a> - A library for Field-aware Factorization Machine (FFM).</li>
23972403
<li><a href="https://github.com/lyst/lightfm">LightFM</a> - A Python implementation of a number of popular recommendation algorithms.</li>
2404+
<li><a href="https://github.com/maciejkula/spotlight">Spotlight</a> - Deep recommender models using PyTorch.</li>
23982405
<li><a href="http://surpriselib.com">surprise</a> - A scikit for building and analyzing recommender systems.</li>
23992406
<li><a href="https://github.com/jfkirk/tensorrec">TensorRec</a> - A Recommendation Engine Framework in TensorFlow.</li>
24002407
</ul>
@@ -2451,6 +2458,7 @@ <h2 id="science">Science</h2>
24512458
<li><a href="https://github.com/obspy/obspy/wiki/">ObsPy</a> - A Python toolbox for seismology.</li>
24522459
<li><a href="http://www.pydy.org/">PyDy</a> - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion.</li>
24532460
<li><a href="https://github.com/pymc-devs/pymc3">PyMC</a> - Markov Chain Monte Carlo sampling toolkit.</li>
2461+
<li><a href="http://qutip.org/">QuTiP</a> - Quantum Toolbox in Python.</li>
24542462
<li><a href="http://www.rdkit.org/">RDKit</a> - Cheminformatics and Machine Learning Software.</li>
24552463
<li><a href="https://www.scipy.org/">SciPy</a> - A Python-based ecosystem of open-source software for mathematics, science, and engineering.</li>
24562464
<li><a href="https://github.com/statsmodels/statsmodels">statsmodels</a> - Statistical modeling and econometrics in Python.</li>
@@ -2619,6 +2627,7 @@ <h2 id="text-processing">Text Processing</h2>
26192627
<li><a href="https://github.com/pwaller/pyfiglet">pyfiglet</a> - An implementation of figlet written in Python.</li>
26202628
<li><a href="https://github.com/mozillazg/python-pinyin">pypinyin</a> - Convert Chinese hanzi to pinyin.</li>
26212629
<li><a href="https://github.com/skorokithakis/shortuuid">shortuuid</a> - A generator library for concise, unambiguous and URL-safe UUIDs.</li>
2630+
<li><a href="https://github.com/orsinium/textdistance">textdistance</a> - Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.</li>
26222631
<li><a href="https://pypi.python.org/pypi/Unidecode">unidecode</a> - ASCII transliterations of Unicode text.</li>
26232632
<li><a href="https://github.com/moskytw/uniout">uniout</a> - Print readable chars instead of the escaped string.</li>
26242633
<li><a href="https://github.com/lxneng/xpinyin">xpinyin</a> - A library to translate Chinese hanzi (漢字) to pinyin (拼音).</li>
@@ -2632,7 +2641,7 @@ <h2 id="text-processing">Text Processing</h2>
26322641
</li>
26332642
<li>Parser<ul>
26342643
<li><a href="https://github.com/daviddrysdale/python-phonenumbers">phonenumbers</a> - Parsing, formatting, storing and validating international phone numbers.</li>
2635-
<li><a href="http://www.dabeaz.com/ply/">PLY</a> - Implementation of lex and yacc parsing tools for Python</li>
2644+
<li><a href="http://www.dabeaz.com/ply/">PLY</a> - Implementation of lex and yacc parsing tools for Python.</li>
26362645
<li><a href="http://pygments.org/">Pygments</a> - A generic syntax highlighter.</li>
26372646
<li><a href="http://pyparsing.wikispaces.com/">pyparsing</a> - A general purpose framework for generating parsers.</li>
26382647
<li><a href="https://github.com/derek73/python-nameparser">python-nameparser</a> - Parsing human names into their individual components.</li>
@@ -2698,8 +2707,8 @@ <h2 id="web-content-extracting">Web Content Extracting</h2>
26982707
<li><a href="https://github.com/deanmalmgren/textract">textract</a> - Extract text from any document, Word, PowerPoint, PDFs, etc.</li>
26992708
<li><a href="https://github.com/gaojiuli/toapi">toapi</a> - Every web site provides APIs.</li>
27002709
</ul>
2701-
<h2 id="web-crawling">Web Crawling</h2>
2702-
<p><em>Libraries for scraping websites.</em></p>
2710+
<h2 id="web-crawling-web-scraping">Web Crawling &amp; Web Scraping</h2>
2711+
<p><em>Libraries to automate data extraction from websites.</em></p>
27032712
<ul>
27042713
<li><a href="https://github.com/chineking/cola">cola</a> - A distributed crawling framework.</li>
27052714
<li><a href="https://github.com/matiasb/demiurge">Demiurge</a> - PyQuery-based scraping micro-framework.</li>
@@ -2782,6 +2791,7 @@ <h2 id="twitter">Twitter</h2>
27822791
<li><a href="https://twitter.com/pythontrending">@pythontrending</a></li>
27832792
<li><a href="https://twitter.com/PythonWeekly">@PythonWeekly</a></li>
27842793
<li><a href="https://twitter.com/talkpython">@TalkPython</a></li>
2794+
<li><a href="https://twitter.com/realpython">@realpython</a></li>
27852795
</ul>
27862796
<h2 id="websites">Websites</h2>
27872797
<ul>
@@ -2795,6 +2805,7 @@ <h2 id="websites">Websites</h2>
27952805
<li><a href="http://www.oss.io/open-source/">Python Hackers</a></li>
27962806
<li><a href="https://python.zeef.com/alan.richmond">Python ZEEF</a></li>
27972807
<li><a href="https://www.ctolib.com/python/">Python 开发社区</a></li>
2808+
<li><a href="https://realpython.com">Real Python</a></li>
27982809
<li><a href="https://github.com/trending?l=python">Trending Python repositories on GitHub today</a></li>
27992810
</ul>
28002811
<h2 id="weekly">Weekly</h2>
@@ -2803,6 +2814,7 @@ <h2 id="weekly">Weekly</h2>
28032814
<li><a href="http://importpython.com/newsletter/">Import Python Newsletter</a></li>
28042815
<li><a href="http://pycoders.com/">Pycoder's Weekly</a></li>
28052816
<li><a href="http://www.pythonweekly.com/">Python Weekly</a></li>
2817+
<li><a href="https://realpython.com/python-tricks/">Python Tricks</a></li>
28062818
</ul>
28072819
<h1 id="other-awesome-lists">Other Awesome Lists</h1>
28082820
<p>List of lists.</p>
@@ -2819,6 +2831,7 @@ <h1 id="other-awesome-lists">Other Awesome Lists</h1>
28192831
<li><a href="https://github.com/rasbt/python_reference">python_reference</a></li>
28202832
<li><a href="https://github.com/svaksha/pythonidae">pythonidae</a></li>
28212833
<li><a href="https://www.cybrhome.com/topic/python-podcasts">Python Podcasts</a></li>
2834+
<li><a href="https://github.com/metakermit/awesome-python-for-social-good">Python for Social Good</a></li>
28222835
</ul>
28232836
</li>
28242837
</ul>

mkdocs/search_index.json

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

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<url>
66
<loc>https://awesome-python.com/</loc>
7-
<lastmod>2018-04-11</lastmod>
7+
<lastmod>2018-08-04</lastmod>
88
<changefreq>daily</changefreq>
99
</url>
1010

0 commit comments

Comments
 (0)