使用cython保護python的代碼__python

來源:互聯網
上載者:User

用Python寫的程式一般都是源碼發布,那麼如果不想讓別人看到代碼內容話怎麼辦

第一種方法是把代碼編譯成位元組碼  也就是pyc檔案

執行:python -m py_compile <filename>.py


這種方法雖然也能隱藏源碼,但是其實是可以被反編譯的。


第二種方式是使用cython把python代碼轉成c語言代碼,然後編譯成可執行程式

方法:

先安裝cython

pip install cython

在安裝python開發包

centos 系統  :yum install python-devel

ubuntu系統: sudo apt-get install python-dev


把python代碼轉換成c代碼:

cython hello.py --embed

這樣會產生一個 hello.c的c語言的源檔案

然後使用gcc編譯成二進位可執行檔,這時候需要制定標頭檔、編譯選項、連結選項


centos系統: gcc `python-config --cflags` `python-config --ldflags` hello.c -o hello

如果python版本較高的話可以使用  gcc `python3-config --cflags --ldflags` hello.c -o hello


這樣代碼就被編譯成二進位的可執行程式了


連結錯誤的話試試:

gcc `python-config --cflags` -o hello hello.c  `python-config --ldflags`

reference:

如果提示串連錯誤,解決方案在這裡:http://stackoverflow.com/questions/13782618/python-py-initialize-unresolved-during-compilation



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.