Snap7-python Windows 7 64 bit










1














I try to install snap7 to communicate with s7-1200. I downloaded latest package (1.4.1) I cannot find dll that specified for 64 bit windows OS. I used pip3 command to install it and everything was fine.



I wrote this simple code with PyQt5 and snap7 library:



# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'f.ui'
#
# Created by: PyQt5 UI code generator 5.11.3
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets
import snap7 as c
from snap7.util import *
from snap7.snap7types import *

class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(800, 600)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.pushButton = QtWidgets.QPushButton(self.centralwidget)
self.pushButton.setGeometry(QtCore.QRect(280, 230, 75, 71))
self.pushButton.setObjectName("pushButton")
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
self.menubar.setObjectName("menubar")
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtWidgets.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)

self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)

def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.pushButton.setText(_translate("MainWindow", "PushButton"))


if __name__ == "__main__":
import sys
plc = c.client.Client()
plc.connect('192.168.137.100',0,1)
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
MainWindow.show()
sys.exit(app.exec_())


When i added plc = c.Client() and another snippets that contains "plc" i am getting this error :
Traceback (most recent call last):



 File "C:PythonLibsite-packagessnap7f.py", line 43, in <module>
plc = c.client.Client()
File "C:Pythonlibsite-packagessnap7client.py", line 37, in __init__
self.library = load_library()
File "C:Pythonlibsite-packagessnap7common.py", line 54, in load_library
return Snap7Library(lib_location).cdll
File "C:Pythonlibsite-packagessnap7common.py", line 47, in __init__
self.cdll = cdll.LoadLibrary(self.lib_location)
File "C:Pythonlibctypes__init__.py", line 434, in LoadLibrary
return self._dlltype(name)
File "C:Pythonlibctypes__init__.py", line 356, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] The specified module could not be found


Do you have any solution or way to eliminate this? I cannot understand the point or points that i missed.



Regards.










share|improve this question


























    1














    I try to install snap7 to communicate with s7-1200. I downloaded latest package (1.4.1) I cannot find dll that specified for 64 bit windows OS. I used pip3 command to install it and everything was fine.



    I wrote this simple code with PyQt5 and snap7 library:



    # -*- coding: utf-8 -*-

    # Form implementation generated from reading ui file 'f.ui'
    #
    # Created by: PyQt5 UI code generator 5.11.3
    #
    # WARNING! All changes made in this file will be lost!

    from PyQt5 import QtCore, QtGui, QtWidgets
    import snap7 as c
    from snap7.util import *
    from snap7.snap7types import *

    class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
    MainWindow.setObjectName("MainWindow")
    MainWindow.resize(800, 600)
    self.centralwidget = QtWidgets.QWidget(MainWindow)
    self.centralwidget.setObjectName("centralwidget")
    self.pushButton = QtWidgets.QPushButton(self.centralwidget)
    self.pushButton.setGeometry(QtCore.QRect(280, 230, 75, 71))
    self.pushButton.setObjectName("pushButton")
    MainWindow.setCentralWidget(self.centralwidget)
    self.menubar = QtWidgets.QMenuBar(MainWindow)
    self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
    self.menubar.setObjectName("menubar")
    MainWindow.setMenuBar(self.menubar)
    self.statusbar = QtWidgets.QStatusBar(MainWindow)
    self.statusbar.setObjectName("statusbar")
    MainWindow.setStatusBar(self.statusbar)

    self.retranslateUi(MainWindow)
    QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
    _translate = QtCore.QCoreApplication.translate
    MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
    self.pushButton.setText(_translate("MainWindow", "PushButton"))


    if __name__ == "__main__":
    import sys
    plc = c.client.Client()
    plc.connect('192.168.137.100',0,1)
    app = QtWidgets.QApplication(sys.argv)
    MainWindow = QtWidgets.QMainWindow()
    ui = Ui_MainWindow()
    ui.setupUi(MainWindow)
    MainWindow.show()
    sys.exit(app.exec_())


    When i added plc = c.Client() and another snippets that contains "plc" i am getting this error :
    Traceback (most recent call last):



     File "C:PythonLibsite-packagessnap7f.py", line 43, in <module>
    plc = c.client.Client()
    File "C:Pythonlibsite-packagessnap7client.py", line 37, in __init__
    self.library = load_library()
    File "C:Pythonlibsite-packagessnap7common.py", line 54, in load_library
    return Snap7Library(lib_location).cdll
    File "C:Pythonlibsite-packagessnap7common.py", line 47, in __init__
    self.cdll = cdll.LoadLibrary(self.lib_location)
    File "C:Pythonlibctypes__init__.py", line 434, in LoadLibrary
    return self._dlltype(name)
    File "C:Pythonlibctypes__init__.py", line 356, in __init__
    self._handle = _dlopen(self._name, mode)
    OSError: [WinError 126] The specified module could not be found


    Do you have any solution or way to eliminate this? I cannot understand the point or points that i missed.



    Regards.










    share|improve this question
























      1












      1








      1







      I try to install snap7 to communicate with s7-1200. I downloaded latest package (1.4.1) I cannot find dll that specified for 64 bit windows OS. I used pip3 command to install it and everything was fine.



      I wrote this simple code with PyQt5 and snap7 library:



      # -*- coding: utf-8 -*-

      # Form implementation generated from reading ui file 'f.ui'
      #
      # Created by: PyQt5 UI code generator 5.11.3
      #
      # WARNING! All changes made in this file will be lost!

      from PyQt5 import QtCore, QtGui, QtWidgets
      import snap7 as c
      from snap7.util import *
      from snap7.snap7types import *

      class Ui_MainWindow(object):
      def setupUi(self, MainWindow):
      MainWindow.setObjectName("MainWindow")
      MainWindow.resize(800, 600)
      self.centralwidget = QtWidgets.QWidget(MainWindow)
      self.centralwidget.setObjectName("centralwidget")
      self.pushButton = QtWidgets.QPushButton(self.centralwidget)
      self.pushButton.setGeometry(QtCore.QRect(280, 230, 75, 71))
      self.pushButton.setObjectName("pushButton")
      MainWindow.setCentralWidget(self.centralwidget)
      self.menubar = QtWidgets.QMenuBar(MainWindow)
      self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
      self.menubar.setObjectName("menubar")
      MainWindow.setMenuBar(self.menubar)
      self.statusbar = QtWidgets.QStatusBar(MainWindow)
      self.statusbar.setObjectName("statusbar")
      MainWindow.setStatusBar(self.statusbar)

      self.retranslateUi(MainWindow)
      QtCore.QMetaObject.connectSlotsByName(MainWindow)

      def retranslateUi(self, MainWindow):
      _translate = QtCore.QCoreApplication.translate
      MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
      self.pushButton.setText(_translate("MainWindow", "PushButton"))


      if __name__ == "__main__":
      import sys
      plc = c.client.Client()
      plc.connect('192.168.137.100',0,1)
      app = QtWidgets.QApplication(sys.argv)
      MainWindow = QtWidgets.QMainWindow()
      ui = Ui_MainWindow()
      ui.setupUi(MainWindow)
      MainWindow.show()
      sys.exit(app.exec_())


      When i added plc = c.Client() and another snippets that contains "plc" i am getting this error :
      Traceback (most recent call last):



       File "C:PythonLibsite-packagessnap7f.py", line 43, in <module>
      plc = c.client.Client()
      File "C:Pythonlibsite-packagessnap7client.py", line 37, in __init__
      self.library = load_library()
      File "C:Pythonlibsite-packagessnap7common.py", line 54, in load_library
      return Snap7Library(lib_location).cdll
      File "C:Pythonlibsite-packagessnap7common.py", line 47, in __init__
      self.cdll = cdll.LoadLibrary(self.lib_location)
      File "C:Pythonlibctypes__init__.py", line 434, in LoadLibrary
      return self._dlltype(name)
      File "C:Pythonlibctypes__init__.py", line 356, in __init__
      self._handle = _dlopen(self._name, mode)
      OSError: [WinError 126] The specified module could not be found


      Do you have any solution or way to eliminate this? I cannot understand the point or points that i missed.



      Regards.










      share|improve this question













      I try to install snap7 to communicate with s7-1200. I downloaded latest package (1.4.1) I cannot find dll that specified for 64 bit windows OS. I used pip3 command to install it and everything was fine.



      I wrote this simple code with PyQt5 and snap7 library:



      # -*- coding: utf-8 -*-

      # Form implementation generated from reading ui file 'f.ui'
      #
      # Created by: PyQt5 UI code generator 5.11.3
      #
      # WARNING! All changes made in this file will be lost!

      from PyQt5 import QtCore, QtGui, QtWidgets
      import snap7 as c
      from snap7.util import *
      from snap7.snap7types import *

      class Ui_MainWindow(object):
      def setupUi(self, MainWindow):
      MainWindow.setObjectName("MainWindow")
      MainWindow.resize(800, 600)
      self.centralwidget = QtWidgets.QWidget(MainWindow)
      self.centralwidget.setObjectName("centralwidget")
      self.pushButton = QtWidgets.QPushButton(self.centralwidget)
      self.pushButton.setGeometry(QtCore.QRect(280, 230, 75, 71))
      self.pushButton.setObjectName("pushButton")
      MainWindow.setCentralWidget(self.centralwidget)
      self.menubar = QtWidgets.QMenuBar(MainWindow)
      self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
      self.menubar.setObjectName("menubar")
      MainWindow.setMenuBar(self.menubar)
      self.statusbar = QtWidgets.QStatusBar(MainWindow)
      self.statusbar.setObjectName("statusbar")
      MainWindow.setStatusBar(self.statusbar)

      self.retranslateUi(MainWindow)
      QtCore.QMetaObject.connectSlotsByName(MainWindow)

      def retranslateUi(self, MainWindow):
      _translate = QtCore.QCoreApplication.translate
      MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
      self.pushButton.setText(_translate("MainWindow", "PushButton"))


      if __name__ == "__main__":
      import sys
      plc = c.client.Client()
      plc.connect('192.168.137.100',0,1)
      app = QtWidgets.QApplication(sys.argv)
      MainWindow = QtWidgets.QMainWindow()
      ui = Ui_MainWindow()
      ui.setupUi(MainWindow)
      MainWindow.show()
      sys.exit(app.exec_())


      When i added plc = c.Client() and another snippets that contains "plc" i am getting this error :
      Traceback (most recent call last):



       File "C:PythonLibsite-packagessnap7f.py", line 43, in <module>
      plc = c.client.Client()
      File "C:Pythonlibsite-packagessnap7client.py", line 37, in __init__
      self.library = load_library()
      File "C:Pythonlibsite-packagessnap7common.py", line 54, in load_library
      return Snap7Library(lib_location).cdll
      File "C:Pythonlibsite-packagessnap7common.py", line 47, in __init__
      self.cdll = cdll.LoadLibrary(self.lib_location)
      File "C:Pythonlibctypes__init__.py", line 434, in LoadLibrary
      return self._dlltype(name)
      File "C:Pythonlibctypes__init__.py", line 356, in __init__
      self._handle = _dlopen(self._name, mode)
      OSError: [WinError 126] The specified module could not be found


      Do you have any solution or way to eliminate this? I cannot understand the point or points that i missed.



      Regards.







      python-3.x windows-7-x64 snap7






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 '18 at 16:17









      Dogan CignakliDogan Cignakli

      84




      84






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240890%2fsnap7-python-windows-7-64-bit%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240890%2fsnap7-python-windows-7-64-bit%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

          Edmonton

          Crossroads (UK TV series)