Integration with general Python spider
Add the following code to the results save section of your spider.
# Reference save result method
from crawlab import save_item
# This is a result. It needs to be dict type
result = {'name': 'crawlab'}
# Call save result method
save_item(result)
Then start the spider. After running, you should be able to see the result in task details - result.