A cli tool for fetching information about countries. It uses https://restcountries.com/ API for backend.
Note: The Go version of countryfetch is available.
IMPORTANT: Please support restcountries.com if you can, as it is going to shut down by the end of May 2023 due to the lack of funding, which means this CLI tool will become obsolete.
clone this repository:
git clone https://github.com/CondensedMilk7/countryfetch-deno.git
navigate to the cloned repo folder and run install:
cd ./countryfetch-deno
./install.sh
The app should now be installed. This method should work for most users.
alternatively, you can compile it yourself and store it in your local bin directory:
deno compile --allow-all index.ts
cp ./countryfetch ~/.local/bin
If after this your shell cannot find countryfetch, this means you haven't added your local bin to PATH. Either add it to PATH, or make an alias in your .bashrc or .zshrc:
alias countryfetch="~/.local/bin/countryfetch"
Note: The executable you get from compilation can be stored and accessed from anywhere. Using the default way (install.sh), the installer simply runs
deno install --allow-all
and stores the executable in ~/.deno/bin/, which (if you have installed deno) should already be added to PATH, therefore you don't need any aliases. Your shell should be able to detect the commandcountryfetch
.
countryfetch <arguments>
<country_name>
- Find country information by name.capital <capital>
- Find country to which the specified capital belongs.sync
- Fetches data from API and stores it in~/.cache/countryfetch/countries.json
. This is done automatically, but can be triggered manually. Pass additional argumentsync flags
to fetch and convert flags in ASCII art. After syncing flags, every countryfetch command will display flag ASCII art.random
- Get random country information.raw
- Print country information in raw format as JavaScript object.
$ countryfetch germany
Country: Germany 🇩🇪
Lat/Lng: 51/9
Population: 83,240,525
Languages: German
Capital: Berlin
Capital Lat/Lng: 52.52/13.4
Region: Europe
Subregion: Western Europe
Timezones: UTC+01:00
Top Level Domain: .de
Currencies: Euro [€](EUR)
terminal_images library is used for image conversion. If you like my project, you should star this project as well. Maybe contribute and help the author too!
To enable displaying ASCII art, run countryfetch sync flags
. This may take a minute, depending on your network connection, as the
program fetches every flag image from countries data, converts them into ASCII art and stores them in "~/.cache/countryfetch/flags.json".
This library uses the unstable version of Deno, therefore if you get an error like "X is not a function" you should try passing the --unstable
flag.
Due to this, consistency is not guaranteed.
If for some reason you no longer want to display ASCII art, simply delete the flags.json in cache:
rm ~/.cache/countryfetch/flags.json
If you get an error after installing the newer version of the program, such as "cannot read properties of undefined",
you might have an outdated cache. Try running countryfetch sync
to update the cache.
Display country flag in ASCII format (like in neofetch).- Better arguments and options passing/handling.
- Users can customize which information to display about country.
- Get only one particular property about country (for example, get just the timezone of Netherlands).
- Custom query builder that makes a direct call to api and returns a readable information.
- A capital guessing game.
I will add new features when I have time, but you don't have to wait - add them yourself! Fork it and submit pull requests.