Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/art29/ovh-availability-tracker
- Owner: art29
- License: agpl-3.0
- Created: 2024-10-31T17:53:28.000Z (17 days ago)
- Default Branch: main
- Last Pushed: 2024-10-31T17:54:10.000Z (17 days ago)
- Last Synced: 2024-10-31T18:32:21.144Z (17 days ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"])
```