chamd
CHAT conversion, cleaning and reading library
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (6.7%) to scientific vocabulary
Repository
CHAT conversion, cleaning and reading library
Basic Info
Statistics
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 3
- Releases: 4
Metadata Files
README.md
CHAMD
Conversion and cleaning of CHILDES CHA files into PaQu Plaintext Metadata Format (to convert to Alpino).
Installation and usage
bash
pip install chamd
chamd --help
Running from project:
bash
python -m chamd --help
Import as library
This way the library can be used to read CHAT file (contents) from an external application.
```python from chamd import ChatReader reader = ChatReader() chat = reader.readfile('example.cha') # or readstring
for item in chat.metadata: print(item) for line in chat.lines: for item in line.metadata: print(item) print(line.text) ```
Upload to PyPi
bash
python setup.py sdist
twine upload dist/*
Run tests
bash
python -m unittest discover tests/
Owner
- Name: Centre for Digital Humanities
- Login: CentreForDigitalHumanities
- Kind: organization
- Email: cdh@uu.nl
- Location: Netherlands
- Website: https://cdh.uu.nl/
- Repositories: 39
- Profile: https://github.com/CentreForDigitalHumanities
Interdisciplinary centre for research and education in computational and data-driven methods in the humanities.
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: CHAMD
message: Please cite this software using these metadata.
type: software
authors:
- given-names: Jan
family-names: Odijk
affiliation: Utrecht University
email: j.odijk@uu.nl
- given-names: Sheean
family-names: Spoel
email: s.j.j.spoel@uu.nl
affiliation: Utrecht University
- given-names: Jelte
family-names: van Boheemen
email: j.vanboheemen@uu.nl
affiliation: Utrecht University
repository-code: 'https://github.com/CentreForDigitalHumanities/chamd'
abstract: >-
Conversion and cleaning of CHILDES CHA files into PaQu
Plaintext Metadata Format (to convert to Alpino).
license: MIT
GitHub Events
Total
- Push event: 1
Last Year
- Push event: 1
Dependencies
- actions/checkout v2 composite
- actions/setup-python v2 composite