Skip to content

Commit c590531

Browse files
authored
use https for links (#370)
* use https for links * Update README.rst
1 parent ff47adc commit c590531

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ with Siemens S7 PLCs.
77

88
Python-snap7 is tested with Python 3.7+, on Windows, Linux and OS X.
99

10-
The full documentation is available on `Read The Docs <http://python-snap7.readthedocs.org/en/latest/>`_.
10+
The full documentation is available on `Read The Docs <https://python-snap7.readthedocs.io/en/latest/>`_.
1111

1212

1313
Installation
@@ -18,7 +18,7 @@ If you are running Windows 10, Mac OS X or GNU/Linux on an Intel x64 compatible
1818
$ pip install python-snap7
1919

2020

21-
Ofterwise, please read the `online installation documentation <http://python-snap7.readthedocs.org/en/latest/installation.html>`_.
21+
Ofterwise, please read the `online installation documentation <https://python-snap7.readthedocs.io/en/latest/installation.html>`_.
2222

2323

2424
Credits

doc/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Windows
3333
~~~~~~~
3434

3535
Download the zip file from the
36-
`sourceforce page <http://sourceforge.net/projects/snap7/files/>`_.
36+
`sourceforce page <https://sourceforge.net/projects/snap7/files/>`_.
3737
Unzip the zip file, and copy ``release\\Windows\\Win64\\snap7.dll`` somewhere
3838
in your system PATH, for example ``%systemroot%\System32\``. Alternatively you can
3939
copy the file somewhere on your file system and adjust the system PATH.
@@ -50,15 +50,15 @@ Compile from source
5050
~~~~~~~~~~~~~~~~~~~
5151

5252
Download the latest source from
53-
`the sourceforce page <http://sourceforge.net/projects/snap7/files/>`_ and do
53+
`the sourceforce page <https://sourceforge.net/projects/snap7/files/>`_ and do
5454
a manual compile. Download the file and run::
5555

5656
$ p7zip -d snap7-full-1.0.0.7z # requires the p7 program
5757
$ cd build/<platform> # where platform is unix or windows
5858
$ make -f <arch>.mk install # where arch is your architecture, for example x86_64_linux
5959

6060
For more information about or help with compilation please check out the
61-
documentation on the `snap7 website <http://snap7.sourceforge.net/>`_.
61+
documentation on the `snap7 website <https://snap7.sourceforge.net/>`_.
6262

6363

6464
Python-Snap7

doc/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Introduction
22
============
33

44
python-snap7 is a Python wrapper for the
5-
`Snap7 library <http://snap7.sourceforge.net>`_. Snap7 is an open source,
5+
`Snap7 library <https://snap7.sourceforge.net>`_. Snap7 is an open source,
66
32/64 bit, multi-platform Ethernet communication suite for interfacing natively
77
with Siemens S7 PLCs.
88

example/logo_7_8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import snap7
44

55
# for setup the Logo connection please follow this link
6-
# http://snap7.sourceforge.net/logo.html
6+
# https://snap7.sourceforge.net/logo.html
77

88

99
logging.basicConfig(level=logging.INFO)

snap7/logo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def connect(self, ip_address: str, tsap_snap7: int, tsap_logo: int, tcpport: int
6767
"""Connect to a Siemens LOGO server.
6868
6969
Notes:
70-
Howto setup Logo communication configuration see: http://snap7.sourceforge.net/logo.html
70+
Howto setup Logo communication configuration see: https://snap7.sourceforge.net/logo.html
7171
7272
Args:
7373
ip_address: IP ip_address of server

0 commit comments

Comments
 (0)