capstone/bindings/python
2023-04-14 00:36:13 +08:00
..
capstone fix test_corpus.py 2023-04-14 00:36:13 +08:00
prebuilt Add ability to copy prebuilt libraries from prebuilt directory during python build 2017-03-04 17:09:07 -08:00
pyx Add post_index to python bindings 2022-11-22 22:25:49 +02:00
.gitignore Python: Make cython work with extreme prejudice 2016-10-25 21:49:58 -07:00
build_wheel.sh fix for python publish build 2022-02-27 23:31:51 +08: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 Allow to override PYTHON[23] in Makefiles (#1639) 2020-05-30 10:51:54 +08:00
MANIFEST.in Python: Clean up the capstone-windows stuff with extreme prejudice 2016-10-25 21:48:41 -07:00
README.txt Add option for inhibiting the core build while installing the python components. Add option for loading the core from a custom path. (#1089) 2018-02-20 21:12:46 +08:00
setup_cython.py fix python binding build 2023-03-07 12:03:47 +08:00
setup.py Remove outdated ctypes requirement 2022-08-24 11:29:48 -07:00
test_all.py RISCV support ISRV32/ISRV64 (#1401) 2019-03-09 08:41:12 +08:00
test_arm64.py Add post_index to python bindings 2022-11-22 22:25:49 +02:00
test_arm.py Add post_index to python bindings 2022-11-22 22:25:49 +02:00
test_basic.py fix python binding 2023-03-07 13:17:45 +08: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_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 Add Python test for CS_MODE_PS 2022-07-23 10:49:13 +02:00
test_riscv.py RISCV support ISRV32/ISRV64 (#1401) 2019-03-09 08:41:12 +08: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_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/aquynh/capstone and tag @rhelmot - she
will fix this, probably!

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

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.