Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yara-python
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
yara-python
Commits
52db56fd
Commit
52db56fd
authored
Jun 15, 2016
by
plusvic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update project URLs
parent
6f1cac0e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
README.rst
README.rst
+5
-5
setup.py
setup.py
+1
-1
No files found.
README.rst
View file @
52db56fd
yara-python
yara-python
===========
===========
With this library you can use `YARA <https://github.com/
plusvic
/yara>`_ from
With this library you can use `YARA <https://github.com/
VirusTotal
/yara>`_ from
your Python programs. It covers all YARA's features, from compiling, saving
your Python programs. It covers all YARA's features, from compiling, saving
and loading rules to scanning files, strings and processes.
and loading rules to scanning files, strings and processes.
...
@@ -35,7 +35,7 @@ But you can also get the source from GitHub and compile it yourself:
...
@@ -35,7 +35,7 @@ But you can also get the source from GitHub and compile it yourself:
.. code-block:: bash
.. code-block:: bash
$ git clone --recursive https://github.com/
plusvic
/yara-python
$ git clone --recursive https://github.com/
VirusTotal
/yara-python
$ cd yara-python
$ cd yara-python
$ python setup.py build
$ python setup.py build
$ sudo python setup.py install
$ sudo python setup.py install
...
@@ -43,14 +43,15 @@ But you can also get the source from GitHub and compile it yourself:
...
@@ -43,14 +43,15 @@ But you can also get the source from GitHub and compile it yourself:
Notice the ``--recursive`` option used with ``git``. This is important because
Notice the ``--recursive`` option used with ``git``. This is important because
we need to download the ``yara`` subproject containing the source code for
we need to download the ``yara`` subproject containing the source code for
``libyara`` (the core YARA library). It's also important to note that the two
``libyara`` (the core YARA library). It's also important to note that the two
methods above link ``libyara`` statically into yara-python. If you want to link dynamically against a shared ``libyara`` library use:
methods above link ``libyara`` statically into yara-python. If you want to link
dynamically against a shared ``libyara`` library use:
.. code-block:: bash
.. code-block:: bash
$ sudo python setup.py install --dynamic-linking
$ sudo python setup.py install --dynamic-linking
For this option to work you must build and install
For this option to work you must build and install
[YARA](http://github.com/plusvic/yara)
separately before installing
`YARA <https://github.com/VirusTotal/yara>`_
separately before installing
``yara-python``.
``yara-python``.
...
@@ -59,4 +60,3 @@ Documentation
...
@@ -59,4 +60,3 @@ Documentation
Find more information about how to use yara-python at
Find more information about how to use yara-python at
http://yara.readthedocs.org/en/latest/yarapython.html.
http://yara.readthedocs.org/en/latest/yarapython.html.
setup.py
View file @
52db56fd
...
@@ -198,6 +198,6 @@ setup(
...
@@ -198,6 +198,6 @@ setup(
license
=
'Apache 2.0'
,
license
=
'Apache 2.0'
,
author
=
'Victor M. Alvarez'
,
author
=
'Victor M. Alvarez'
,
author_email
=
'plusvic@gmail.com;vmalvarez@virustotal.com'
,
author_email
=
'plusvic@gmail.com;vmalvarez@virustotal.com'
,
url
=
'https://github.com/
plusvic
/yara-python'
,
url
=
'https://github.com/
VirusTotal
/yara-python'
,
zip_safe
=
False
,
zip_safe
=
False
,
cmdclass
=
{
'build'
:
BuildCommand
})
cmdclass
=
{
'build'
:
BuildCommand
})
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