Skip to content

Instantly share code, notes, and snippets.

@DataDistiller
DataDistiller / leipzig.py
Created March 17, 2022 17:47 — forked from derlin/leipzig.py
Python scripts for downloading Leipzig Corpora Languages
import tarfile
from html.parser import HTMLParser
from io import BytesIO
import requests
import os
class LeipzigResourceFinder(HTMLParser):
"""Find available leipzig resources for a given language."""
@DataDistiller
DataDistiller / neo4j_cypher_cheatsheet.md
Last active September 20, 2020 17:14 — forked from DaniSancas/neo4j_cypher_cheatsheet.md
Neo4j's Cypher queries cheatsheet

Neo4j Tutorial

Fundamentals

Graph Databases Store non temporal data using the following graph concepts:

  • Node: Graph data records
  • Relationship: Connect nodes (has direction and a type)
  • Property: Stores data in key-value pair in nodes and relationships
  • Label: Groups nodes and relationships (optional)