pyd Questions
4
Solved
I am using PyCharm. I have a python script in the following location:
C:\Users\XYZ\PycharmProjects\Project1\playground.py
playground.py only has a line of code as shown below:
import PyTbl
In...
1
Solved
On Windows, when we try to import a .pyd file, and a DLL that the .pyd depends on cannot be found, we get this traceback:
Traceback (most recent call last):
...
ImportError: DLL load failed: The s...
1
I am trying to figure out the best way to decompile a python .pyd file. Everywhere I look I am coming up with dead ends. There seems to be no program to do this, except for 'Antifreeze' by Aaron Po...
2
Solved
Are there any ways to decompile a dll and/or a .pyd file in order to extract source code written in Python?
Thanks in advance
Coastguardsman asked 24/2, 2016 at 11:42
2
I'm trying to build the setup.py package for my Python 3.4 app which contains a Cython module. My plan is to have a setup.py file which requires Cython and compiles the .pyx file with the idea that...
Atthia asked 19/2, 2016 at 4:53
1
I have a python module module.pyd that works pretty fine once it is put manually onto the site-packages of python installation folder.
The problem starts when I upload my solution to a cloud envi...
Woodcut asked 4/5, 2016 at 14:59
2
Solved
After reading How do I protect Python code? , I decided to try a really simple extension module on Windows. I compiled my own extension module on Linux before, but this is the first time I compiled...
Dam asked 22/8, 2012 at 14:10
4
Solved
I have a Python extension written in C and I wonder if I should use the file extension DLL or PYD under Windows. (And what would I use in Linux?)
Are there any differences (besides the filename)?
...
Takeover asked 24/11, 2011 at 22:3
3
Solved
I am trying to load a *.pyd with Python, but I receive the well known "Import Error: DLL load failed: the specified procedure can not be found." error.
I have already done the following:
1.) Inve...
4
One of the modules for my app uses functions from a .pyd file. There's an option to exclude dlls (exclude_dlls) but is there one for including them? The build process doesn't seem to be copying the...
Dubbin asked 21/10, 2008 at 4:40
1
© 2022 - 2024 — McMap. All rights reserved.