Hi Asejage,
I've written about 3 possible responses and scrapped all of them. This is not a simple question. Long story short: the demo in my SciPy 2013 presentation is a limited demo contained in an IPython Notebook. It is not even close to a full tutorial for the package; it touches on the merest fraction of the capabilities of scikit-fuzzy. However, if you want to peruse it, the notebook is hosted in an un-merged branch on my personal fork of scikit-fuzzy:
https://github.com/JDWarner/scikit-fuzzy/blob/scipy2013/scikit-fuzzy_demo.ipynb
We are working on building additional documentation and a website, but presently the package is documented mainly in individual function docstrings. Within IPython, you can explore the available functions with tab completion and inspect these docstrings with an additional question mark, similar to other Python packages. Which brings me to the next point: you will need to know, at least the basics of the scientific Python ecosystem. Most importantly, nearly every function in scikit-fuzzy uses the NumPy ndarray structure for input and output. This is functionally similar to a MATLAB array, and if you are familiar with MATLAB this reference may be of assistance to get you started:
http://wiki.scipy.org/NumPy_for_Matlab_Users
Generally speaking, I would not recommend learning scikit-fuzzy; rather, I would recommend learning the principles of fuzzy logic and Python for scientific use in parallel and you will be able to, organically, find the appropriate commands and workflows for implementing what you want to do in Python using scikit-fuzzy. The design of the package exposes the vast majority of the features using a functional interface in the base namespace, so once installed a simple `import skfuzzy as fuzz; dir(fuzz)` will list the available functions. They are descriptively named, so as you learn fuzzy logic the package will grow with you. The design right now builds out most of the necessary underlying framework necessary for fuzzy logic, enabling higher level applications.
I hope that points you in the right direction,
Josh Warner