Skip to main content

Calling routines in Windows DLLs from Python scripts running under Linux, MacOS or BSD

Project description

Build Status: master / release Documentation Status: master / release Build Status: development branch Documentation Status: development branch Project License: LGPLv2 Project Development Status Available on PyPi - the Python Package Index Available on PyPi - the Python Package Index

zugbruecke repository

Synopsis

zugbruecke is an EXPERIMENTAL Python module (currently in development status 3/alpha). It allows to call routines in Windows DLLs from Python code running on Unices / Unix-like systems such as Linux, MacOS or BSD. zugbruecke is designed as a drop-in replacement for Python’s standard library’s ctypes module. zugbruecke is built on top of Wine. A stand-alone Windows Python interpreter launched in the background is used to execute the called DLL routines. Communication between the Unix-side and the Windows/Wine-side is based on Python’s build-in multiprocessing connection capability. zugbruecke has (limited) support for pointers and struct types. zugbruecke comes with extensive logging features allowing to debug problems associated with both itself and with Wine. zugbruecke is written using Python 3 syntax and primarily targets the CPython implementation of Python.

About Wine (from winehq.org): Wine (originally an acronym for “Wine Is Not an Emulator”) is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, MacOS and BSD. Instead of simulating internal Windows logic like a virtual machine or emulator, Wine translates Windows API calls into POSIX calls on-the-fly, eliminating the performance and memory penalties of other methods and allowing you to cleanly integrate Windows applications into your desktop.

This project is NEITHER associated NOR affiliated in any way or form with the Wine project.

Prerequisites

for usage

  • CPython 3.x (tested with 3.{4,5,6}) - no additional Python packages required

  • Wine 2.x/3.x (tested with 2.{5 to 21} regular & staging) - expected to be in the user’s PATH

for tests

for documentation

Installation

master / release

Build Status: master / release

pip install zugbruecke

development branch

Build Status: development branch

pip install git+https://github.com/pleiszenburg/zugbruecke.git@develop

Examples

Start an interactive Python session under Unix and try the following:

from zugbruecke import cdll, c_double
dll_pow = cdll.msvcrt.pow
dll_pow.argtypes = (c_double, c_double)
dll_pow.restype = c_double
print('You should expect "1024.0" to show up here: "%.1f".' % dll_pow(2.0, 10.0))

You have just witnessed msvcrt.dll in action on Unix. Interested in more? Check the examples in zugbruecke’s documentation or read ctypes’ documentation.

A lot of code, which was written with ctypescdll, windll or oledll in mind and which runs under Windows, should run just fine with zugbruecke on Unix (assuming it does not use Windows features not supported by Wine).

Speed

zugbruecke performs reasonably well given its complexity with less than 0.2 µs overhead per call in average on modern hardware. It is not (yet) optimized for speed. Check the latest benchmarks for more details.

Security

zugbruecke is notoriously insecure. Never, ever, run it with root / super users privileges! Do not use it where security matters! For details, check the section on security in the documentation.

Need help?

Feel free to post questions in the GitHub issue tracker of this project.

Bugs & issues

Make sure you have read the chapter on bugs in zugbruecke’s documentation.

Miscellaneous

For production environments

DO NOT run this code (as-is) in production environments unless you feel that you really know what you are doing or unless you are absolutely desperate! Being experimental in nature and of alpha quality, it is prone to fail in a number of unpredictable ways, some of which might not be obvious or might not even show any (intermediately) recognizable symptoms at all! You might end up with plain wrong, nonsensical results without noticing it!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zugbruecke-0.0.7.tar.gz (33.6 kB view details)

Uploaded Source

Built Distribution

zugbruecke-0.0.7-py3-none-any.whl (65.2 kB view details)

Uploaded Python 3

File details

Details for the file zugbruecke-0.0.7.tar.gz.

File metadata

  • Download URL: zugbruecke-0.0.7.tar.gz
  • Upload date:
  • Size: 33.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for zugbruecke-0.0.7.tar.gz
Algorithm Hash digest
SHA256 fed50f02dc59c83c0e26eb86500777c149297f7b6ae153cb45c341635fa7752c
MD5 96d912ea30db3a7a4092f0a2ccb33ae4
BLAKE2b-256 1e7f9ece365cd580fa25150c1f73e900718cc9622f703bc7e1fc95319d403354

See more details on using hashes here.

File details

Details for the file zugbruecke-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for zugbruecke-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 fa50420c5dc23c1cfaecffa4868d6df40a30c304816ae4deb3faa661688a0be3
MD5 c5142a8dee247d22f507012b6ab2e350
BLAKE2b-256 7267205b2a82b8e87b80ff6b0d5fdd2df6de2cd833a88bc12d81f8b8d22eb401

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page