Poulpe Documentation. Release Edouard Klein

Similar documents
Python Project Example Documentation

Roman Numeral Converter Documentation

chatterbot-weather Documentation

Python wrapper for Viscosity.app Documentation

TPS Documentation. Release Thomas Roten

I2C LCD Documentation

Aircrack-ng python bindings Documentation

Python simple arp table reader Documentation

sainsmart Documentation

PyCRC Documentation. Release 1.0

Simple libtorrent streaming module Documentation

Release Nicholas A. Del Grosso

django-idioticon Documentation

google-search Documentation

DNS Zone Test Documentation

django-reinhardt Documentation

Redis Timeseries Documentation

django-cas Documentation

Django Wordpress API Documentation

Release Fulfil.IO Inc.

Simple Binary Search Tree Documentation

Python Schema Generator Documentation

Game Server Manager Documentation

Google Domain Shared Contacts Client Documentation

OpenUpgrade Library Documentation

Pykemon Documentation

smartfilesorter Documentation

gunny Documentation Release David Blewett

Frontier Documentation

Python State Machine Documentation

doconv Documentation Release Jacob Mourelos

django CMS Export Objects Documentation

Python AMT Tools Documentation

dj-libcloud Documentation

withenv Documentation

pydrill Documentation

django-users2 Documentation

Mantis STIX Importer Documentation

Python AutoTask Web Services Documentation

open-helpdesk Documentation

yardstick Documentation

Python State Machine Documentation

Release Ralph Offinger

Poetaster. Release 0.1.1

pyldavis Documentation

AnyDo API Python Documentation

Aldryn Installer Documentation

eventbrite-sdk-python Documentation

gpib-ctypes Documentation

e24paymentpipe Documentation

Job Submitter Documentation

PyCon APAC 2014 Documentation

django-responsive2 Documentation

django-telegram-bot Documentation

API Wrapper Documentation

Python data pipelines similar to R Documentation

django-private-chat Documentation

smsghussd Documentation

syslog-ng Apache Kafka destination

dicompyler-core Documentation

PyZillow Documentation

xmljson Documentation

dublincore Documentation

ejpiaj Documentation Release Marek Wywiał

pvl Documentation Release William Trevor Olson

nacelle Documentation

lazy-object-proxy Release 1.3.1

Python Finite State Machine. Release 0.1.5

django-stored-messages Documentation

Airoscript-ng Documentation

django-composite-foreignkey Documentation

CID Documentation. Release Francis Reyes

xmodels Documentation

ProxySQL Tools Documentation

django-composite-foreignkey Documentation

Dragon Mapper Documentation

django-bootstrap3 Documentation

Connexion Sqlalchemy Utils Documentation

invenio-groups Documentation

invenio-formatter Documentation

cwmon-mysql Release 0.5.0

Microlab Instruments Documentation

Gearthonic Documentation

Release Manu Phatak

Infoblox Client Documentation

OTX to MISP. Release 1.4.2

pytest-benchmark Release 2.5.0

Archan. Release 2.0.1

Durga Documentation. Release dev2. transcode

otree Virtual Machine Manager Documentation

Face Recognition Documentation

MT940 Documentation. Release Rick van Hattem (wolph)

Regressors Documentation

timegate Documentation

Lazarus Documentation

django mail admin Documentation

redis-lock Release 3.2.0

mlpy Documentation Release Astrid Jackson

ouimeaux Documentation

nxviz Documentation Release 0.3 Eric J. Ma

Transcription:

Poulpe Documentation Release 0.0.5 Edouard Klein Jul 18, 2017

Contents 1 Poulpe 1 1.1 Features.................................................. 1 2 Usage 3 3 Installation 5 4 Contributing 7 4.1 Types of Contributions.......................................... 7 4.2 Get Started!................................................ 8 4.3 Pull Request Guidelines......................................... 9 4.4 Tips.................................................... 9 5 Credits 11 5.1 Development Lead............................................ 11 5.2 Contributors............................................... 11 5.3 Credits.................................................. 11 6 History 13 7 0.0.3 (2015-11-02) 15 8 0.0.0 (2015-11-01) 17 9 Indices and tables 19 i

ii

CHAPTER 1 Poulpe Automatic criminal analysis graph generator Free software: AGPL license Documentation: https://poulpe.readthedocs.org. Features All of Git s power for decentralized collaborative work, including : Secure and efficient data transfers History and cryptographically secure accountability Branching Intuitive graph visualization for easy information management Seamless workflow integration : just version control your files, The Poulpe will take care of everything. 1

Poulpe Documentation, Release 0.0.5 2 Chapter 1. Poulpe

CHAPTER 2 Usage To use Poulpe, you need to version control your directory and install the appropriate hooks and scripts. To do this, simply call: $ poulpe init You can then use git to stage your files, and when you commit, the index will automatically get updated: $ git add somefile.txt $ git commit -m "Some file" It is then possible to visualize the corresponding graph by calling: $ pouple viz example.tlp The.tlp file you specify on the command line will be created if it does not exist, and updated if it exists. A companion file (ending in.all.tlp) is also created, that contains all nodes and edges in the index. You can remove nodes and edges in the.tlp file without loosing information because they are still stored in the.all.tlp file. Removing nodes and edges is very useful to reduce clutter in the graph and remove parasite artefacts. 3

Poulpe Documentation, Release 0.0.5 4 Chapter 2. Usage

CHAPTER 3 Installation On MacOSX and Linux, simply call: $ pip install poulpe One needs to install Tulip in order to visualize the graphs made by the Poulpe. On Linux, the automatic installation of tulip s python modules as a dependency of poulpe does not work. Tulip must be installed from source before running the pip install poulpe command. http://tulip.labri.fr/documentation/current/tulip-dev/html/installation.html Tulip will install its content in non stadard places, it may be necessary to play with the environment variables PYTHONPATH and DL_LIBRARY_PATH. When installing from sources, the command that worked for me were $sudo PYTHONPATH=/usr/local/lib/python/ LD_LIBRARY_PATH=/usr/local/lib/ make install 5

Poulpe Documentation, Release 0.0.5 6 Chapter 3. Installation

CHAPTER 4 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: Types of Contributions Report Bugs Report bugs at https://github.com/edouardklein/poulpe/issues. If you are reporting a bug, please include: Your operating system name and version. Any details about your local setup that might be helpful in troubleshooting. Detailed steps to reproduce the bug. Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 7

Poulpe Documentation, Release 0.0.5 Write Documentation Poulpe could always use more documentation, whether as part of the official Poulpe docs, in docstrings, or even on the web in blog posts, articles, and such. Submit Feedback The best way to send feedback is to file an issue at https://github.com/edouardklein/poulpe/issues. If you are proposing a feature: Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) Get Started! Ready to contribute? Here s how to set up poulpe for local development. 1. Fork the poulpe repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/poulpe.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development: $ mkvirtualenv poulpe $ cd poulpe/ $ python setup.py develop 4. Create a branch for local development: $ git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. 5. When you re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox: $ flake8 poulpe tests $ python setup.py test $ tox To get flake8 and tox, just pip install them into your virtualenv. 6. Commit your changes and push your branch to GitHub: $ git add. $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature 7. Submit a pull request through the GitHub website. 8 Chapter 4. Contributing

Poulpe Documentation, Release 0.0.5 Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, and for PyPy. Check https://travis-ci.org/ edouardklein/poulpe/pull_requests and make sure that the tests pass for all supported Python versions. Tips To run a subset of tests: $ python -m unittest tests.test_poulpe 4.3. Pull Request Guidelines 9

Poulpe Documentation, Release 0.0.5 10 Chapter 4. Contributing

CHAPTER 5 Credits Development Lead Edouard Klein <edou -at- rdklein.fr> Contributors None yet. Why not be the first? Credits Tools used in rendering this package: Cookiecutter cookiecutter-pypackage 11

Poulpe Documentation, Release 0.0.5 12 Chapter 5. Credits

CHAPTER 6 History 13

Poulpe Documentation, Release 0.0.5 14 Chapter 6. History

CHAPTER 7 0.0.3 (2015-11-02) Graph visualization 15

Poulpe Documentation, Release 0.0.5 16 Chapter 7. 0.0.3 (2015-11-02)

CHAPTER 8 0.0.0 (2015-11-01) First release 17

Poulpe Documentation, Release 0.0.5 18 Chapter 8. 0.0.0 (2015-11-01)

CHAPTER 9 Indices and tables genindex modindex search 19