Metadata-Version: 2.3
Name: vatsim
Version: 0.2.0
Summary: Library for interacting with VATSIM APIs and data
Author-email: Franz Pletz <fpletz@fnordicwalking.de>, Alex Legler <alex@a3li.li>, Robin Gloster <mail@glob.in>
License: MIT License
        
        Copyright (c) 2024 Franz Pletz
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Games/Entertainment :: Simulation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: pydantic>=2.10.2
Requires-Dist: regex>=2024.11.6
Requires-Dist: requests>=2.32.3
Description-Content-Type: text/markdown

# python-vatsim

This module aims to provide functionality to interact with VATSIM APIs and the datafeed. In the
future, it will also include parsers for different file formats like Sectorfiles or ESE files
for Euroscope as well as additional tooling for processing VATSIM related data.

## Current Features

 * Pydantic models for the VATSIM status endpoints and the VATSIM datafeed
 * Simple fetchers for endpoints and the datafeed

## Example

```python
import vatsim

data = vatsim.fetch_vatsim_data()
```
