You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -311,18 +311,18 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
311
311
312
312
*[eventlet](http://eventlet.net/) - Asynchronous framework with WSGI support.
313
313
*[gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet).
314
-
*[multiprocessing](https://docs.python.org/2/library/multiprocessing.html) - (Python standard library) Process-based "threading" interface.
315
-
*[threading](https://docs.python.org/2/library/threading.html) - (Python standard library) Higher-level threading interface.
314
+
*[multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based "threading" interface.
315
+
*[threading](https://docs.python.org/3/library/threading.html) - (Python standard library) Higher-level threading interface.
316
316
*[Tomorrow](https://github.com/madisonmay/Tomorrow) - Magic decorator syntax for asynchronous code.
317
317
*[uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of asyncio event loop on top of libuv.
318
318
319
319
## Configuration
320
320
321
321
*Libraries for storing and parsing configuration options.*
322
322
323
-
*[config](https://www.red-dove.com/config-doc/) - Hierarchical config from the author of [logging](https://docs.python.org/2/library/logging.html).
323
+
*[config](https://www.red-dove.com/config-doc/) - Hierarchical config from the author of [logging](https://docs.python.org/3/library/logging.html).
324
324
*[ConfigObj](http://www.voidspace.org.uk/python/configobj.html) - INI file parser with validation.
325
-
*[ConfigParser](https://docs.python.org/2/library/configparser.html) - (Python standard library) INI file parser.
325
+
*[ConfigParser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser.
326
326
*[profig](http://profig.readthedocs.org/en/default/) - Config from multiple formats with value conversion.
327
327
*[python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code.
328
328
@@ -411,7 +411,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
411
411
*Libraries for working with dates and times.*
412
412
413
413
*[Chronyk](https://github.com/KoffeinFlummi/Chronyk) - A Python 3 library for parsing human-written times and dates.
414
-
*[dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/2/library/datetime.html) module.
414
+
*[dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/3/library/datetime.html) module.
415
415
*[delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes.
416
416
*[moment](https://github.com/zachwill/moment) - A Python library for dealing with dates/times. Inspired by [Moment.js](http://momentjs.com/).
417
417
*[Pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy.
@@ -571,9 +571,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
571
571
572
572
*Libraries for file manipulation and MIME type detection.*
573
573
574
-
*[imghdr](https://docs.python.org/2/library/imghdr.html) - (Python standard library) Determine the type of an image.
575
-
*[mimetypes](https://docs.python.org/2/library/mimetypes.html) - (Python standard library) Map filenames to MIME types.
576
-
*[path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/2/library/os.path.html).
574
+
*[imghdr](https://docs.python.org/3/library/imghdr.html) - (Python standard library) Determine the type of an image.
575
+
*[mimetypes](https://docs.python.org/3/library/mimetypes.html) - (Python standard library) Map filenames to MIME types.
576
+
*[path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/3/library/os.path.html).
577
577
*[pathlib](https://pathlib.readthedocs.org/en/pep428/) - (Python standard library in Python 3.4+) An cross-platform, object-oriented path library.
578
578
*[python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library.
579
579
*[Unipath](https://github.com/mikeorr/Unipath) - An object-oriented approach to file/directory operations.
@@ -584,7 +584,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
584
584
*Libraries for providing foreign function interface.*
585
585
586
586
*[cffi](https://pypi.python.org/pypi/cffi) - Foreign Function Interface for Python calling C code.
587
-
*[ctypes](https://docs.python.org/2/library/ctypes.html) - (Python standard library) Foreign Function Interface for Python calling C code.
587
+
*[ctypes](https://docs.python.org/3/library/ctypes.html) - (Python standard library) Foreign Function Interface for Python calling C code.
588
588
*[PyCUDA](https://mathema.tician.de/software/pycuda/) - A Python wrapper for Nvidia's CUDA API.
589
589
*[SWIG](http://www.swig.org/Doc1.3/Python.html) - Simplified Wrapper and Interface Generator.
590
590
@@ -611,7 +611,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
611
611
612
612
*Libraries for working with graphical user interface applications.*
613
613
614
-
*[curses](https://docs.python.org/2/library/curses.html#module-curses) - Built-in wrapper for [ncurses](http://www.gnu.org/software/ncurses/) used to create terminal GUI applications.
614
+
*[curses](https://docs.python.org/3/library/curses.html) - Built-in wrapper for [ncurses](http://www.gnu.org/software/ncurses/) used to create terminal GUI applications.
615
615
*[Eel](https://github.com/ChrisKnott/Eel) - Little library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries.
616
616
*[enaml](https://github.com/nucleic/enaml) - Creating beautiful user-interfaces with Declaratic Syntax like QML.
617
617
*[Flexx](https://github.com/zoofIO/flexx) - Flexx is a pure Python toolkit for creating GUI's, that uses web technology for its rendering.
@@ -758,7 +758,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
758
758
759
759
*[Eliot](https://github.com/ScatterHQ/eliot) - Logging for complex & distributed systems.
760
760
*[logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python.
761
-
*[logging](https://docs.python.org/2/library/logging.html) - (Python standard library) Logging facility for Python.
761
+
*[logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python.
762
762
*[raven](https://github.com/getsentry/raven-python) - Python client for Sentry, a log/error tracking, crash reporting and aggregation platform for web applications.
763
763
764
764
## Machine Learning
@@ -955,7 +955,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
955
955
*RPC-compatible servers.*
956
956
957
957
*[SimpleJSONRPCServer](https://github.com/joshmarshall/jsonrpclib/) - This library is an implementation of the JSON-RPC specification.
958
-
*[SimpleXMLRPCServer](https://docs.python.org/2/library/simplexmlrpcserver.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded.
958
+
*[SimpleXMLRPCServer](https://docs.python.org/3/library/xmlrpc.server.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded.
959
959
*[zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/).
960
960
961
961
## Science
@@ -1075,7 +1075,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
1075
1075
*[nose2](https://github.com/nose-devs/nose2) - The successor to nose, based on unittest2.
1076
1076
*[pytest](https://docs.pytest.org/en/latest/) - A mature full-featured Python testing tool.
1077
1077
*[Robot Framework](https://github.com/robotframework/robotframework) - A generic test automation framework.
1078
-
*[unittest](https://docs.python.org/2/library/unittest.html) - (Python standard library) Unit testing framework.
1078
+
*[unittest](https://docs.python.org/3/library/unittest.html) - (Python standard library) Unit testing framework.
1079
1079
* Test Runners
1080
1080
*[green](https://github.com/CleanCut/green) - A clean, colorful test runner.
1081
1081
*[tox](https://tox.readthedocs.io/en/latest/) - Auto builds and tests distributions in multiple Python versions
@@ -1114,7 +1114,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
1114
1114
1115
1115
* General
1116
1116
*[chardet](https://github.com/chardet/chardet) - Python 2/3 compatible character encoding detector.
1117
-
*[difflib](https://docs.python.org/2/library/difflib.html) - (Python standard library) Helpers for computing deltas.
1117
+
*[difflib](https://docs.python.org/3/library/difflib.html) - (Python standard library) Helpers for computing deltas.
1118
1118
*[ftfy](https://github.com/LuminosoInsight/python-ftfy) - Makes Unicode text less broken and more consistent automagically.
0 commit comments