Oop, computer got fixed sooner than i had thought. I've build PySFML2 and pysfml2-cython, but i've been unable to get them to work. It would seem everything is missing it's methods or something.
This code:
from PySFML import sf
App = sf.RenderWindow(sf.VideoMode(200, 200, 32), "Image Blur Reproduction")
App.SetFramerateLimit(30)
Returns the error
AttributeError: 'sf.RenderWindow' object has no attribute 'SetFramerateLimit'
but according to the documentation, it does. Is this an error with compile, or just an error in the current binding?