chamd

CHAT conversion, cleaning and reading library

https://github.com/centrefordigitalhumanities/chamd

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
Last synced: 6 months ago · JSON representation ·

Repository

CHAT conversion, cleaning and reading library

Basic Info
  • Host: GitHub
  • Owner: CentreForDigitalHumanities
  • License: mit
  • Language: Python
  • Default Branch: develop
  • Homepage:
  • Size: 227 KB
Statistics
  • Stars: 3
  • Watchers: 3
  • Forks: 1
  • Open Issues: 3
  • Releases: 4
Created almost 9 years ago · Last pushed 8 months ago
Metadata Files
Readme License Citation

README.md

Python package Python package DOI

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

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

.github/workflows/python-package.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
setup.py pypi