python-bindings

    3熱度

    3回答

    我想寫一個Cython擴展到CPython來包裝mcrypt庫,以便我可以在Python 3中使用它。但是,我遇到了一個問題,當我嘗試使用段錯誤其中一個mcrypt API。 發生故障的代碼是: def _real_encrypt(self, source): src_len = len(source) cdef char* ciphertext = source c

    3熱度

    1回答

    當你想從Python中調用C,你寫這樣的模塊: http://docs.python.org/extending/extending.html 現在,我有一個問題: 我想要寫在Python使用與C#模塊。 我該如何讓C#與本地Python進行交互? (注意:我對Python.NET或IronPython不感興趣)。