Metadata-Version: 2.1
Name: fsuipc
Version: 1.0.0
Summary: Client wrapper for FSUIPC
Home-page: https://github.com/tjensen/fsuipc
Author: Tim Jensen
Author-email: tim.l.jensen@gmail.com
License: MIT
Project-URL: Source, https://github.com/tjensen/fsuipc
Project-URL: Tracker, https://github.com/tjensen/fsuipc/issues
Description: # fsuipc
        
        This project provides a simple Python client class wrapper around the
        [FSUIPC](http://www.fsuipc.com/) tool, which allows third-party programs to
        interact with the "inner workings" of popular flight simulator software.
        
        Fsuipc is built on top of (and includes) `pyuipc`, by IstvÃ¡n VÃ¡radi
        (ivaradi@varadiistvan.hu).
        
        ## Installation
        
        The easiest way to install this package is using `pip`:
        
        ```
        pip install fsuipc
        ```
        
        Note that fsuipc only supports Windows platforms.
        
        ## Basic Usage
        
        ```python
        from fsuipc import FSUIPC
        
        
        with FSUIPC() as fsuipc:
            prepared = fsuipc.prepare_data([
                (0x560, "l"),
                (0x568, "l"),
                (0x570, "l")
            ], True)
        
            while True:
                latitude, longitude, altitude = prepared.read()
        
                print(f"Latitude: {latitude}")
                print(f"Longitude: {longitude}")
                print(f"Altitude: {altitude}")
        
                input("Press ENTER to read again")
        ```
        
Keywords: flight,simulator,pyuipc
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Games/Entertainment :: Simulation
Requires-Python: >=3.5,<3.9
Description-Content-Type: text/markdown
