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

Skip to content

Commit d56c87f

Browse files
authored
Merge pull request vinta#1039 from andriyor/master
Update python version for standard libraries
2 parents dbd3e43 + 2bbc976 commit d56c87f

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -311,18 +311,18 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
311311

312312
* [eventlet](http://eventlet.net/) - Asynchronous framework with WSGI support.
313313
* [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.
316316
* [Tomorrow](https://github.com/madisonmay/Tomorrow) - Magic decorator syntax for asynchronous code.
317317
* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of asyncio event loop on top of libuv.
318318

319319
## Configuration
320320

321321
*Libraries for storing and parsing configuration options.*
322322

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).
324324
* [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.
326326
* [profig](http://profig.readthedocs.org/en/default/) - Config from multiple formats with value conversion.
327327
* [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code.
328328

@@ -411,7 +411,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
411411
*Libraries for working with dates and times.*
412412

413413
* [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.
415415
* [delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes.
416416
* [moment](https://github.com/zachwill/moment) - A Python library for dealing with dates/times. Inspired by [Moment.js](http://momentjs.com/).
417417
* [Pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy.
@@ -571,9 +571,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
571571

572572
*Libraries for file manipulation and MIME type detection.*
573573

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).
577577
* [pathlib](https://pathlib.readthedocs.org/en/pep428/) - (Python standard library in Python 3.4+) An cross-platform, object-oriented path library.
578578
* [python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library.
579579
* [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).
584584
*Libraries for providing foreign function interface.*
585585

586586
* [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.
588588
* [PyCUDA](https://mathema.tician.de/software/pycuda/) - A Python wrapper for Nvidia's CUDA API.
589589
* [SWIG](http://www.swig.org/Doc1.3/Python.html) - Simplified Wrapper and Interface Generator.
590590

@@ -611,7 +611,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
611611

612612
*Libraries for working with graphical user interface applications.*
613613

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.
615615
* [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.
616616
* [enaml](https://github.com/nucleic/enaml) - Creating beautiful user-interfaces with Declaratic Syntax like QML.
617617
* [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).
758758

759759
* [Eliot](https://github.com/ScatterHQ/eliot) - Logging for complex & distributed systems.
760760
* [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.
762762
* [raven](https://github.com/getsentry/raven-python) - Python client for Sentry, a log/error tracking, crash reporting and aggregation platform for web applications.
763763

764764
## Machine Learning
@@ -955,7 +955,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
955955
*RPC-compatible servers.*
956956

957957
* [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.
959959
* [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/).
960960

961961
## Science
@@ -1075,7 +1075,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
10751075
* [nose2](https://github.com/nose-devs/nose2) - The successor to nose, based on unittest2.
10761076
* [pytest](https://docs.pytest.org/en/latest/) - A mature full-featured Python testing tool.
10771077
* [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.
10791079
* Test Runners
10801080
* [green](https://github.com/CleanCut/green) - A clean, colorful test runner.
10811081
* [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).
11141114

11151115
* General
11161116
* [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.
11181118
* [ftfy](https://github.com/LuminosoInsight/python-ftfy) - Makes Unicode text less broken and more consistent automagically.
11191119
* [fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy) - Fuzzy String Matching.
11201120
* [Levenshtein](https://github.com/ztane/python-Levenshtein/) - Fast computation of Levenshtein distance and string similarity.

0 commit comments

Comments
 (0)