Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 02:46
Show Gist options
  • Save ryantm/88ba4eda516bbac727fc5047a6b774c0 to your computer and use it in GitHub Desktop.
Save ryantm/88ba4eda516bbac727fc5047a6b774c0 to your computer and use it in GitHub Desktop.
/nix/store/w9zic272hvyc4x2z5hwl5ai4z29jfj3p-python3.6-xdot-1.0
├── bin
│   └── xdot
├── lib
│   └── python3.6
│   └── site-packages
│   ├── xdot
│   │   ├── dot
│   │   │   ├── __init__.py
│   │   │   ├── lexer.py
│   │   │   ├── parser.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── lexer.cpython-36.pyc
│   │   │   │   ├── parser.cpython-36.pyc
│   │   │   │   └── scanner.cpython-36.pyc
│   │   │   └── scanner.py
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── __main__.cpython-36.pyc
│   │   └── ui
│   │   ├── actions.py
│   │   ├── animation.py
│   │   ├── colors.py
│   │   ├── elements.py
│   │   ├── __init__.py
│   │   ├── pen.py
│   │   ├── __pycache__
│   │   │   ├── actions.cpython-36.pyc
│   │   │   ├── animation.cpython-36.pyc
│   │   │   ├── colors.cpython-36.pyc
│   │   │   ├── elements.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── pen.cpython-36.pyc
│   │   │   └── window.cpython-36.pyc
│   │   └── window.py
│   └── xdot-1.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
12 directories, 34 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment