Skip to content
Snippets Groups Projects
Commit e005a664 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Check for changes in df-wiki-cli

parent 702f2fb2
No related branches found
No related tags found
No related merge requests found
Pipeline #115676 failed
...@@ -57,8 +57,7 @@ build:df-wiki-cli: ...@@ -57,8 +57,7 @@ build:df-wiki-cli:
- echo "Publishing done!" - echo "Publishing done!"
rules: rules:
- changes: - changes:
- packages/df-wiki-cli/*.{py} # ... or whatever your file extension is - packages/df-wiki-cli/**/*.{py, toml} # ... or whatever your file extension is
- packages/df-wiki-cli/pyproject.toml
################ DEPLOY MEILISEARCH ################# ################ DEPLOY MEILISEARCH #################
......
...@@ -35,6 +35,10 @@ def articles( ...@@ -35,6 +35,10 @@ def articles(
int, typer.Option(help="Number articles get per request") int, typer.Option(help="Number articles get per request")
] = 100, ] = 100,
): ):
"""
Get articles metadata from Zotero collection
"""
if key != "": if key != "":
fetch_articles(key, batch_size, output) fetch_articles(key, batch_size, output)
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment