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
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 |
|
Python3 |