File tree Expand file tree Collapse file tree 14 files changed +33
-33
lines changed Expand file tree Collapse file tree 14 files changed +33
-33
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ <h3>Useful Links</h3>
60
60
< h3 > Translations</ h3 >
61
61
< ul >
62
62
< li > < a href ="http://docs.python-guide.org/en/latest/ "> English</ a > </ li >
63
- < li > < a href ="http ://python-guide-fr.readthedocs.io/fr/latest/ "> French</ a > </ li >
64
- < li > < a href ="http ://pythonguidecn.readthedocs.org /zh/latest/ "> Chinese</ a > </ li >
65
- < li > < a href ="http ://python-guide-ja.readthedocs.org /en/latest/ "> Japanese</ a > </ li >
66
- < li > < a href ="http ://python-guide-kr.readthedocs.org /ko/latest/ "> Korean</ a > </ li >
63
+ < li > < a href ="https ://python-guide-fr.readthedocs.io/fr/latest/ "> French</ a > </ li >
64
+ < li > < a href ="https ://pythonguidecn.readthedocs.io /zh/latest/ "> Chinese</ a > </ li >
65
+ < li > < a href ="https ://python-guide-ja.readthedocs.io /en/latest/ "> Japanese</ a > </ li >
66
+ < li > < a href ="https ://python-guide-kr.readthedocs.io /ko/latest/ "> Korean</ a > </ li >
67
67
</ ul >
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ <h3>Other Projects</h3>
42
42
< h3 > Translations</ h3 >
43
43
< ul >
44
44
< li > < a href ="http://docs.python-guide.org/en/latest/ "> English</ a > </ li >
45
- < li > < a href ="http ://python-guide-fr.readthedocs.io/fr/latest/ "> French</ a > </ li >
46
- < li > < a href ="http ://pythonguidecn.readthedocs.org /zh/latest/ "> Chinese</ a > </ li >
47
- < li > < a href ="http ://python-guide-ja.readthedocs.org /en/latest/ "> Japanese</ a > </ li >
48
- < li > < a href ="http ://python-guide-kr.readthedocs.org /ko/latest/ "> Korean</ a > </ li >
45
+ < li > < a href ="https ://python-guide-fr.readthedocs.io/fr/latest/ "> French</ a > </ li >
46
+ < li > < a href ="https ://pythonguidecn.readthedocs.io /zh/latest/ "> Chinese</ a > </ li >
47
+ < li > < a href ="https ://python-guide-ja.readthedocs.io /en/latest/ "> Japanese</ a > </ li >
48
+ < li > < a href ="https ://python-guide-kr.readthedocs.io /ko/latest/ "> Korean</ a > </ li >
49
49
</ ul >
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ control by adding it to the ignore list.
122
122
virtualenvwrapper
123
123
-----------------
124
124
125
- `virtualenvwrapper <http ://virtualenvwrapper.readthedocs.org /en/latest/index.html >`_
125
+ `virtualenvwrapper <https ://virtualenvwrapper.readthedocs.io /en/latest/index.html >`_
126
126
provides a set of commands which makes working with virtual environments much
127
127
more pleasant. It also places all your virtual environments in one place.
128
128
@@ -134,7 +134,7 @@ To install (make sure **virtualenv** is already installed):
134
134
$ export WORKON_HOME=~/Envs
135
135
$ source /usr/local/bin/virtualenvwrapper.sh
136
136
137
- (`Full virtualenvwrapper install instructions <http ://virtualenvwrapper.readthedocs.org /en/latest/install.html >`_.)
137
+ (`Full virtualenvwrapper install instructions <https ://virtualenvwrapper.readthedocs.io /en/latest/install.html >`_.)
138
138
139
139
For Windows, you can use the `virtualenvwrapper-win <https://github.com/davidmarble/virtualenvwrapper-win/ >`_.
140
140
@@ -206,7 +206,7 @@ Other useful commands
206
206
``lssitepackages ``
207
207
Shows contents of :file: `site-packages ` directory.
208
208
209
- `Full list of virtualenvwrapper commands <http ://virtualenvwrapper.readthedocs.org /en/latest/command_ref.html >`_.
209
+ `Full list of virtualenvwrapper commands <https ://virtualenvwrapper.readthedocs.io /en/latest/command_ref.html >`_.
210
210
211
211
virtualenv-burrito
212
212
------------------
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ without having to install Python locally.
38
38
If you want a more traditional book, *Python For You and Me * is an excellent
39
39
resource for learning all aspects of the language.
40
40
41
- `Python for You and Me <http ://pymbook.readthedocs.org / >`_
41
+ `Python for You and Me <https ://pymbook.readthedocs.io / >`_
42
42
43
43
Online Python Tutor
44
44
~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ automate the compile/test cycle to validate code changes.
35
35
Tox
36
36
---
37
37
38
- `tox <http ://tox.readthedocs.org /en/latest/ >`_ is an automation tool providing
38
+ `tox <https ://tox.readthedocs.io /en/latest/ >`_ is an automation tool providing
39
39
packaging, testing and deployment of Python software right from the console or
40
40
CI server. It is a generic virtualenv management and test command line tool
41
41
which provides the following features:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Interfacing with C/C++ Libraries
4
4
C Foreign Function Interface
5
5
----------------------------
6
6
7
- `CFFI <https://cffi.readthedocs.org /en/latest/ >`_ provides a simple to use
7
+ `CFFI <https://cffi.readthedocs.io /en/latest/ >`_ provides a simple to use
8
8
mechanism for interfacing with C from both CPython and PyPy. It supports two
9
9
modes: an inline ABI compatibility mode (example provided below), which allows
10
10
you to dynamically load and run functions from executable modules (essentially
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ peewee
60
60
`peewee <http://docs.peewee-orm.com/en/latest/ >`_ is another ORM with a focus
61
61
on being lightweight with support for Python 2.6+ and 3.2+ which supports
62
62
SQLite, MySQL and Postgres by default. The
63
- `model layer <https://peewee.readthedocs.org /en/latest/peewee/quickstart.html#model-definition >`_
63
+ `model layer <https://peewee.readthedocs.io /en/latest/peewee/quickstart.html#model-definition >`_
64
64
is similar to that of the Django ORM and it has
65
- `SQL-like methods <https://peewee.readthedocs.org /en/latest/peewee/quickstart.html#retrieving-data >`_
65
+ `SQL-like methods <https://peewee.readthedocs.io /en/latest/peewee/quickstart.html#retrieving-data >`_
66
66
to query data. While SQLite, MySQL and Postgres are supported out-of-the-box,
67
- there is a `collection of add-ons <https://peewee.readthedocs.org /en/latest/peewee/playhouse.html#playhouse >`_
67
+ there is a `collection of add-ons <https://peewee.readthedocs.io /en/latest/peewee/playhouse.html#playhouse >`_
68
68
available.
69
69
70
70
PonyORM
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ applications be ported from PyGTK to PyGObject.
28
28
PyGObject aka (PyGi)
29
29
--------------------
30
30
`PyGObject <https://wiki.gnome.org/Projects/PyGObject >`_ provides Python bindings, which gives access to the entire GNOME software platform.
31
- It is fully compatible with GTK+ 3. Here is a tutorial to get started with `Python GTK+ 3 Tutorial <http ://python-gtk-3-tutorial.readthedocs.org /en/latest/ >`_.
31
+ It is fully compatible with GTK+ 3. Here is a tutorial to get started with `Python GTK+ 3 Tutorial <https ://python-gtk-3-tutorial.readthedocs.io /en/latest/ >`_.
32
32
33
33
`API Reference <http://lazka.github.io/pgi-docs/ >`_
34
34
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Installation
24
24
25
25
Before installing Pillow, you'll have to install Pillow's prerequisites. Find
26
26
the instructions for your platform in the
27
- `Pillow installation instructions <https://pillow.readthedocs.org /en/3.0.0/installation.html >`_.
27
+ `Pillow installation instructions <https://pillow.readthedocs.io /en/3.0.0/installation.html >`_.
28
28
29
29
After that, it's straightforward:
30
30
@@ -57,7 +57,7 @@ Example
57
57
exif_data
58
58
59
59
There are more examples of the Pillow library in the
60
- `Pillow tutorial <http ://pillow.readthedocs.org /en/3.0.x/handbook/tutorial.html >`_.
60
+ `Pillow tutorial <https ://pillow.readthedocs.io /en/3.0.x/handbook/tutorial.html >`_.
61
61
62
62
63
63
OpenSource Computer Vision
@@ -104,4 +104,4 @@ Example
104
104
105
105
There are more Python-implemented examples of OpenCV in this `collection of
106
106
tutorials
107
- <http ://opencv-python-tutroals.readthedocs.org /en/latest/py_tutorials/py_tutorials.html> `_.
107
+ <https ://opencv-python-tutroals.readthedocs.io /en/latest/py_tutorials/py_tutorials.html> `_.
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ simplejson
47
47
48
48
The JSON library was added to Python in version 2.6.
49
49
If you're using an earlier version of Python, the
50
- `simplejson <https://simplejson.readthedocs.org /en/latest/ >`_ library is
50
+ `simplejson <https://simplejson.readthedocs.io /en/latest/ >`_ library is
51
51
available via PyPI.
52
52
53
53
simplejson mimics the json standard library. It is available so that developers
You can’t perform that action at this time.
0 commit comments