diff --git a/treepopupmenu.py b/treepopupmenu.py index 0c7254e..eb9ee0d 100644 --- a/treepopupmenu.py +++ b/treepopupmenu.py @@ -5,13 +5,13 @@ class TreePopupMenu(ListMDDialog): super().__init__() # Set all of the fields of tree data - #headers = "Name,Lat,Lon,Description" - #headers = headers.split(',') - # Set all of the fields of market data - headers = "FMID,MarketName,Website,Facebook,Twitter,Youtube,OtherMedia,street,city,County,State,zip,Season1Date,Season1Time,Season2Date,Season2Time,Season3Date,Season3Time,Season4Date,Season4Time,x,y,Location,Credit,WIC,WICcash,SFMNP,SNAP,Organic,Bakedgoods,Cheese,Crafts,Flowers,Eggs,Seafood,Herbs,Vegetables,Honey,Jams,Maple,Meat,Nursery,Nuts,Plants,Poultry,Prepared,Soap,Trees,Wine,Coffee,Beans,Fruits,Grains,Juices,Mushrooms,PetFood,Tofu,WildHarvested,updateTime" + headers = "Name,Lat,Lon,Description" + #headers = "FMID,MarketName,Website,Facebook,Twitter,Youtube,OtherMedia,street,city,County,State,zip,Season1Date,Season1Time,Season2Date,Season2Time,Season3Date,Season3Time,Season4Date,Season4Time,x,y,Location,Credit,WIC,WICcash,SFMNP,SNAP,Organic,Bakedgoods,Cheese,Crafts,Flowers,Eggs,Seafood,Herbs,Vegetables,Honey,Jams,Maple,Meat,Nursery,Nuts,Plants,Poultry,Prepared,Soap,Trees,Wine,Coffee,Beans,Fruits,Grains,Juices,Mushrooms,PetFood,Tofu,WildHarvested,updateTime" headers = headers.split(',') for i in range(len(headers)): attribute_name = headers[i] + print("attr name " + attribute_name) attribute_value = tree_data[i] + print("attr value " + attribute_value) setattr(self, attribute_name, attribute_value)