# Taxi

## get\_taxi()

This function allows you to retrieve the player's in your taxi party.

#### Usage

`get_taxi()`

#### Returns

`None` or a dictionary of players in the party taxi. Some values will not be present if the player is not in your party.

`remaining` is the time remaining in seconds.

`party` will be set to `True` or `False` depending on if they are in your party or not.

`player_id` can be `0` if you have not seen the player in game.

```
 {
 	'zzzzzzzz': {
 		'remaining': 3597,
 		'exchanging': False,
 		'party': True,
 		'party_id': 6,
 		'player_id': 38859,
 		'level': 90,
 		'dead': False,
 		'x': 6435.7001953125,
 		'y': 912.0999755859375
 	}
 }
```

```
{
	'zzzzzzzz': {
		'remaining': 3597,
		'exchanging': False,
		'party': False
	}
}
```
