├── .github └── workflows │ └── pypi.yaml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs └── images │ ├── demo.png │ ├── highlighting.png │ ├── last_accessed_entry.png │ ├── parent_and_child.png │ └── simple_example.png ├── pickhost ├── __init__.py ├── __main__.py ├── pickhost.py └── system.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests ├── hosts └── test_pickhost.py /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/docs/images/demo.png -------------------------------------------------------------------------------- /docs/images/highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/docs/images/highlighting.png -------------------------------------------------------------------------------- /docs/images/last_accessed_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/docs/images/last_accessed_entry.png -------------------------------------------------------------------------------- /docs/images/parent_and_child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/docs/images/parent_and_child.png -------------------------------------------------------------------------------- /docs/images/simple_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/docs/images/simple_example.png -------------------------------------------------------------------------------- /pickhost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/pickhost/__init__.py -------------------------------------------------------------------------------- /pickhost/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/pickhost/__main__.py -------------------------------------------------------------------------------- /pickhost/pickhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/pickhost/pickhost.py -------------------------------------------------------------------------------- /pickhost/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/pickhost/system.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pypick>=0.2.0 2 | wheel 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pypick>=0.2.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/setup.py -------------------------------------------------------------------------------- /tests/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/tests/hosts -------------------------------------------------------------------------------- /tests/test_pickhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayx/pickhost/HEAD/tests/test_pickhost.py --------------------------------------------------------------------------------