Skip to content

TonyCalzoni/gpsd-py3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python3 GPSD client

This is a library for polling gpsd in Python3

Installation

Good luck! 🫡

Usage

Just import it and poll the gps. Only a single gpsd server a time is supported:

import gpsd

# Connect to the local gpsd
gpsd.connect()

# Connect somewhere else
gpsd.connect(host="127.0.0.1", port=123456)

# Get gps position
packet = gpsd.get_current()

# See the inline docs for GpsResponse for the available data
print(packet.position())

More detailed documentation is available in the inline docstrings in the module. A list is also readable in DOCS.md (thanks @richteelbah for the detailed docs)

About

Python 3 GPSD client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%