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