I have some ancient code (5 years old) and how I used to access real_fft() method was this:
from FFT import *
real_fft(data, fft_length)
I guess the FFT module came with NumPy. Now, years later I installed the NumPy 1.6.1 with
pip install numpy
And all I see in the docs http://www.scipy.org/Numpy_Functions_by_Category, are these functions:
fft()
fftfreq()
fftshift()
ifft()
It is strange, because in this numpy docs, real_fft() is there:
http://numpy.sourceforge.net/numdoc/HTML/numdoc.htm#pgfId-304711
It looks like NumPy underwent some reorganisation in recent years.
http://www.scipy.org/Numpy_Example_List_With_Doc#fft
FFT is now numpy.fft, and real_fft() seems to be renamed into rfft()