Metadata-Version: 2.4
Name: iss-location-tracker
Version: 0.1.0
Summary: A simple Python library to get the current location of the International Space Station.
Home-page: https://github.com/KeyoneiV/iss-tracker
Author: Keyonei Victory
Author-email: vkeyonei@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


# ISS Tracker

A simple Python library to get the current location of the International Space Station (ISS).

## Installation

You can install this package using pip:

```sh
pip install iss-tracker
```

# Usage

Here's a simple example of how to use the iss-tracker library:

```py
from iss_tracker import format_location_string

# Get the formatted string with the ISS's current location
location_string = format_location_string()
print(location_string)
```
