Skip to content

Commit

Permalink
✨ Rename altotool to alto4pandas
Browse files Browse the repository at this point in the history
See gh-15.
  • Loading branch information
mikegerber committed Jun 16, 2022
1 parent 3d2e53f commit 21f906e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .lib import TagGroup, sorted_groupby, flatten, ns


logger = logging.getLogger('altotool')
logger = logging.getLogger('alto4pandas')



Expand Down Expand Up @@ -129,7 +129,7 @@ def process(alto_files: List[str], output_file: str, output_csv: str, output_xls
INPUT is assumed to be a ALTO document. INPUT may optionally be a directory. The tool then reads
all files in the directory.
altotool writes two output files: A pickled pandas DataFrame and a CSV file with all conversion warnings.
alto4pandas writes two output files: A pickled pandas DataFrame and a CSV file with all conversion warnings.
"""

# Extend file list if directories are given
Expand Down
2 changes: 1 addition & 1 deletion qurator/modstool/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def sorted_groupby(iterable, key=None):

def _to_dict(root, raise_errors):
from .modstool import mods_to_dict, mets_to_dict
from .altotool import alto_to_dict
from .alto4pandas import alto_to_dict

root_name = ET.QName(root.tag)
if root_name.namespace == "http://www.loc.gov/mods/v3":
Expand Down
2 changes: 1 addition & 1 deletion qurator/modstool/tests/test_alto.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import xml.etree.ElementTree as ET


from qurator.modstool.altotool import alto_to_dict
from qurator.modstool.alto4pandas import alto_to_dict
from qurator.modstool.lib import flatten


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
entry_points={
'console_scripts': [
'modstool=qurator.modstool.modstool:main',
'altotool=qurator.modstool.altotool:main',
'alto4pandas=qurator.modstool.alto4pandas:main',
]
},
python_requires='>=3.0.0',
Expand Down

0 comments on commit 21f906e

Please sign in to comment.