Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vengeance-currency-api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vengeance-currency-api

Library for currencies of countries across the world.

  • 2.2.0
  • PyPI
  • Socket score

Maintainers
1

Vengeance World Currency API

Welcome to the Currency API, a powerful and easy-to-use RESTful API designed to provide comprehensive currency symbols and codes for various countries around the globe. This API is perfect for developers looking to integrate currency information into their applications.

Features

  • Simple Integration: Effortlessly integrate currency data into your applications.
  • Comprehensive Coverage: Access currency information for numerous countries.
  • Lightweight: Designed to be lightweight and fast, ensuring optimal performance.

Installation

Step 1: Clone the Repository

To get started, clone the repository to your local machine:

git clone https://github.com/preetham-1811/currency-api.git cd currency-api

Step 2: Install Dependencies

Next, install the required dependencies using pip:

pip install -r requirements.txt

Usage

To run the API, follow these steps:

  1. Import the CurrencyAPI class from the package.
  2. Create an instance of the API.
  3. Call the run method to start the server.
from vengeance_currency_api import CurrencyAPI

api = CurrencyAPI()

Once the server is running, you can access the API endpoints.

API Functions

Get Currency Information for a Specific Country

  • Function: get_currency_by_country("{country_name}")
  • Description: Retrieve detailed currency information (symbol and code) for a specific country.
  • Example:
    • Response: { "symbol": "$", "code": "USD" }

Get Countries that use Specific Currency

  • Function: get_countries_by_code({code})
  • Description: Retrieve complete countries list that use a specific currency.
  • Response:
    • Example Output:
    {
       "countries": [
          "Spain",
          "United Kingdom"
       ]
    }
    

Search currencies information by country name or currency code

  • Function: search_currency({country_name} or {code})
  • Description: Get Country Name and Code based on your search query.
  • Response:
    • Example Output:
    [
     {"Country": "Austria", "Code": "EUR"}, 
     {"Country": "Belgium", "Code": "EUR"},
     ...
    ]
    
    

Currency Converter

  • Function: convert_currency({amount}, {from_code}, {to_code})
  • Description: Convert currency based on provided amount and codes.
  • Response:
    • Example Output for (2, "USD", "INR"):
    
    {
       "converted_amount": 168.173004
    }
    
    

Contributing

We welcome contributions! If you'd like to contribute to the Currency API, please fork the repository and submit a pull request. Your help in improving this API is greatly appreciated!

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Support

If you have any questions or need support, feel free to open an issue on GitHub or reach out directly.


Feel free to adjust any sections or add more details specific to your project! This structure provides clear guidance and encourages engagement with the API.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc