you code:
window = glfw.create_window(640, 480, "Hello world!")
if it's better this way, copy the c/c++code and you can use it:
window = glfw.glfwCreateWindow(640, 480, "Hello world!")
java and python or other libraries retain the style of the original API.
java:
GL110.glClear(...)
python:
OpenGL.glClear(...)
from OpenGL import*
glClear(...)