how to read .pyd file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vish91619
    New Member
    • Dec 2009
    • 3

    how to read .pyd file

    hi all.....
    I m new to python coding....
    I should read and understand the code given to me before making that code a more generalized one...for that one of the functions in the code is defined in .pyd file which is imported into the code. I need to read the .pyd file . Can anyone help me with this???

    or how these .pyd files are created???

    Thanks in advance...
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    The extension .pyd is used for Python extension modules. This type of file is in a DLL format. I don't know of a way to read it.

    Comment

    • vish91619
      New Member
      • Dec 2009
      • 3

      #3
      yeah its a kind of DLL but how is this file created ??
      how can u create .pyd files??

      thanks for u r reply

      Comment

      • bvdet
        Recognized Expert Specialist
        • Oct 2006
        • 2851

        #4
        A pyd file is created from compiled code written in the low-level language of the Python implementation, which is C/C++ for Python.

        Comment

        • vish91619
          New Member
          • Dec 2009
          • 3

          #5
          thanks for the update..

          can u plz tell me the steps in creating ???
          I just need to generate a .pyd file...

          Comment

          • Glenton
            Recognized Expert Contributor
            • Nov 2008
            • 391

            #6
            Is it this http://pyd.dsource.org/ that you're looking for?

            Chances are that it will be difficult to back out the source code from the compiled file. Otherwise everything would be open source!!

            Comment

            Working...