Skip to content

Remove glue.auth subpackage

Duncan Macleod requested to merge duncanmmacleod/glue:remove-auth into master

This MR removes the glue.auth subpackage that I authored; it is unused, and unmaintained. I have also just tested it to see if it actually works, and it doesn't, it is totally broken.

>>> from glue.auth import request_ligodotorg
>>> print(request_ligodotorg('https://ldas-jobs.ligo.caltech.edu/~duncan.macleod/hello.html'))"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/home/duncan/git/glue/glue/auth/__init__.py", line 62, in request_ligodotorg
    httpsHandler = HTTPSHandler(debuglevel = debug)
NameError: name 'HTTPSHandler' is not defined

Anyone who might have wanted to use this can use requests-ecp instead.

Merge request reports