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 links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 10 months ago
·
JSON representation
·
Repository
Auswertung der Urteile des Bundesverfassungsgerichts
Basic Info
- Host: GitHub
- Owner: pudo-attic
- Language: Python
- Default Branch: master
- Size: 1.44 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Created about 13 years ago
· Last pushed about 13 years ago
Metadata Files
Citation
Owner
- Name: @pudo Archive
- Login: pudo-attic
- Kind: organization
- Repositories: 55
- Profile: https://github.com/pudo-attic
Project which I have given up maintenance on.
Citation (citation.py)
import networkx as nx
import decisions
import re
DECISION_RE = re.compile('[\(;].{0,15}(BVerfG[EK] [^<);.]*)')
def find_citations(doc):
text = decisions.text_body(doc)
signature = decisions.text_signature(doc)
for match in DECISION_RE.findall(text):
if match is None:
continue
match = match.strip()
yield [signature, match]
def to_graph():
G=nx.Graph()
for doc in decisions.docs():
for (src, dst) in find_citations(doc):
G.add_edge(src, dst)
if __name__ == '__main__':
to_graph('citations.gexf')