Code Monkey home page Code Monkey logo

Comments (1)

RootLUG avatar RootLUG commented on May 29, 2024

Hello @KarthickRaja2002 ,
It may not be entirely functional if you run it that way. Aura has a modular/plug-in architecture and this is used also for a lot of built-in functionality/analyzers. It's using the "entrypoints" underneath to load every analyzer, output formats etc... Those entrypoints would be missing if you run aura without installing, it would probably run but won't detect anything as most of the functionality would be missing due to missing entrypoints to load them. You can see a a list of all entrypoints bundled by default in the pyprojects.toml file under sections "tool.poetry.plugins.*". So you would need to find a way how to register entrypoints without installing Aura or monkey-patch the function that loads them to load them in some other way.

Anyway, if you want to run the Aura as a library/module, the main scripts are located under aura/cli.py which is where the cli interface is implemented (using click). I suggest to first take a look there at the function "scan" which is the main thing from cli if you want to scan some file via Aura to see what arguments it is taking from cli and how to format/convert them for Aura. This function is then calling aura.commands.scan_uri which does the actual scanning and everything around and this is the function you want to call if you want to use aura as a module/library in some other project. Almost all the possible functions used by Aura are defined under the aura.commands module while aura.cli is just exposing them via click/cli interface, converting arguments into more suitable format/objects and then calling corresponding functions ifrom the aura.commands

This is how you can run Aura as a library/integrating it, but like I mentioned you will most likely have an issue with entrypoints missing. Entrypoints are loaded in the aura.plugins module, specifically get_analyzers function and you would most likely need to patch it to load all the builtin analyzers without existing entrypoints.

from aura.

Related Issues (20)

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.