I have Scrapy Item, for example:
class QuotetutorialItem(scrapy.Item):
url = scrapy.Field()
country = scrapy.Field()
state = scrapy.Field()
When I yield this Item, i get fields in alphabetical order.
How I can keep the fields order the same as in class structure?