Python Development Environment
This section explains how to set up a Python development environment to employ this client.
Supported Python Versions
The supported Python versions are as follows:
Product | Versions |
---|---|
Python | 3.7, 3.8, 3.9 |
Install Python Client Using Pip
NCache provides Python packages containing various libraries for NCache to set a Python development environment and work in client and server environments. To install the Python packages for NCache Enterprise or Professional, run the following command in a shell environment. This will install all NCache client libraries in your application and will setup the Python development environment for your application:
- For NCache Enterprise:
pip install ncache-client
- For NCache Professional:
pip install ncache-professional-client
Import Modules
In your client application, you will also have to import the NCache
module to start working with NCache using Python.
import NCache
See Also
Create Cache
Connecting to Cache
Add Data to Cache
Client Side API Programming