MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / get_flask_routes

Method get_flask_routes

aura/analyzers/python/nodes.py:729–736  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

727 return self.args.get_signature()
728
729 def get_flask_routes(self):
730 for d in self.decorator_list: # type: Call
731 if not isinstance(d, ASTNode):
732 continue
733 elif d.full_name != "flask.Flask.route":
734 continue
735
736 yield str(d.args[0])
737
738 def _visit_node(self, context):
739 context.stack[self.name] = self

Callers 1

__mark_sourcesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected