mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
72899a4315
Most use-cases will need to use some JS API that we're not bridging, so it's better to keep our bindings simple. It has also become clear that our CLI tools should be split out so Frida-based tools don't have to depend on colorama, prompt_toolkit, and pygments.
17 lines
510 B
Markdown
17 lines
510 B
Markdown
# frida-python
|
|
|
|
Python bindings for [Frida](http://www.frida.re).
|
|
|
|
# Some tips during development
|
|
|
|
To build and test your own egg, do something along the following lines:
|
|
|
|
```
|
|
set FRIDA_VERSION=12.0.0.10.gd7c36fc # from C:\src\frida\build\tmp-windows\frida-version.h
|
|
set FRIDA_EXTENSION=C:\src\frida\build\frida-windows\Win32-Debug\lib\python2.7\site-packages\_frida.pyd
|
|
cd C:\src\frida\frida-python\
|
|
python setup.py bdist_egg
|
|
pip uninstall frida
|
|
easy_install dist\frida-12.0.0.10.gd7c36fc-py2.7-win32.egg
|
|
```
|