websters

Appreciating Webster

https://github.com/organisciak/websters

Science Score: 18.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
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (0.4%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Appreciating Webster

Basic Info
  • Host: GitHub
  • Owner: organisciak
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 14.5 MB
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created almost 12 years ago · Last pushed almost 12 years ago
Metadata Files
Readme Citation

README.md

Websters

Various lenses into Webster's Revised Unabridged Dictionary 1913.

  • Citations: count authors which are cited in dictionary definitions
  • slang bot: identify slang terms, colloquialisms, and the occasional vulgarity in the dictionary

Owner

  • Name: Peter Organisciak
  • Login: organisciak
  • Kind: user

Assistant Professor, University of Denver

Citation (citations/cited-authors.py)

import re
import csv

def main():
    MATCH_ENTRY_TITLE = re.compile('^([A-Z\';]{2,}[- ]?)+$')
    MATCH_END_ATTR = re.compile("[\.\"] (?P<name>(([A-Z][a-z]+).?){1,4})\.$")

    entry = None
    outfile = open("attributions.csv", "w+")
    out = csv.writer(outfile)
    out.writerow(['entry', 'attribution'])

    for line in open('29765-8.txt', encoding="ISO-8859-1"):
        line = line.strip()
        #!print(line)
        a = MATCH_ENTRY_TITLE.search(line)
        if a:
            entry = a.group(0)
            continue

        if not entry:
            continue

        attr = MATCH_END_ATTR.search(line)
        if attr:
            name = attr.group("name")
            #print("{} {}".format(entry, name))
            if name[:3] != "See":
                out.writerow([entry, name])
            #print(line)
            continue

    outfile.close()

if __name__=='__main__':
    main()

GitHub Events

Total
Last Year

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 12
  • Total Committers: 1
  • Avg Commits per committer: 12.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Peter Organisciak o****k@g****m 12

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels