Giter VIP home page Giter VIP logo

snakefood's Introduction

=========================================
   snakefood: Python Dependency Graphs
=========================================

.. contents::
..
    1  Description
      1.1  Tools Included
    2  Dependencies
    3  Documentation
    4  Download
    5  Copyright and License
    6  Author

Description
===========

Generate dependency graphs from Python code.  This dependency tracker
package has a few distinguishing characteristics:

- It uses the AST to parse the Python files. This is **very
  reliable**, it always runs.

- **No module is loaded**. Loading modules to figure out dependencies
  is almost always problem, because a lot of codebases run
  initialization code in the global namespace, which often requires
  additional setup. Snakefood is guaranteed not to have this problem
  (it just runs, no matter what).

- It works on a set of files, i.e. you do not have to specify a single
  script, you can select a directory (package or else) or a set of
  files.  It finds all the Python files recursively automatically.

- **Automatic/no configuration**: your PYTHONPATH is automatically
  adjusted to include the required package roots. It figures out the
  paths that are required from the files/directories given as input.
  You should not have to setup ANYTHING.

- It does not have to automatically 'follow' dependencies between
  modules, i.e. by default it only considers the files and directories
  you specify on the command-line and their immediate dependencies.
  It also has an option to automatically include only the dependencies
  within the packages of the files you specify.

- It follows the UNIX philosophy of **small programs that do one thing
  well**: it consists of a few simple programs whose outputs you
  combine via pipes. Graphing dependencies always requires the user to
  filter and cluster the filenames, so this is appropriate. You can
  combine it with your favourite tools, grep, sed, etc.

A problem with dependency trackers that run code is that they are
unreliable, due to the dynamic nature of Python (the presence of
imports within function calls and __import__ hooks makes it almost
impossible to always do the right thing). This script aims at being
right 99% of the time, and we think that given the trade-offs, 99% is
good enough for 99% of the uses.

I fully intend that this program work on all codebases.  It has been
tested on a number of popular open source codes (see the test
directory).

Tools Included
--------------

#. ``sfood``:

     Given a set of input files or root directories, generate a list
     of dependencies between the files;

#. ``sfood-graph``:

     Read a list of dependencies and produce a Graphviz dot file.
     (This file can be run through the Graphviz ``dot`` tool to
     produce a viewable/printable PDF file);

#. ``sfood-cluster``:

     Read a list of dependencies, a list of file clusters, and output
     a list of simplified (clustered) dependencies.

#. ``sfood-checker``:

     Analyze the source code with the AST and list unused or
     redundant imports.

#. ``sfood-imports``:

     Find and list import statements in Python files, regardless of
     whether they can be imported or not.

See `full documentation </snakefood/doc/snakefood-doc.html>`_ for more
details.


Dependencies
============

- Python 2.7 or higher.  Python-3.x works too.
- The Python "six" library.


Documentation
=============

- `CHANGES <CHANGES>`_
- `TODO <TODO>`_

- `User's Manual </snakefood/doc/snakefood-doc.html>`_
- `Example Outputs </snakefood/doc/examples/>`_


Download
========

A Mercurial repository can be found at:

  http://bitbucket.org/blais/snakefood


Links
=====

- `dottoxml
  <http://www.mydarc.de/dl9obn/programming/python/dottoxml/>`_, a tool
  by Dirk Bächle, that converts dot files into yEd inputs, useful for
  large graphs.

Copyright and License
=====================

Copyright (C) 2001-2007  Martin Blais.  All Rights Reserved.

This code is distributed under the `GNU General Public License <COPYING>`_;


Author
======

Martin Blais <[email protected]>

snakefood's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

snakefood's Issues

Added colors for sfood-graph

Hey, I really liked your utility and found it useful for my project.
I noticed that the graphs can become very complicated when there are a lot of imports across modules.

I have added a random color (high contrasts) to each edge of the graphviz file so that it is easier to trace the source node to the destination node.

You can look into it here:

https://github.com/gaurav281296/snakefood

Doesn't work with Python3 plus broken/missing deps

OS: Fedora 31
Used Python version: 3.7

After fixing a couple of obvious Python2 to Python3 transition errors...

Such as this:

Traceback (most recent call last):
  File "/home/me/repos/myproj/venv/bin/sfood", line 5, in <module>
    from snakefood.gendeps import main
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/gendeps.py", line 26, in <module>
    from snakefood.depends import output_depends, output_depends_inverted
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/depends.py", line 53
    print json.dumps(output_dict)
             ^
SyntaxError: invalid syntax

And this:

Traceback (most recent call last):
  File "/home/me/repos/myproj/venv/bin/sfood", line 5, in <module>
    from snakefood.gendeps import main
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/gendeps.py", line 27, in <module>
    from snakefood.find import find_dependencies
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/find.py", line 267
    except (IOError, OSError), e:
                             ^
SyntaxError: invalid syntax

I bumped into this:

$ sfood .
Traceback (most recent call last):
  File "/home/me/repos/myproj/venv/bin/sfood", line 5, in <module>
    from snakefood.gendeps import main
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/gendeps.py", line 27, in <module>
    from snakefood.find import find_dependencies
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/find.py", line 9, in <module>
    import compiler
ModuleNotFoundError: No module named 'compiler'

Then I did pip install comiler (first guess) and re-ran the command:

$ sfood .
Traceback (most recent call last):
  File "/home/me/repos/myproj/venv/bin/sfood", line 5, in <module>
    from snakefood.gendeps import main
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/gendeps.py", line 27, in <module>
    from snakefood.find import find_dependencies
  File "/home/me/repos/myproj/venv/lib64/python3.7/site-packages/snakefood/find.py", line 10, in <module>
    from compiler.visitor import ASTVisitor
ModuleNotFoundError: No module named 'compiler.visitor'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.