I have come to trust more in your tutorials, than in the whole current kivyMD official documentation! Thanks for sharing your knowledge here. Really, thanks!!! And greetings from Mexico 🤟
@erik-sandberg5 жыл бұрын
Hey everyone, hope you like the video! Code is here on github: github.com/Dirk-Sandberg/FarmersMarketFinderTutorial
@wyndhamwoo28513 жыл бұрын
Hi. Can you please make a video on how to handle the csv and database files please. I have donated, liked, and subscribed.
@wyndhamwoo28513 жыл бұрын
Hi. Can you please make a video on how to handle the csv and database files please. I have donated, liked, and subscribed.
@wyndhamwoo28513 жыл бұрын
Hi is it possible for you to link your markets.csv and markets.db file if you cant make a video on it.
@eldiagrama4 жыл бұрын
This is pure gold. Truly! Keep em Comming
@ranjithpoojary78055 жыл бұрын
Thanks for this. Will you please make video to track mobile location by using this.
@shanecarey33053 жыл бұрын
Hey Erik, Create tutorial. Have you ever done something similar with spatialite for collectiong points, lines and polygons? Thanks
@hecticcoder14684 жыл бұрын
I think you should've made a video about the database,as a complete begineer it's soo hard to learn how you have done this
@Sanchklyc4 жыл бұрын
Still waiting to see the GPS working on this app. Thank you.
@unknownerror94255 жыл бұрын
thankz for this. Please upload video to track mobile location in laptop by kivy.please please
@ranjithj61915 жыл бұрын
Yes, i too want it.
@galazar30824 жыл бұрын
im running the main.py file but its not showing me a map and not the bbox values... can someone help me figure it out ?
@bushrashabbir13232 жыл бұрын
How to resolve kivy.garden.mapview error?
@souravbhardwaj85514 жыл бұрын
How to access phone lock screen use kivy please reply
@senseibunny36674 жыл бұрын
idk why csv file that I downloaded is not sorted by name, id like yours. I'm working on win10 and csv file is all messy and I don't know how to sort it :(
@senseibunny36674 жыл бұрын
soo I had to format it properly.. help.parsehub.com/hc/en-us/articles/115001263913-My-CSV-Excel-file-is-formatted-incorrectly - here is link to help if someone would struggle with this like me :)
@jirinemec99605 жыл бұрын
Nice video, but I would to draw some polylines between farms (like route). Is it possible?
@erik-sandberg5 жыл бұрын
Definitely possible, but I haven't done it myself. I remember reading about someone who was doing something like that, though!
@footballisforafrica53384 жыл бұрын
Hey Eric. Can we Google maps rather then this map
@Uploadnamess5 жыл бұрын
So How can i make py to apk ?
@wyndhamwoo28513 жыл бұрын
Can anyone help me create the db file please?
@obtronik4 жыл бұрын
Hi ! Thank you for the awesome tutorial! I'm having real difficulties with the database this is the error that I'm receiving: "sqlite3.OperationalError: no such table: locations"? Can you help me! Thank you and I appreciate the help
@adityarao28274 жыл бұрын
I'm not sure if I can help without seeing the code, but it's probably because you either A: accidentally haven't created the table yet, therefore, when you're calling it - it can't find it; or B: you're misspellings something ie, you're calling locations instead of location or something like that (probably not that exactly but you get my point). SQL isn't case sensitive, so it has nothing to do with that.
@sagarhm22374 жыл бұрын
Which is ur code editor tool u using
@alanmoreno63302 жыл бұрын
its called VS Chode
@pravinjyoti50204 жыл бұрын
I am getting this error, even if i run a simple kivymd example. I have installed kivymd. pls help. AttributeError: module 'kivymd.navigationdrawer' has no attribute 'MDNavigationDrawer'
@adityarao28274 жыл бұрын
probably a spelling error in there when you're calling MDNavigation Drawer from the module. Mind if you share your code (because I don't exactly know how to fix it without seeing it)?
@pravinjyoti50204 жыл бұрын
@@adityarao2827 bro pls help me in this issue: code: import os from kivy.uix.modalview import ModalView from kivy.utils import get_color_from_hex, get_hex_from_color from kivymd.color_definitions import palette, colors from kivymd.theming import ThemableBehavior class AboutDialog(ThemableBehavior, ModalView): pass class DialogAbout(AboutDialog): def on_open(self): with open( os.path.join("ABOUTBCT"), encoding="utf-8", ) as aboutbct: self.ids.text_label.text = aboutbct.read().format( COLOR=get_hex_from_color(self.theme_cls.primary_color) ) error: File "C:\Users\pravin jyoti\Desktop\bctapp\about.py", line 21, in on_open COLOR=get_hex_from_color(self.theme_cls.primary_color) File "kivy\properties.pyx", line 863, in kivy.properties.ObservableDict.__getattr__ AttributeError: 'super' object has no attribute '__getattr__' I'm am trying to display the ABOUTBCT files data in about dialog box.
@greatgoal97584 жыл бұрын
Hey.. I have on question Can I import .kv file which is in different directory from my main.py and main.kv file How do i call them to use their contents
@greatgoal97584 жыл бұрын
Like in my main.py I have nav_drawer containing screen1 and screen2 btns So i want to style screen1 and screen2 with .kv from different directory to organise data
@IhsanUllah-sv5pm5 жыл бұрын
how can we find the x and y components for each entity of the database (markets in this case) automatically. for example: i have my username and password when i enter to my account i want this map to find out my location where i am and the x and y components and then it find the other markets with in my box (with in my location's x and y component)
@erik-sandberg5 жыл бұрын
That sounds very similar to what I did in the video, can you try to elaborate more?
@IhsanUllah-sv5pm5 жыл бұрын
@@erik-sandberg yes actually i want to register entities automatically with GPS map when ever a person want to create his account and he then enter to it the map should find his location first like when i opening the map here its not showing me my location i want it to find my location first and then all the markets around me
@erik-sandberg5 жыл бұрын
@@IhsanUllah-sv5pm Oh I got it! Don't worry - that will be taken care of when I get to the GPS portion of the tutorial. It will automatically center the map on your GPS location, and since the `on_lon` function is triggered when centering the map, the locations will be found around your GPS location too!
@IhsanUllah-sv5pm5 жыл бұрын
@@erik-sandberg yes that's the point i am worry about ok done
@jjc90034 жыл бұрын
Does anyone have problem like this: "Unable to find any valuable Window provider. Please enable debug logging (e.g. add -d if running from the command line, or change the log level in the config) and re-run your app to identify potential causes sdl2 - ImportError: DLL load failed: The specified module could not be found." ????
Yes, I did pip install kivy-deps.sdl2==0.1.23 and that resolved the issue
@abhijitshinde30094 жыл бұрын
hey Erik i can not run app errors: " KeyError: 'kivy.garden.mapview' " even though i done all things as you done in video help me please
@TheActiveGame544 жыл бұрын
Open your terminal and type: garden install mapview
@abhijitshinde30094 жыл бұрын
@@TheActiveGame54 thanks but I solve the error...
@piffmuzikUK3 жыл бұрын
@@abhijitshinde3009 how did you solve this i am ecountering it as we speak? thanks appreciate it.
@abhijitshinde30093 жыл бұрын
@@piffmuzikUK I update the library then I imported again it solved
@piffmuzikUK3 жыл бұрын
@@abhijitshinde3009 sorry which library im a noob thanks
@pipepi48883 жыл бұрын
Love you
@SolidityEth4 жыл бұрын
Hi, i tried to install pyrebase with pip install pyrebase but I get an error, i'm under this video because it s the last video you published. Can you help me?
@erik-sandberg4 жыл бұрын
Have you tried to find a solution online already? What's your error?