
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The NVIDIA NGC software development kit to interact and develop Python utilities and applications to integrate with the NVIDIA GPU Cloud.
Python version >= 3.9
Install the package from pypi.org by running the following command:
pip install ngcsdk
This project will download and install additional third-party open source software projects. Review the license terms of these open source projects before use.
Some features require additional dependencies, which are optional unless you need gRPC dataset upload or enhanced telemetry.
To install these extras, use:
pip install ngcsdk[telemetry,datamover]
After installing the SDK, the first step is to create and configure the client.
To set the configuration, run the following functions.
Tip
This needs an API key. For information about generating an API key, refer to the setup, https://ngc.nvidia.com/setup.
from ngcsdk import Client
clt = Client()
clt.configure(api_key='****NkMQ', org_name='nvidia', team_name='no-team', ace_name='no-ace')
Validating configuration...
Successfully validated configuration.
clt.current_config()
[{'key': 'apikey', 'value': '****NkMQ', 'source': 'user settings'},
{'key': 'format_type', 'value': 'ascii', 'source': 'user settings'},
{'key': 'org', 'value': 'nvidia', 'source': 'user settings'},
{'key': 'team', 'value': 'no-team', 'source': 'user settings'},
{'key': 'ace', 'value': 'no-ace', 'source': 'user settings'}]
Configure debug logging using Python's logging utility.
import logging
from ngcsdk import Client
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
clt = Client()
ace = clt.basecommand.aces.info("nv-us-west-2")
DEBUG:ngcbase.api.connection:Requesting URL (GET): https://api.stg.ngc.nvidia.com/v2/org/nvidia/aces/ceph-sjc-4-dev
payload: None
params: None
DEBUG:ngcbase.api.authentication:Retrieving API Key Token from cache....
DEBUG:ngcbase.api.authentication:Token in use: ****hPWE
DEBUG:ngcbase.api.authentication:Expiration time of token: '2024-03-07 16:36:03.849188'
DEBUG:ngcbase.api.authentication:Fetched token from the cache. Expires 2024-03-07 16:36:03.849188
DEBUG:ngcbase.api.utils:Headers:
DEBUG:ngcbase.api.utils:{'Content-Type': 'application/json', ...}
DEBUG:ngcbase.api.connection:Response status: 200 - Reason: OK
DEBUG:ngcbase.api.connection:Time taken to process URL: https://api.stg.ngc.nvidia.com/v2/org/nvidia/aces/ceph-sjc-4-dev: 0.34587s
DEBUG:ngcbase.api.connection:Response is: {"requestStatus":{"statusCode":"SUCCESS"}, ...}
For more information on how to configure logging, see Python's official tutorial on logging.
Methods return either objects or JSON. Objects can be inspected and converted to a python dictionary or JSON format.
from ngcsdk import Client
clt = Client()
ace = clt.basecommand.aces.info("nv-us-west-2")
help(ace)
Help on Ace in module ngccli.data.api.Ace object:
class Ace(builtins.object)
| Ace(propDict=None)
|
| ACE is a collection of nodes that can run jobs
|
| Methods defined here:
|
| __init__(self, propDict=None)
| Initialize self. See help(type(self)) for accurate signature.
|
| isValid(self)
|
| toDict(self)
|
| toJSON(self, pretty=False)
ace.toDict()
{'allowExposedPort': False, ...}
ace.toJSON()
'{"allowExposedPort": false, ...}
aces = clt.basecommand.aces.list()
help(aces)
Help on chain object:
class chain(builtins.object)
| chain(*iterables) --> chain object
|
| Return a chain object whose .__next__() method returns elements from the
| first iterable until it is exhausted, then elements from the next
| iterable, until all of the iterables are exhausted.
|
| Methods defined here:
|
| __getattribute__(self, name, /)
| Return getattr(self, name).
|
| __iter__(self, /)
| Implement iter(self).
|
| __next__(self, /)
| Implement next(self).
[ace.name for ace in aces]
['ac-auth-debug-ace', ....]
FAQs
NVIDIA GPU Cloud SDK
We found that ngcsdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.