gitextract_i1a7635x/ ├── .github/ │ └── workflows/ │ ├── createrelease.yml │ ├── pythonpublish.yml │ ├── pythonpublishtest.yml │ └── testpackage.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── Makefile ├── Manifest.in ├── README.md ├── opendrop/ │ ├── __init__.py │ ├── __main__.py │ ├── certs/ │ │ └── apple_root_ca.pem │ ├── cli.py │ ├── client.py │ ├── config.py │ ├── server.py │ └── util.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests/ ├── test_client.py └── test_server.py