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

Skip to content

Commit e3e4365

Browse files
committed
rearrange
1 parent 128ddf2 commit e3e4365

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

README.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
1414
- [Documentation](#documentation)
1515
- [Configuration](#configuration)
1616
- [Command-line Tools](#command-line-tools)
17+
- [Downloader](#downloader)
1718
- [Imagery](#imagery)
1819
- [Audio](#audio)
1920
- [Video](#video)
@@ -39,17 +40,17 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
3940
- [HTML Manipulation](#html-manipulation)
4041
- [Web Crawling](#web-crawling)
4142
- [Web Content Extracting](#web-content-extracting)
42-
- [Downloader](#downloader)
4343
- [Forms](#forms)
4444
- [Data Validation](#data-validation)
4545
- [Anti-spam](#anti-spam)
4646
- [Tagging](#tagging)
4747
- [Admin Panels](#admin-panels)
48+
- [Static Site Generator](#static-site-generator)
4849
- [Processes and Threads](#processes-and-threads)
4950
- [Networking](#networking)
5051
- [WebSocket](#websocket)
51-
- [RPC Servers](#rpc-servers)
5252
- [WSGI Servers](#wsgi-servers)
53+
- [RPC Servers](#rpc-servers)
5354
- [Cryptography](#cryptography)
5455
- [GUI](#gui)
5556
- [Game Development](#game-development)
@@ -69,7 +70,6 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
6970
- [High Performance](#high-performance)
7071
- [Algorithms and Design Patterns](#algorithms-and-design-patterns)
7172
- [Hardware](#hardware)
72-
- [Static Site Generator](#static-site-generator)
7373
- [Miscellaneous](#miscellaneous)
7474
- [Editor Plugins](#editor-plugins)
7575
- [Resources](#resources)
@@ -226,6 +226,16 @@ long, literate-programming-style documentation generator.
226226
* [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX.
227227
* [RainbowStream](http://www.rainbowstream.org/) - Smart and nice Twitter client on terminal.
228228

229+
## Downloader
230+
231+
*Libraries for downloading.*
232+
233+
* [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront.
234+
* [youtube-dl](http://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube.
235+
* [you-get](http://www.soimort.org/you-get/) - A YouTube/Youku/Niconico video downloader written in Python 3.
236+
* [coursera](https://github.com/coursera-dl/coursera) - Script for downloading Coursera.org videos and naming them.
237+
* [WikiTeam](https://github.com/WikiTeam/wikiteam) - Tools for downloading and preserving wikis.
238+
229239
## Imagery
230240

231241
*Libraries for manipulating images.*
@@ -523,16 +533,6 @@ long, literate-programming-style documentation generator.
523533
* [python-readability](https://github.com/buriy/python-readability) - Fast Python port of arc90's readability tool.
524534
* [opengraph](https://github.com/erikriver/opengraph) - A Python module to parse the Open Graph Protocol
525535

526-
## Downloader
527-
528-
*Libraries for downloading.*
529-
530-
* [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront.
531-
* [youtube-dl](http://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube.
532-
* [you-get](http://www.soimort.org/you-get/) - A YouTube/Youku/Niconico video downloader written in Python 3.
533-
* [coursera](https://github.com/coursera-dl/coursera) - Script for downloading Coursera.org videos and naming them.
534-
* [WikiTeam](https://github.com/WikiTeam/wikiteam) - Tools for downloading and preserving wikis.
535-
536536
## Forms
537537

538538
*Libraries for working with forms.*
@@ -576,6 +576,17 @@ long, literate-programming-style documentation generator.
576576
* [flask-admin](https://github.com/mrjoes/flask-admin) - Simple and extensible administrative interface framework for Flask.
577577
* [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery.
578578

579+
## Static Site Generator
580+
581+
*Static site generator is a software that takes some text + templates as input and produces html files on the output.*
582+
583+
* [Pelican](http://blog.getpelican.com/) - Uses Markdown or ReST for content and Jinja 2 for themes. Supports DVCS, Disqus. AGPL.
584+
* [Cactus](http://github.com/koenbok/Cactus/) – Static site generator for designers.
585+
* [Hyde](https://hyde.github.com/) - Jinja2-based static web site generator.
586+
* [Nikola](http://www.getnikola.com/) - A static website and blog generator.
587+
* [Tags](http://tags.brace.io/) - The simplest static site generator.
588+
* [Tinkerer](http://tinkerer.me/) - Tinkerer is a blogging engine/.static website generator powered by Sphinx.
589+
579590
## Processes and Threads
580591

581592
*Libraries for woking with processes or threads*
@@ -606,14 +617,6 @@ long, literate-programming-style documentation generator.
606617
* [WebSocket-for-Python](https://github.com/Lawouach/WebSocket-for-Python) - WebSocket client and server library for Python 2 and 3 as well as PyPy.
607618
* [Crossbar](http://crossbar.io) - Open-source Unified Application Router (Websocket & WAMP for Python on Autobahn).
608619

609-
## RPC Servers
610-
611-
*RPC-compatible servers*
612-
613-
* [SimpleXMLRPCServer](https://docs.python.org/2/library/simplexmlrpcserver.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded.
614-
* [SimpleJSONRPCServer](https://github.com/joshmarshall/jsonrpclib/) - This library is an implementation of the JSON-RPC specification.
615-
* [zeroRPC](https://github.com/dotcloud/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/).
616-
617620
## WSGI Servers
618621

619622
*WSGI-compatible web servers.*
@@ -629,6 +632,14 @@ long, literate-programming-style documentation generator.
629632
* [meinheld](http://pypi.python.org/pypi/meinheld) - Asynchronous, partly written in C.
630633
* [bjoern](http://pypi.python.org/pypi/bjoern) - Asynchronous, very fast and written in C.
631634

635+
## RPC Servers
636+
637+
*RPC-compatible servers.*
638+
639+
* [SimpleXMLRPCServer](https://docs.python.org/2/library/simplexmlrpcserver.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded.
640+
* [SimpleJSONRPCServer](https://github.com/joshmarshall/jsonrpclib/) - This library is an implementation of the JSON-RPC specification.
641+
* [zeroRPC](https://github.com/dotcloud/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/).
642+
632643
## Cryptography
633644

634645
* [PyCA's Cryptography](https://cryptography.io/en/latest/) - cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
@@ -851,17 +862,6 @@ long, literate-programming-style documentation generator.
851862

852863
* [wifi](https://wifi.readthedocs.org/) - A Python library and command line tool for working with WiFi on Linux.
853864

854-
## Static Site Generator
855-
856-
*Static site generator is a software that takes some text + templates as input and produces html files on the output.*
857-
858-
* [Pelican](http://blog.getpelican.com/) - Uses Markdown or ReST for content and Jinja 2 for themes. Supports DVCS, Disqus. AGPL.
859-
* [Cactus](http://github.com/koenbok/Cactus/) – Static site generator for designers.
860-
* [Hyde](https://hyde.github.com/) - Jinja2-based static web site generator.
861-
* [Nikola](http://www.getnikola.com/) - A static website and blog generator.
862-
* [Tags](http://tags.brace.io/) - The simplest static site generator.
863-
* [Tinkerer](http://tinkerer.me/) - Tinkerer is a blogging engine/.static website generator powered by Sphinx.
864-
865865
## Miscellaneous
866866

867867
*Useful libraries or tools that don't fit in the categories above.*

0 commit comments

Comments
 (0)