https://github.com/frida/frida-python
Frida Python bindings
https://github.com/frida/frida-python
Last synced: 8 days ago
JSON representation
Frida Python bindings
- Host: GitHub
- URL: https://github.com/frida/frida-python
- Owner: frida
- License: other
- Created: 2013-04-13T19:52:53.000Z (about 12 years ago)
- Default Branch: main
- Last Pushed: 2025-06-23T16:44:32.000Z (11 days ago)
- Last Synced: 2025-06-23T17:44:47.487Z (11 days ago)
- Language: C
- Homepage:
- Size: 1.68 MB
- Stars: 815
- Watchers: 33
- Forks: 151
- Open Issues: 55
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
- awesome-rainmana - frida/frida-python - Frida Python bindings (C)
README
# frida-python
Python bindings for [Frida](https://frida.re).
# Some tips during development
To build and test your own wheel, do something along the following lines:
```
set FRIDA_VERSION=16.0.1-dev.7 # from C:\src\frida\build\tmp-windows\frida-version.h
set FRIDA_EXTENSION=C:\src\frida\build\frida-windows\x64-Release\lib\python3.10\site-packages\_frida.pyd
cd C:\src\frida\frida-python\
pip wheel .
pip uninstall frida
pip install frida-16.0.1.dev7-cp34-abi3-win_amd64.whl
```