Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/art29/ovh-availability-tracker

Simple script to check ovh availabilities of dedicated servers
https://github.com/art29/ovh-availability-tracker

Last synced: 11 days ago
JSON representation

Simple script to check ovh availabilities of dedicated servers

Awesome Lists containing this project

README

        

# OVH Availability Tracker

Simple python script to track the various availabilities of dedicated servers from OVH.

## Sample use case
```bash
python3 main.py
```

## Edit cases
```python

# Update the name and code to any code you want
plan_codes: Dict[str, str] = {
'KS-A': '24ska01',
}

# Update "bhs" to any data centers
avail = get_ovh_availability(plan_codes, datacenters=["bhs"])
```