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:
Open your Visual Studio project.
Go to Tools → NuGet Package Manager → Manage NuGet Packages for Solution.
Search for MelissaData.CloudAPI.
Click Install.
Alternatively, you can install the package with .NET CLI:
Open command prompt and navigate to the root-directory of your project.
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