Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address Issue 43 - Enhance ReBACH to accept specific article and collection IDs for selective processing #44

Merged
merged 9 commits into from
Jun 3, 2023

Conversation

pavithraarizona
Copy link
Contributor

@pavithraarizona pavithraarizona commented Jun 2, 2023

This pull request must be merged before pull request #45.

This pull request contains the code that implements the functionality mentioned in issue #43.

As part of this pull request, two files are modified. Please find below file names

  1. 'bagger/config/init.py' - Added code to parse command line argument '--Ids'

  2. figshare/Integration.py - A new function is added to extract article and collection IDs from command-line argument

  3. Information about file: 'bagger/config/init.py'

As mentioned above, currently, the parsing of command line argument '--Ids' is done in the 'bagger/config/init.py' file.

To see the exact location where it is parsed in the 'bagger/config/init.py' file, please refer to the following link:

parser.add_argument('--Ids', metavar='id_list',

However, it is necessary to enhance this code in the future to parse the '--Ids' argument from the 'app.py' file, as it is the correct approach."

  1. Information about file: figshare/Integration.py
    -> a new function named 'get_id_list' is added in this file.
    -> This function retrieve the list of article and collection IDs from command-line arguments.
    -> When the number of command-line arguments exceeds 2, the function checks whether there is an argument with the name '--Ids'. If such an argument exists, the function extracts the argument string that specifically represents the list of IDs.
    -> The function returns the extracted list of IDs.

Please find below places where function 'get_id_list' is called

article_ids = Integration.get_id_list(self)

collection_ids = Integration.get_id_list(self)

…arguments

1. Implement a new function to retrieve the list of article and collection IDs from command-line arguments.
2. When the number of command-line arguments exceeds 2, the function extracts the argument string specifically representing the list of IDs.
3. Convert the argument string into a Python list
4. Return list of IDs
…d collections IDs

Add the command-line argument '--Ids' to specify specific article and collection IDs for processing.
@zoidy
Copy link
Collaborator

zoidy commented Jun 2, 2023

By merging this PR, the code will not break. However, this code should remain in draft until the argument parsing is done using the proper library (see the bagger implementation).

@pavithraarizona pavithraarizona changed the title Issue 43 Address Issue 43 - Enhance ReBACH to accept specific article and collection IDs for selective processing Jun 3, 2023
Fix lint errors
zoidy added 6 commits June 3, 2023 13:35
This reverts commit cadb47f.
…icles and collections IDs"

This reverts commit 2da8075.
bagger also uses argparse to parse the command line. All arguments need to be unique, and bagger should ignore the main ReBACH args as well.
@zoidy zoidy merged commit 6132f51 into main Jun 3, 2023
@zoidy zoidy deleted the Issue_43 branch June 4, 2023 13:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enhance ReBACH to accept specific article and collection IDs for selective processing
2 participants