capstone/bindings/python
2023-09-05 12:24:59 +08:00
..
capstone Architecture updater (auto-sync) - Updating PPC (#2013) 2023-09-05 12:24:59 +08:00
prebuilt Add ability to copy prebuilt libraries from prebuilt directory during python build 2017-03-04 17:09:07 -08:00
pyx Architecture updater (auto-sync) - Updating PPC (#2013) 2023-09-05 12:24:59 +08:00
.gitignore Python: Make cython work with extreme prejudice 2016-10-25 21:49:58 -07:00
build_wheel.sh Bumb manylinux version to 2014 (x86) and 2_28 (x86_64) repectivly. 2023-07-19 11:13:25 -05:00
BUILDING.txt Rename test.c to test_basic.c with corresponding executable name change. (#923) 2017-05-11 22:58:12 +07:00
LICENSE.TXT python: add LICENSE & PKG-INFO for Python module 2015-01-30 14:45:58 +08:00
Makefile Add support for Python binding for diasm_iter (#2136) 2023-08-09 23:04:19 +08:00
MANIFEST.in Python: Clean up the capstone-windows stuff with extreme prejudice 2016-10-25 21:48:41 -07:00
README.txt python: update binding README 2023-07-06 00:03:39 +08:00
setup.py ci: use cibuildwheel for python wheels (#2099) 2023-07-21 23:15:46 +08:00
setup_cython.py Add Python bindings for SH 2023-07-24 05:44:48 +02:00
test_all.py RISCV support ISRV32/ISRV64 (#1401) 2019-03-09 08:41:12 +08:00
test_arm.py Fix ARM Python bindings (#2127) 2023-07-29 08:34:17 +08:00
test_arm64.py Add post_index to python bindings 2022-11-22 22:25:49 +02:00
test_basic.py Add Python bindings for WASM 2023-07-19 17:26:56 +02:00
test_bpf.py New architecture: BPF (#1388) 2019-02-18 17:39:51 +08:00
test_customized_mnem.py python: a minor fix for test_customized_mnem.py 2015-04-27 12:56:31 +08:00
test_detail.py M680X: Target ready for pull request (#1034) 2017-10-21 21:44:36 +08:00
test_evm.py add ci_test steps&&Fixed suite test for python3 2021-11-23 12:27:39 +08:00
test_iter.py Add support for Python binding for diasm_iter (#2136) 2023-08-09 23:04:19 +08:00
test_lite.py M680X: Target ready for pull request (#1034) 2017-10-21 21:44:36 +08:00
test_m68k.py M68K: Branch targets are a separate addressing mode; PC relative displacements printed as target addresses (#1068) 2018-01-06 20:13:41 +08:00
test_m680x.py M680X: Use same output style as other archs (#1439) 2019-03-22 11:07:15 +08:00
test_mips.py python: update Mips modes to CS_MODE_MIPS32 & CS_MODE_MIPS64 2014-11-13 11:42:38 +08:00
test_mos65xx.py updated 6502 support. (#1498) 2019-06-03 23:20:51 +08:00
test_ppc.py Architecture updater (auto-sync) - Updating PPC (#2013) 2023-09-05 12:24:59 +08:00
test_riscv.py RISCV support ISRV32/ISRV64 (#1401) 2019-03-09 08:41:12 +08:00
test_sh.py Add Python bindings for SH 2023-07-24 05:44:48 +02:00
test_skipdata.py python: temporarily comment out skipdata setup, which is still broken on MacOS. #1316 2019-01-02 10:11:48 +08:00
test_sparc.py python: clean up test_*.py 2015-04-27 11:51:48 +08:00
test_systemz.py python: clean up test_*.py 2015-04-27 11:51:48 +08:00
test_tms320c64x.py Added support for the TMS320C64x architecture. 2017-04-14 17:00:40 +03:00
test_tricore.py Fix tricore python binding 2023-04-24 22:18:07 +08:00
test_wasm.py Add Python bindings for WASM 2023-07-19 17:26:56 +02:00
test_x86.py Add encoding field to cs_x86 in python bindings for consistency (#1834) 2022-01-28 10:21:39 +08:00
test_xcore.py python: clean up test_*.py 2015-04-27 11:51:48 +08:00
xprint.py python: support option CS_OPT_MNEMONIC 2015-04-27 11:34:44 +08:00

To install Capstone, you should run `pip install capstone`.

If you would like to build Capstone with just the source distribution, without
pip, just run `python setup.py install` in the folder with setup.py in it.

In order to use this source distribution, you will need an environment that can
compile C code. On Linux, this is usually easy, but on Windows, this involves
installing Visual Studio and using the "Developer Command Prompt" to perform the
installation. See BUILDING.txt for more information.

By default, attempting to install the python bindings will trigger a build of
the capstone native core. If this is undesirable for whatever reason, for
instance, you already have a globally installed copy of libcapstone, you may
inhibit the build by setting the environment variable LIBCAPSTONE_PATH. The
exact value is not checked, just setting it will inhibit the build. During
execution, this variable may be set to the path of a directory containing a
specific version of libcapstone you would like to use.

If you don't want to build your own copy of Capstone, you can use a precompiled
binary distribution from PyPI. Saying `pip install capstone` should
automatically obtain an appropriate copy for your system. If it does not, please
open an issue at https://github.com/capstone-engine/capstone.

--------------------------------------------------------------------------------

Capstone is a disassembly framework with the target of becoming the ultimate
disasm engine for binary analysis and reversing in the security community.

Created by Nguyen Anh Quynh, then developed and maintained by a small community,
Capstone offers some unparalleled features:

- Support multiple hardware architectures: ARM, ARM64 (ARMv8), Mips, PPC, Sparc,
  SystemZ, XCore and X86 (including X86_64).

- Having clean/simple/lightweight/intuitive architecture-neutral API.

- Provide details on disassembled instruction (called “decomposer” by others).

- Provide semantics of the disassembled instruction, such as list of implicit
  registers read & written.

- Implemented in pure C language, with lightweight wrappers for C++, C#, Go,
  Java, NodeJS, Ocaml, Python, Ruby & Vala ready (available in main code,
  or provided externally by the community).

- Native support for all popular platforms: Windows, Mac OSX, iOS, Android,
  Linux, *BSD, Solaris, etc.

- Thread-safe by design.

- Special support for embedding into firmware or OS kernel.

- High performance & suitable for malware analysis (capable of handling various
  X86 malware tricks).

- Distributed under the open source BSD license.

Further information is available at http://www.capstone-engine.org


[License]

This project is released under the BSD license. If you redistribute the binary
or source code of Capstone, please attach file LICENSE.TXT with your products.