Cortex4py icon indicating copy to clipboard operation
Cortex4py copied to clipboard

Python API Client for Cortex

Results 9 Cortex4py issues
Sort by recently updated
recently updated
newest added

This prevents problems when installing cortex4py in recent python versions, where typing is installed as an external package, while there is a typing module included in the stdlib. The external...

Following exception is raised when calling api.jobs.get_report_async immediately after starting job with api.analyzers.run_by_name. ` cortex4py.exceptions.InvalidInputError: Invalid input exception ` ` > requests.exceptions.HTTPError: 500 Server Error: Internal Server Error for url:...

bug

The requests module internally works with Session objects. These can be customised in behaviour e.g. using retry adapters. This is extremely useful for error handling because the user application doesn't...

If the user has the file content in a buffer it is more efficient to be able to hand it to the analyzer directly instead of writing it out into...

I is it way to wait for the job to finish like in this example : ```python job1 = api.analyzers.run_by_name('FileInfo_6_0', { 'data': '/bin/ls', 'dataType': 'file' }, async=True) # The next...

question

I'm trying to write a little tool to keep monitored range limits. By the way, I can't get any kind of information. My main code is: ``` for analyzer in...

question

Hi, any way to get the used quota of an analyzer? Thanks

question

Analyzers are not able to produce files as analysis output before Cortex 3. This issue aims to prepare the availability of this feature.

feature

There is a huge difference in quality performance between using cortex4py and cortex API. When I use cortex API to run analizer job with post requests I get valid response...