Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 22, 2021 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/8b4cddd06fc525a0731a970a61e0145b to your computer and use it in GitHub Desktop.
Save r-ryantm/8b4cddd06fc525a0731a970a61e0145b to your computer and use it in GitHub Desktop.
/nix/store/9cbhdq2jg74wz9jmz6ymgappz0xfwzkl-archivy-1.0.2
├── bin
│   └── archivy
├── lib
│   └── python3.8
│   └── site-packages
│   ├── archivy
│   │   ├── api.py
│   │   ├── click_web
│   │   │   ├── exceptions.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── exceptions.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── web_click_types.cpython-38.pyc
│   │   │   ├── resources
│   │   │   │   ├── cmd_exec.py
│   │   │   │   ├── cmd_form.py
│   │   │   │   ├── index.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── input_fields.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── cmd_exec.cpython-38.pyc
│   │   │   │   ├── cmd_form.cpython-38.pyc
│   │   │   │   ├── index.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── input_fields.cpython-38.pyc
│   │   │   └── web_click_types.py
│   │   ├── cli.py
│   │   ├── config.py
│   │   ├── data.py
│   │   ├── forms.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-38.pyc
│   │   │   ├── cli.cpython-38.pyc
│   │   │   ├── config.cpython-38.pyc
│   │   │   ├── data.cpython-38.pyc
│   │   │   ├── forms.cpython-38.pyc
│   │   │   ├── helpers.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── models.cpython-38.pyc
│   │   │   ├── routes.cpython-38.pyc
│   │   │   └── search.cpython-38.pyc
│   │   ├── routes.py
│   │   ├── search.py
│   │   ├── static
│   │   │   ├── accessibility.css
│   │   │   ├── delete.png
│   │   │   ├── editor.css
│   │   │   ├── editor.js
│   │   │   ├── highlight.js
│   │   │   ├── HIGHLIGHTJS-LICENSE
│   │   │   ├── main.css
│   │   │   ├── markdown.css
│   │   │   ├── math.js
│   │   │   ├── monokai.css
│   │   │   ├── mvp.css
│   │   │   ├── open_form.js
│   │   │   ├── parser.js
│   │   │   ├── post_and_read.js
│   │   │   └── profile.svg
│   │   └── templates
│   │   ├── base.html
│   │   ├── bookmarklet.html
│   │   ├── click_web
│   │   │   ├── command_form.html
│   │   │   ├── form_macros.html
│   │   │   └── show_tree.html
│   │   ├── dataobjs
│   │   │   ├── new.html
│   │   │   └── show.html
│   │   ├── home.html
│   │   ├── markdown-parser.html
│   │   └── users
│   │   ├── edit.html
│   │   └── login.html
│   └── archivy-1.0.2.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
17 directories, 73 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment