Installation Guide#

This guide provides installation instructions for using the library in both C# (.NET) and Python environments.


NuGet Installation (C# .NET)#

To install the package using NuGet, follow these steps:

  1. Open your Visual Studio project.

  2. Go to ToolsNuGet Package ManagerManage NuGet Packages for Solution.

  3. Search for MelissaData.CloudAPI.

  4. Click Install.

Alternatively, you can install the package with .NET CLI:

  1. Open command prompt and navigate to the root-directory of your project.

  2. Run the following command:

    dotnet add package MelissaData.CloudAPI
    

Importing in C##

After installing, add the following statement to import the namespace at the top of your C# file:

using MelissaData.CloudAPI;

pip Installation (Python)#

To install the package using pip, run the following command in your terminal or command prompt:

pip install melissadatacloudapi

Importing in Python#

After installing, import the package in your Python script using:

import melissadatacloudapi

Sample Code#

Cloud API Packages are compatible with multiple coding languages across different systems. The table below will link you to the sample code for each language hosted in the github repositories.

Language

Repository

C# .NET

melissa_favicon MelissaData/CloudApi-Dotnet

Python3

melissa_favicon MelissaData/CloudApi-Python3