We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b7b2e6 commit 3c16492Copy full SHA for 3c16492
monary/monary.py
@@ -26,6 +26,8 @@ def _load_cmonary_lib():
26
abspath = os.path.abspath(thismodule)
27
moduledir = list(os.path.split(abspath))[:-1]
28
if platform.system() == 'Windows':
29
+ libbson = CDLL(os.path.join(*(moduledir + ['libbson-1.0.dll'])))
30
+ libcmongo = CDLL(os.path.join(*(moduledir + ['libmongoc-1.0.dll'])))
31
cmonary_fname = "libcmonary.dll"
32
else:
33
cmonary_fname = "libcmonary.so"
0 commit comments