This package will contain four functions that will perform actions related to cities and countries across the world.
Project description
worldfinder
This packages provides a set of four functions for working with geographical information about cities and countries. These functions will allow users to find the capital city of a country, find all countries that contain a given city name, determine if a city belongs to a specific country, and get statistics about a specified country such as population, GDP, and surface area. These functions will utilize a pre-existing database of city and country information to return the necessary information.
Functions and Data
Data
The data for this library will come from two csv files containing country and city information.
- cities.csv: Contains information about cities around the world. Data was retrieved from Darshan Gada's GitHub repository. It is an open source database with information sourced from mutliple sources and can be accessed here.
- countries.csv: Contains information about countries around the world. Data was retrieved from Nidula Elgiriyewithana's Kaggle dataset. It is a dataset that was compiled from multiple sources in 2023, it can be accessed here.
Functions
-
get_capital(country):- This function will retrieve the capital city of a given country name passed as an input. The function outputs a string representing the capital city name.
-
get_countries(city):- This function searches for a specified city and returns a list of strings of unique countries where the city is located.
-
check_city(city, country):- This function will return a boolean on if the given city exist in the given country. It will return True if the city exists in a given country otherwise it will return False.
-
get_country_statistic(country, statistic):- This function will return a string representing a specified statistic for a given country.
worldfinder in the Python Ecosystem
The PyPI server hosts numerous packages related to country and city data. Among these, we have identified a few noteworthy examples that offer functionality similar to our package. For instance, a package with functionality similar to our get_capital function can be found here. Similarly, a package providing features comparable to our get_country_statistics function, which retrieves information about a specified country, is available here. For functionality resembling our get_countries function, another example can be found here.
However, to the best of our knowledge, there is no existing PyPI package that offers a dedicated function to verify whether a city is located in a specified country. The strength of our package lies in its locally stored data and specialized functions that facilitate searches based on city names, offering a more versatile and comprehensive approach.
Installation
$ pip install worldfinder
Documentation
Our online documentation can be found here.
Usage
Once you install worldfinder using pip, you can access the following functions as shown below in the examples.
-
Getting the Capital City of a Country: The
get_capitalfunction returns the capital city of the given country.from worldfinder.get_capital import get_capital capital_city = get_capital("countryName") # Replace countryName with the actual country name print(capital_city) # This will print out the capital city of a country
-
Getting all Countries that Contain a City: The
get_countriesfunction will return a list of countries where the given city name exists in.from worldfinder.get_countries import get_countries # Get list of countries containing a city country_list = get_countries("cityName") # Replace cityName with the actual city name print(country_list) # Prints a list of countries containing the city
-
Checking if a City Exists in a Country: The
check_cityfunction checks if the given city name is a city in the given country.from worldfinder.check_city import check_city city_exists = check_city("cityName", "countryName") # Replace strings with actual values print(city_exists) # Returns True if the city exists in the country otherwise False
-
Getting a Country's Statistic: The
get_country_statisticfunction returns the country statistic for the specified country. Currently there are 5 acceptable options for country statistics (gdp, population, cpi, birth rate, unemployment rate)from worldfinder.get_country_statistic import get_country_statistic statistic = get_country_statistic("countryName", "statistic") # Replace strings with actual values print(statistic) # Prints the country's statistic
For more detailed examples on function usage, please refer to this tutorial.
Running Tests
To make sure the worldfinder package is working properly on your system, you can run the testing scripts with `pytest. This will require you to have pytest installed on your system.
$ pip install pytest
You will then need to clone the repository on to your machine and navigate to the root directory. Once that is done you can execute the following command to run our testing scripts:
$ pytest
To get a view of the test coverage, you can run the following command:
$ pytest --cov=src/worldfinder
Limitations and Acknowledgments
While this package aims to provide a comprehensive and accurate dataset of countries and their capitals, we acknowledge the following limitations and potential areas for improvement:
-
Recognition of Certain Countries and Territories: The dataset may not include some countries or territories that are currently fighting for recognition, such as Taiwan, Palestine, and Kosovo. The inclusion or exclusion of these regions often depends on the sources used to compile the dataset and does not reflect the package authors' political stance or opinions.
-
Countries with Multiple Capitals: Some countries have multiple capitals due to their government structure or ongoing conflicts (e.g., South Africa has three capitals: Pretoria, Bloemfontein, and Cape Town). For a full list of such cases, refer to Wikipedia's List of Countries with Multiple Capitals.
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
License
worldfinder was created by Group 17. It is licensed under the terms of the MIT license.
Credits
worldfinder was created with cookiecutter and the py-pkgs-cookiecutter template.
Contributors
- Brian Chang
- Michael Gelfand
- Elaine Chu
- Coco Shi
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file worldfinder-1.0.0.tar.gz.
File metadata
- Download URL: worldfinder-1.0.0.tar.gz
- Upload date:
- Size: 3.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afacb7ee10c997401ce3c6a0f8e5c7e4c50bdf0314577e8b9c04e1367064bdce
|
|
| MD5 |
54f64b7a3bab5fd268598f02f1c9a72d
|
|
| BLAKE2b-256 |
e5bf97f4fb9dfbc430d219f71d6278c80175ee87fbe7e6a0ec092945bd4e6273
|
File details
Details for the file worldfinder-1.0.0-py3-none-any.whl.
File metadata
- Download URL: worldfinder-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b1ccf3f4666b6556aef94b31e438e7d1d0d5b031b0a3b7a2625255eb1519921
|
|
| MD5 |
5e422abc9ce0b8517a09646ffb523011
|
|
| BLAKE2b-256 |
816f60ebf80d884f29f295f24b8ba944921933e706fb3fc3b3b892a148a8a9ad
|