Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyrasite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
pyrasite
Commits
ce4cbbca
Commit
ce4cbbca
authored
Mar 13, 2012
by
Luke Macken
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop'
parents
220f29c3
3a981689
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
README.rst
README.rst
+6
-1
pyrasite/__init__.py
pyrasite/__init__.py
+1
-1
setup.py
setup.py
+7
-1
No files found.
README.rst
View file @
ce4cbbca
...
...
@@ -3,12 +3,17 @@ pyrasite
.. split here
Injects code into a running Python process.
Pyrasite lets you to inject arbitrary code into an unaltered running Python
process.
It also contains a graphical interface that makes it easy to monitor and
introspect running processes.
Requirements
~~~~~~~~~~~~
- gdb (https://www.gnu.org/s/gdb) (version 7.3+)
- python-gobject-dev (on debian or ubuntu: apt-get install python-gobject-dev)
- Cython (http://cython.org)
- meliae (https://launchpad.net/meliae)
- easy_install/pip may not work for this install. If not, use the tarball from the distribution website
...
...
pyrasite/__init__.py
View file @
ce4cbbca
...
...
@@ -3,7 +3,7 @@ from .inspect import ObjectInspector
from
.ipc
import
PyrasiteIPC
from
.reverse
import
ReverseConnection
,
ReversePythonConnection
__version__
=
'2.0beta'
__version__
=
'2.0beta
2
'
__all__
=
(
'CodeInjector'
,
'ObjectInspector'
,
'PyrasiteIPC'
,
'ReverseConnection'
,
'ReversePythonConnection'
)
__license__
=
"""
\
...
...
setup.py
View file @
ce4cbbca
from
setuptools
import
setup
,
find_packages
version
=
'2.0beta'
version
=
'2.0beta
2
'
f
=
open
(
'README.rst'
)
long_description
=
f
.
read
().
split
(
'split here'
)[
1
]
...
...
@@ -12,6 +12,12 @@ except ImportError:
print
"We require meliae to be installed."
exit
(
1
)
try
:
from
gi.repository
import
GLib
,
GObject
,
Pango
,
Gtk
,
WebKit
except
ImportError
:
print
"We require python-gobject-dev installed. Use: apt-get install python-gobject-dev"
exit
(
1
)
setup
(
name
=
'pyrasite'
,
version
=
version
,
description
=
"Inject code into a running Python process"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment