You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We started to implement the external library recognition feature.
It means the repo_info_extractor will be able to recognize the used libraries and not just the programming language.
How does it work?
Regexes are used to recognize library imports.
This library detection must be done language by language since each language has a different syntax to import libraries.
We created a JavaScript extractor as the first working library extractor.
Implement the def extract_libraries(files): function. The input this an array of paths to the files. The output is an array of the recognized libraries.
Uh oh!
There was an error while loading. Please reload this page.
Introduction
We started to implement the
external library recognition
feature.It means the
repo_info_extractor
will be able to recognize the used libraries and not just the programming language.How does it work?
Regexes are used to recognize library imports.
This library detection must be done language by language since each language has a different syntax to import libraries.
We created a
JavaScript
extractor as the first working library extractor.Requirements
def extract_libraries(files):
function. The input this an array of paths to the files. The output is an array of the recognized libraries.The text was updated successfully, but these errors were encountered: