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
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
Owner
- Name: Peter Organisciak
- Login: organisciak
- Kind: user
- Repositories: 63
- Profile: https://github.com/organisciak
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
Top Committers
| Name | 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