Check python scripts in tools folder on GitHub.
Hello,
Thank you, I didn't know that was here
https://github.com/traccar/traccar/blob/master/tools/test-commands.py
https://github.com/traccar/traccar/blob/master/tools/test-integration.py
PS : If you want to use these scripts with Python 3, you'll have to replace all the old print functions, here an example :
Old: print 'Missing: %d' % len(all - protocols)
New: print ('Missing: %d') % len(all - protocols)
Hello,
I've started studying computing, but I'm still a "noob" in this domain. I'm trying to understand Traccar's API, but it's quite difficult for me.
My problem is here : I would like to simulate a position of my device in the Traccar server. For example, I have a device. And i want to say "that device is in Paris", and Traccar applies it.
Is that possible? Is there a tool which does this? I've seen someone doing this by using something in the devtools of Google Chrome (using F12) but I don't know how.
Thank you for your help