mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-24 12:31:07 +00:00
Update documentation
This commit is contained in:
parent
edd017f52f
commit
71aac74e20
20
index.html
20
index.html
|
@ -257,6 +257,8 @@
|
||||||
|
|
||||||
<li><a href="#editor-plugins">Editor Plugins</a></li>
|
<li><a href="#editor-plugins">Editor Plugins</a></li>
|
||||||
|
|
||||||
|
<li><a href="#ides">IDEs</a></li>
|
||||||
|
|
||||||
|
|
||||||
<li class="main "><a href="#resources">Resources</a></li>
|
<li class="main "><a href="#resources">Resources</a></li>
|
||||||
|
|
||||||
|
@ -358,6 +360,7 @@
|
||||||
<li><a href="#miscellaneous">Miscellaneous</a></li>
|
<li><a href="#miscellaneous">Miscellaneous</a></li>
|
||||||
<li><a href="#algorithms-and-design-patterns">Algorithms and Design Patterns</a></li>
|
<li><a href="#algorithms-and-design-patterns">Algorithms and Design Patterns</a></li>
|
||||||
<li><a href="#editor-plugins">Editor Plugins</a></li>
|
<li><a href="#editor-plugins">Editor Plugins</a></li>
|
||||||
|
<li><a href="#ides">IDEs</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#resources">Resources</a><ul>
|
<li><a href="#resources">Resources</a><ul>
|
||||||
|
@ -402,6 +405,7 @@
|
||||||
</li>
|
</li>
|
||||||
<li><a href="http://doc.devpi.net/">devpi</a> - PyPI server and packaging/testing/release tool.</li>
|
<li><a href="http://doc.devpi.net/">devpi</a> - PyPI server and packaging/testing/release tool.</li>
|
||||||
<li><a href="https://github.com/mvantellingen/localshop">localshop</a> - PyPI server which mirrors official packages on-demand, and also supports local (private) package uploads.</li>
|
<li><a href="https://github.com/mvantellingen/localshop">localshop</a> - PyPI server which mirrors official packages on-demand, and also supports local (private) package uploads.</li>
|
||||||
|
<li><a href="https://bitbucket.org/pypa/bandersnatch">bandersnatch</a> - PyPI mirroring tool provided by Python Packaging Authority (PyPA)</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="distribution">Distribution</h2>
|
<h2 id="distribution">Distribution</h2>
|
||||||
<p><em>Libraries to create packaged executables for release distribution.</em></p>
|
<p><em>Libraries to create packaged executables for release distribution.</em></p>
|
||||||
|
@ -568,7 +572,7 @@
|
||||||
<li><a href="http://builtoncement.com/">cement</a> - Cement provides a light-weight and fully featured foundation to build anything from single file scripts to complex and intricately designed applications.</li>
|
<li><a href="http://builtoncement.com/">cement</a> - Cement provides a light-weight and fully featured foundation to build anything from single file scripts to complex and intricately designed applications.</li>
|
||||||
<li><a href="http://click.pocoo.org/">click</a> - A package for creating beautiful command line interfaces in a composable way.</li>
|
<li><a href="http://click.pocoo.org/">click</a> - A package for creating beautiful command line interfaces in a composable way.</li>
|
||||||
<li><a href="https://github.com/kennethreitz/clint">clint</a> - Python Command-line Application Tools.</li>
|
<li><a href="https://github.com/kennethreitz/clint">clint</a> - Python Command-line Application Tools.</li>
|
||||||
<li><a href="https://cliff.readthedocs.org/">cliff</a> - A framework for creating command-line programs with multi-level commands.</li>
|
<li><a href="http://docs.openstack.org/developer/cliff/">cliff</a> - A framework for creating command-line programs with multi-level commands.</li>
|
||||||
<li><a href="http://clime.mosky.tw">Clime</a> – Clime lets you convert any module into a multi-command CLI program without any configuration.</li>
|
<li><a href="http://clime.mosky.tw">Clime</a> – Clime lets you convert any module into a multi-command CLI program without any configuration.</li>
|
||||||
<li><a href="http://docopt.org/">docopt</a> - Pythonic command line arguments parser.</li>
|
<li><a href="http://docopt.org/">docopt</a> - Pythonic command line arguments parser.</li>
|
||||||
<li><a href="https://pypi.python.org/pypi/colorama">colorama</a> - Cross-platform colored terminal text.</li>
|
<li><a href="https://pypi.python.org/pypi/colorama">colorama</a> - Cross-platform colored terminal text.</li>
|
||||||
|
@ -1097,6 +1101,7 @@
|
||||||
<li><a href="http://pythonhosted.org/Logbook/">logbook</a> - Logging replacement for Python.</li>
|
<li><a href="http://pythonhosted.org/Logbook/">logbook</a> - Logging replacement for Python.</li>
|
||||||
<li><a href="https://pypi.python.org/pypi/sentry">Sentry</a> - A realtime logging and aggregation server.</li>
|
<li><a href="https://pypi.python.org/pypi/sentry">Sentry</a> - A realtime logging and aggregation server.</li>
|
||||||
<li><a href="http://raven.readthedocs.org/">Raven</a> - The Python client for Sentry.</li>
|
<li><a href="http://raven.readthedocs.org/">Raven</a> - The Python client for Sentry.</li>
|
||||||
|
<li><a href="https://eliot.readthedocs.org/">Eliot</a> - Logging for complex & distributed systems.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="testing">Testing</h2>
|
<h2 id="testing">Testing</h2>
|
||||||
<p><em>Libraries for testing codebases and generating test data.</em></p>
|
<p><em>Libraries for testing codebases and generating test data.</em></p>
|
||||||
|
@ -1167,7 +1172,7 @@
|
||||||
<li><a href="https://docs.python.org/2/library/pdb.html">pdb</a> - (Python standard library) The Python Debugger.</li>
|
<li><a href="https://docs.python.org/2/library/pdb.html">pdb</a> - (Python standard library) The Python Debugger.</li>
|
||||||
<li><a href="https://pypi.python.org/pypi/ipdb">ipdb</a> - IPython-enabled pdb.</li>
|
<li><a href="https://pypi.python.org/pypi/ipdb">ipdb</a> - IPython-enabled pdb.</li>
|
||||||
<li><a href="https://github.com/Kozea/wdb">wdb</a> - An improbable web debugger through WebSockets.</li>
|
<li><a href="https://github.com/Kozea/wdb">wdb</a> - An improbable web debugger through WebSockets.</li>
|
||||||
<li><a href="http://winpdb.org/">winpdb</a> - A Platform Independent Python Debugger with GUI.</li>
|
<li><a href="http://winpdb.org/">winpdb</a> - A Platform Independent Python Debugger with GUI, capable of remote debugging based on rpdb2.</li>
|
||||||
<li><a href="https://pypi.python.org/pypi/pudb">pudb</a> – A full-screen, console-based Python debugger.</li>
|
<li><a href="https://pypi.python.org/pypi/pudb">pudb</a> – A full-screen, console-based Python debugger.</li>
|
||||||
<li><a href="https://github.com/google/pyringe">pyringe</a> - Debugger capable of attaching to and injecting code into Python processes.</li>
|
<li><a href="https://github.com/google/pyringe">pyringe</a> - Debugger capable of attaching to and injecting code into Python processes.</li>
|
||||||
<li><a href="https://github.com/WoLpH/python-statsd">python-statsd</a> - Python Client for the <a href="https://github.com/etsy/statsd/">statsd</a> server.</li>
|
<li><a href="https://github.com/WoLpH/python-statsd">python-statsd</a> - Python Client for the <a href="https://github.com/etsy/statsd/">statsd</a> server.</li>
|
||||||
|
@ -1187,7 +1192,7 @@
|
||||||
<li><a href="https://networkx.github.io/">NetworkX</a> - A high-productivity software for complex networks.</li>
|
<li><a href="https://networkx.github.io/">NetworkX</a> - A high-productivity software for complex networks.</li>
|
||||||
<li><a href="http://pandas.pydata.org/">Pandas</a> - A library providing high-performance, easy-to-use data structures and data analysis tools.</li>
|
<li><a href="http://pandas.pydata.org/">Pandas</a> - A library providing high-performance, easy-to-use data structures and data analysis tools.</li>
|
||||||
<li><a href="https://github.com/avelino/mining">Open Mining</a> - Business Intelligence (BI) in Python (Pandas web interface)</li>
|
<li><a href="https://github.com/avelino/mining">Open Mining</a> - Business Intelligence (BI) in Python (Pandas web interface)</li>
|
||||||
<li><a href="https://github.com/pymc-devs/pymc">PyMC</a> - Markov Chain Monte Carlo sampling toolkit.</li>
|
<li><a href="https://github.com/pymc-devs/pymc3">PyMC</a> - Markov Chain Monte Carlo sampling toolkit.</li>
|
||||||
<li><a href="https://github.com/quantopian/zipline">zipline</a> - A Pythonic algorithmic trading library.</li>
|
<li><a href="https://github.com/quantopian/zipline">zipline</a> - A Pythonic algorithmic trading library.</li>
|
||||||
<li><a href="https://pydy.org/">PyDy</a> - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion based around NumPy, SciPy, IPython, and matplotlib.</li>
|
<li><a href="https://pydy.org/">PyDy</a> - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion based around NumPy, SciPy, IPython, and matplotlib.</li>
|
||||||
<li><a href="https://github.com/sympy/sympy">SymPy</a> - A Python library for symbolic mathematics.</li>
|
<li><a href="https://github.com/sympy/sympy">SymPy</a> - A Python library for symbolic mathematics.</li>
|
||||||
|
@ -1388,6 +1393,15 @@
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h2 id="ides">IDEs</h2>
|
||||||
|
<p><em>Popular Python IDEs</em></p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.jetbrains.com/pycharm/">PyCharm</a> - Commercial Python IDE based on the IntelliJ platform by JetBrains. Has free community edition available.</li>
|
||||||
|
<li><a href="http://komodoide.com/">Komodo</a> - Commercial polyglot IDE with support for Python. </li>
|
||||||
|
<li><a href="http://www.liclipse.com/">LiClipse</a> - Free polyglot IDE based on Eclipse. Uses PyDev for Python support. </li>
|
||||||
|
<li><a href="https://github.com/spyder-ide/spyder">Spyder</a> - Open Source Python IDE.</li>
|
||||||
|
<li><a href="http://wingide.com/">Wingware</a> - Commercial IDE for Python.</li>
|
||||||
|
</ul>
|
||||||
<h1 id="resources">Resources</h1>
|
<h1 id="resources">Resources</h1>
|
||||||
<p>Where to discover new Python libraries.</p>
|
<p>Where to discover new Python libraries.</p>
|
||||||
<h2 id="websites">Websites</h2>
|
<h2 id="websites">Websites</h2>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>http://awesome-python.com/</loc>
|
<loc>http://awesome-python.com/</loc>
|
||||||
<lastmod>2015-06-07</lastmod>
|
<lastmod>2015-07-04</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user