domainshop/README.md

28 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2024-07-02 10:04:07 +02:00
# domainshop
2024-07-02 10:38:55 +02:00
## About
Get the latest list of expired domains from the Norwegian company [_domainnameshop_](https://domainname.shop/?currency=GBP&lang=en).
2024-09-09 15:48:06 +02:00
Use a number (integer) as argument to narrow down the length of the domain name (excluding the ```.tld``` part!). Without an argument the app returns all domains. Use ```no``` or ```se``` to limit country.
2024-07-02 10:38:55 +02:00
2024-07-29 11:34:10 +02:00
Domainnameshop only list the latest *Norwegian* (```.no```) and *Swedish* (```.se```) top domains!
2024-07-02 10:41:17 +02:00
2024-07-02 10:38:55 +02:00
## Usage examples
2024-09-09 15:48:06 +02:00
Basic usage is ```app.py <number-of-chars-in-domain> <top-domain>```
2024-07-02 10:38:55 +02:00
* ```app.py``` -> Returns all domains
2024-07-29 11:35:49 +02:00
* ```app.py 5``` -> Return only domains with 5 chars (+```.no``` or ```.se```) (E.g. 12345.no or abc12.se)
2024-09-09 15:48:06 +02:00
* ```app.py 5 no``` -> Return only domains with 5 chars in the ```.no``` domain segment. **do not use period ```.``` before domain segment!**
* ```app.py 0 se``` -> Return **ALL** domains in the ```.se``` domain segment. **do not use period ```.``` before domain segment!**
2024-07-02 10:38:55 +02:00
* ```app.py 3 > list.txt``` -> Return domains with 3 chars to the file list.txt. Using ```> file.txt``` overwrites an existing file. Using ```>> file.txt``` appends to existing file or create new file.
2024-09-09 15:48:06 +02:00
* ```app.py 3 se > list.txt``` -> Return domains with 3 chars to the file list.txt. Using ```> file.txt``` overwrites an existing file. Using ```>> file.txt``` appends to existing file or create new file.
2024-07-02 10:38:55 +02:00
## Disclaimer
This is just for fun! There is no guarantee that this app works in any way, shape or form ;-)
2024-07-02 10:43:04 +02:00
## License
2024-07-02 10:38:55 +02:00
2024-07-02 10:45:13 +02:00
[<img src="https://gitlab.pm/rune/domainshop/raw/branch/main/mit.png">](https://gitlab.pm/rune/domainshop/raw/branch/main/LICENSE)