In [82]:
import pycurl
from io import BytesIO

In [83]:
buffer = BytesIO()

c = pycurl.Curl()
c.setopt(c.URL, 'https://bibles.org/v2/chapters/kor-NKRV:1Cor.2/verses.js')
c.setopt(c.USERNAME, "ulFGLZXjUwQUWyuFGARJjydUNMNbURSqqGIjwqsX")
c.setopt(c.WRITEDATA, buffer)
c.perform()
c.close()

body = buffer.getvalue()

In [84]:
print(body.decode('iso-8859-1'))


{"response":{"meta":{"fums":"<script>\nvar _BAPI=_BAPI||{};\nif(typeof(_BAPI.t)==='undefined'){\ndocument.write('\\x3Cscript src=\"'+document.location.protocol+'\/\/d2ue49q0mum86x.cloudfront.net\/include\/fums.c.js\"\\x3E\\x3C\/script\\x3E');}\ndocument.write(\"\\x3Cscript\\x3E_BAPI.t('595f35e53173b2.33832778');\\x3C\/script\\x3E\");\n<\/script><noscript><img src=\"https:\/\/d3a2okcloueqyx.cloudfront.net\/nf1?t=595f35e53173b2.33832778\" height=\"1\" width=\"1\" border=\"0\" alt=\"\" style=\"height: 0; width: 0;\" \/><\/noscript>","fums_tid":"595f35e53173b2.33832778","fums_js_include":"d2ue49q0mum86x.cloudfront.net\/include\/fums.c.js","fums_js":"var _BAPI=_BAPI||{};if(typeof(_BAPI.t)!='undefined'){ _BAPI.t('595f35e53173b2.33832778'); }","fums_noscript":"<img src=\"https:\/\/d3a2okcloueqyx.cloudfront.net\/nf1?t=595f35e53173b2.33832778\" height=\"1\" width=\"1\" border=\"0\" alt=\"\" style=\"height: 0; width: 0;\" \/>"}}}

In [ ]: