fsl-sub-plugin-slurm


Namefsl-sub-plugin-slurm JSON
Version 1.6.1 PyPI version JSON
download
home_pagehttps://git.fmrib.ox.ac.uk/fsl/fsl_sub_plugin_slurm
SummaryFSL Cluster Submission Plugin for Slurm
upload_time2023-06-21 08:21:24
maintainer
docs_urlNone
authorDuncan Mortimer
requires_python~=3.7
licenseApache License Version 2.0
keywords fsl fsl neuroimaging neuroimaging cluster grid slurm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # fsl_sub_plugin_slurm

Job submission to SLURM variant cluster queues.

_Copyright 2018-2023 University of Oxford, Oxford, UK._

## Introduction

fsl\_sub provides a consistent interface to various cluster backends, with a fall back to running tasks locally where no cluster is available.
This fsl\_sub plugin provides support for submitting tasks to SLURM clusters.

For installation instructions please see INSTALL.md; for building packages see BUILD.md.

## Configuration

Use the command:

> fsl_sub_config slurm > fsl_sub.yml

to generate an example configuration, including queue definitions gleaned from the SLURM software - check these, paying attention to any warnings generated.

Use the fsl_sub.yml file as per the main fsl_sub documentation.

The configuration for the SLURM plugin is in the _method\_opts_ section, under the key _slurm_.

### Method options

| Key | Values (default/recommended in bold) | Description |
| ----|--------|-------------|
| queues | **True** | Does this method use queues/partitions (should be always be True) |
| memory\_in\_gb | True/**False** | Whether SLURM reports memory in GB - normally false |
| copy\_environment | **True**/False | Whether to replicate the environment variables in the shell that called fsl_sub into the job's shell
| has\_parallel_envs | **False**/True | SLURM does not provide parallel environments so this should always be false
| script\_conf | **True**/False | Whether _--usesscript_ option to fsl_sub is available via this method. This option allows you to define the grid options as comments in a shell script and then provide this to the cluster for running. Should be set to True.
| mail\_support | True/**False** | Whether the grid installation is configured to send email on job events.
| mail\_modes | Dictionary of option lists | If the grid has email notifications turned on, this option configures the submission options for different verbosity levels, 'b' = job start, 'e' = job end, 'a' = job abort, 'f' = all events, 'n' = no mail. Each event type should then have a list of submission mail arguments that will be applied to the submitted job. Typically, these should not be edited.
| mail\_mode | b/e/a/f/**n** | Which of the above mail_modes to use by default
| notify\_ram\_usage | **True**/False | Whether to notify SLURM of the RAM you have requested. SLURM is typically configured to give jobs a small RAM allocation so you will invariably need this set to true.
| set\_time\_limit | True/**False** | Whether to notify SLURM of the expected **maximum** run-time of your job. This helps the scheduler fill in reserved slots (for e.g. parallel environment jobs), however, this time limit will be enforced, resulting in a job being killed if it is exceeded, even if this is less than the queue run-time limit. This can be disabled on a per-job basis by setting the environment variable FSLSUB_NOTIMELIMIT to '1' (or 'True').
| array\_holds | **True**/False | Enable support array holds, e.g. sub-task 1 waits for parent sub-task 1.
| array\_limit | **True**/False | Enable limiting number of concurrent array tasks.
| job\_resources | **True**/False | Enable additional job resource specification support.
| projects | **True**/False | Enable support for projects typically used auditing/charging purposes.
| preseve\_modules | True/**False** | Whether to re-load shell modules on the compute node. Required if you have multiple CPU generations and per-generation optimised libraries configured with modules.
| add_module_paths | **[]**/ a list | List of file system paths to search for modules in addition to the system defined ones. Useful if you have your own shell modules directory but need to allow the compute node to auto-set it's MODULEPATH environment variable (e.g. to a architecture specific folder). Only used when preserve_modules is True.
| export\_vars | **[]**/List | List of environment variables that should transfered with the job to the compute node
| keep\_jobscript | True/**False** | Whether to preserve the generated wrapper in a file `wrapper_<jobid>.sh`. This file contains sufficient information to resubmit this job in the future. If the job fails to submit, this will be preserved in the file `wrapper_failed_<DD>-<MMM>-<YYYY>_<HH><MM><SS>.sh`.
| extra\_args | **[]**/List | List of additional SLURM arguments to pass through to the sheduler.
| strict_dependencies | True/**False** | Whether to use 'afterok' (True) or 'afterany' (False) when specifying simple job dependencies. This can also be controlled by the environment variable `FSLSUB_STRICTDEPS` (True="1", False="0").

### Coprocessor Configuration

This plugin is not capable of automatically determining all the necessary information to configure your co-processors but will advise of the information it can find and propose queue definitions for these GPU resources.

SLURM typically selects GPU resources with a GRES (Generic RESource) that defines the type and quantity of the co-processor. Where multiple classes of co-processor are available this might be selectable via the GRES or you may need to provide a _constraint_. If you would like to be able to support running on a class and all superior devices you need to be able to use constraints as GRES requests do not support logical combinations. The automatically generated configuration should include useful information about your GRES and constraints, but should you wish to obtain this information yourself use the commands:

* `sinfo -p <partition> -o %G` - This will list all the GRES defined on \<partition>.
* `sinfo -p <partition> -o %f` - This will list all features selectable by a `--constraint` as a comma-separated list.

Typically CUDA resources will be controlled using GRES or constraints with _gpu_ in the name, so look for these.

For each coprocessor hardware type you need a sub-section given an identifier than will be used to request this type of coprocessor. For CUDA processors this sub-section *must* be called 'cuda' to ensure that FSL tools can auto-detect and use CUDA hardware/queues.

| Key | Values (default/recommended in bold) | Description |
| ----|--------|-------------|
| resource| String | GRES that, when requested, selects machines with the hardware present, e.g. _gpu_. |
| classes | True/**False** | Whether more than one type of this co-processor is available |
| include\_more\_capable | **True**/False | Whether to automatically request all classes that are more capable than the requested class. This requires the _class\_constraints_ option to be set to True and for your SLURM cluster to be set up with GPU features/constraints |
| class\_types | Configuration dictionary | This contains the definition of the GPU classes... |
| | _Key_ | |
| | class selector | This is the letter (or word) that is used to select this class of co-processor from the fsl\_sub commandline. For CUDA devices you may consider using the card name e.g. A100.|
| | resource | This is the name of the SLURM GRES 'type' or contraint that will be used to select this GPU family.
| | doc | The description that appears in the fsl\_sub help text about this device.
| | capability | An integer defining the feature set of the device, your most basic device should be given the value 1 and more capable devices higher values, e.g. GTX = 1, Kelper = 2, Pascal = 3, Volta = 4.
| default\_class | _Class type key_ | The _class selector_ for the class to assign jobs to where a class has not been specified in the fsl\_sub call. For FSL tools that automatically submit to CUDA queues you should aim to select one that has good double-precision performance (K40|80, P100, V100, A100) and ensure all higher capability devices also have good double-precision.
| class\_constraint | **False**/string | Whether your SLURM cluster is configured to use constraints to select co-processor models/features. If so this should be set to the name of the feature that selects between the models and the co-processor class _resource_ strings set appropriately to match the available values. |
| presence\_test | _Program path_ (**nvidia-smi** for CUDA) | The name of a program that can be used to look for this coprocessor type, for example nvidia-smi for CUDA devices. Program needs to return non-zero exit status if there are no available coprocessors. |

### Queue Definitions

Slurm refers to queues as partitions. The example configuration should contain definitions for the automatically discovered partitions but you should review these, in particular any warnings generated.
To query SLURM for queue information you can use the following SLURM commands.

To get a list of all available partitions use:

> sinfo -s -o %P

Then the details for a queue can be obtained with:

> sinfo -p _partitionname_ -O 'CPUs,MaxCPUsPerNode,Memory,Time,NodeHost'

This will return details for every node within that partition. The queue definition should then be setup as follows:

| Key | Value type | Description
|-----|------------|-------------|
| time | integer in minutes | The _TIMELIMIT_ column reports in days-hours:minutes:seconds, this needs converting to minutes. Provide the maximum value observed, but if there are multiple values you should consider enabling job time notification so that SLURM can select the correct node.||
| max\_size | integer in GB | This is the maximum permitted memory on a node. This is usually reported by SLURM in MB, so for example 63000 should be configured as 63 (GB). It is equal to the maximum _MEMORY_ value reported. Once again, if there are multiple node types you should turn on RAM nofitication so that nodes can be correctly selected.
| max\_slots | _CPU_ contains the number of CPUs (threads) available on each node. Set this option to the maximum number reported. |
| slot\_size | **Null**/integer in GB | This is largely meaningless on SLURM and left at None. If you find that you need to get fsl\_sub to split your job into multiple threads to achieve your memory requirements then set this to the figure provided by your cluster manager. |
| group | integer | (Optional) All partitions with the same group number will be considered together when scheduling, typically this would be all queues with the same run time but differing memory/core counts. |
| priority | integer | (Optional) Priority within a group - higher wins. |
| default | True | Is this the default queue when no time/RAM details provided. |
| copros | _Co-processor dictionary_ | _Optional_ If this queue has hosts with co-processors (e.g. CUDA devices), then provide this entry, with a key identical to the associated co-processor definition, e.g. _cuda_. |
| | max\_quantity | An integer representing the maximum number of this coprocessor type available on a single compute node. This can be obtained by looking at the _complexes_ entry of `qconf -se <hostname>` for all of the hosts in this queue. If the complex is _gpu_ then an entry of _gpu=2_ would indicated that this value should be set to 2.
| | classes | A list of coprocessor classes (as defined in the coprocessor configuration section) that this queue has hardware for.
| | exclusive | True/**False** | Whether this queue is only used for co-processor requiring tasks. |

Where a partition has obvious GRES or features that define GPUs a proposed GPU configuration will be added as comments to the start of the queue definition. You should review this, create/update the coproc_opts>cuda record with the information in the comments and then this section can be uncommented to enable GPU support.

#### Compound Queues

Some clusters may be configured with multiple variants of the same partition, e.g. short.a, short.b, with each queue having different hardware, perhaps CPU generation or maximum memory or memory available per slot. To maximise scheduling options you can define compound queues which have the configuration of the least capable constituent. To define a compound queue, the queue name (key of the YAML dictionary) should be a comma separated list of queue names (no space).

## SLURM specific usage

### Job dependencies

The default dependency handler (`-j`) takes a job id and uses `--dependency=afterany:\<jobid>` to control job hierarchies of non-array tasks. To switch to the old behaviour (pre-version 1.6.0) of using `afterok` (ancestor job must complete successfully), either modify the method configuration to set `strict_dependencies` to True or set the environment variable `FSLSUB_STRICTDEPS` to "1".
Where you need to specify complex dependencies you may pass the raw SLURM dependency description (without the `--dependency=`) in the `-j` argument. For array tasks, the `array_hold` argument is used instead of the `-j` argument. This can take the same forms as the `-j` argument (job ids or complex hold descriptions).

            

Raw data

            {
    "_id": null,
    "home_page": "https://git.fmrib.ox.ac.uk/fsl/fsl_sub_plugin_slurm",
    "name": "fsl-sub-plugin-slurm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": "",
    "keywords": "FSL fsl Neuroimaging neuroimaging cluster grid slurm",
    "author": "Duncan Mortimer",
    "author_email": "duncan.mortimer@ndcn.ox.ac.uk",
    "download_url": "https://files.pythonhosted.org/packages/b6/bb/de21cc7409e16016a32ba1c43c5b440eebe80927127e5d27f29eb4865d9b/fsl_sub_plugin_slurm-1.6.1.tar.gz",
    "platform": null,
    "description": "# fsl_sub_plugin_slurm\n\nJob submission to SLURM variant cluster queues.\n\n_Copyright 2018-2023 University of Oxford, Oxford, UK._\n\n## Introduction\n\nfsl\\_sub provides a consistent interface to various cluster backends, with a fall back to running tasks locally where no cluster is available.\nThis fsl\\_sub plugin provides support for submitting tasks to SLURM clusters.\n\nFor installation instructions please see INSTALL.md; for building packages see BUILD.md.\n\n## Configuration\n\nUse the command:\n\n> fsl_sub_config slurm > fsl_sub.yml\n\nto generate an example configuration, including queue definitions gleaned from the SLURM software - check these, paying attention to any warnings generated.\n\nUse the fsl_sub.yml file as per the main fsl_sub documentation.\n\nThe configuration for the SLURM plugin is in the _method\\_opts_ section, under the key _slurm_.\n\n### Method options\n\n| Key | Values (default/recommended in bold) | Description |\n| ----|--------|-------------|\n| queues | **True** | Does this method use queues/partitions (should be always be True) |\n| memory\\_in\\_gb | True/**False** | Whether SLURM reports memory in GB - normally false |\n| copy\\_environment | **True**/False | Whether to replicate the environment variables in the shell that called fsl_sub into the job's shell\n| has\\_parallel_envs | **False**/True | SLURM does not provide parallel environments so this should always be false\n| script\\_conf | **True**/False | Whether _--usesscript_ option to fsl_sub is available via this method. This option allows you to define the grid options as comments in a shell script and then provide this to the cluster for running. Should be set to True.\n| mail\\_support | True/**False** | Whether the grid installation is configured to send email on job events.\n| mail\\_modes | Dictionary of option lists | If the grid has email notifications turned on, this option configures the submission options for different verbosity levels, 'b' = job start, 'e' = job end, 'a' = job abort, 'f' = all events, 'n' = no mail. Each event type should then have a list of submission mail arguments that will be applied to the submitted job. Typically, these should not be edited.\n| mail\\_mode | b/e/a/f/**n** | Which of the above mail_modes to use by default\n| notify\\_ram\\_usage | **True**/False | Whether to notify SLURM of the RAM you have requested. SLURM is typically configured to give jobs a small RAM allocation so you will invariably need this set to true.\n| set\\_time\\_limit | True/**False** | Whether to notify SLURM of the expected **maximum** run-time of your job. This helps the scheduler fill in reserved slots (for e.g. parallel environment jobs), however, this time limit will be enforced, resulting in a job being killed if it is exceeded, even if this is less than the queue run-time limit. This can be disabled on a per-job basis by setting the environment variable FSLSUB_NOTIMELIMIT to '1' (or 'True').\n| array\\_holds | **True**/False | Enable support array holds, e.g. sub-task 1 waits for parent sub-task 1.\n| array\\_limit | **True**/False | Enable limiting number of concurrent array tasks.\n| job\\_resources | **True**/False | Enable additional job resource specification support.\n| projects | **True**/False | Enable support for projects typically used auditing/charging purposes.\n| preseve\\_modules | True/**False** | Whether to re-load shell modules on the compute node. Required if you have multiple CPU generations and per-generation optimised libraries configured with modules.\n| add_module_paths | **[]**/ a list | List of file system paths to search for modules in addition to the system defined ones. Useful if you have your own shell modules directory but need to allow the compute node to auto-set it's MODULEPATH environment variable (e.g. to a architecture specific folder). Only used when preserve_modules is True.\n| export\\_vars | **[]**/List | List of environment variables that should transfered with the job to the compute node\n| keep\\_jobscript | True/**False** | Whether to preserve the generated wrapper in a file `wrapper_<jobid>.sh`. This file contains sufficient information to resubmit this job in the future. If the job fails to submit, this will be preserved in the file `wrapper_failed_<DD>-<MMM>-<YYYY>_<HH><MM><SS>.sh`.\n| extra\\_args | **[]**/List | List of additional SLURM arguments to pass through to the sheduler.\n| strict_dependencies | True/**False** | Whether to use 'afterok' (True) or 'afterany' (False) when specifying simple job dependencies. This can also be controlled by the environment variable `FSLSUB_STRICTDEPS` (True=\"1\", False=\"0\").\n\n### Coprocessor Configuration\n\nThis plugin is not capable of automatically determining all the necessary information to configure your co-processors but will advise of the information it can find and propose queue definitions for these GPU resources.\n\nSLURM typically selects GPU resources with a GRES (Generic RESource) that defines the type and quantity of the co-processor. Where multiple classes of co-processor are available this might be selectable via the GRES or you may need to provide a _constraint_. If you would like to be able to support running on a class and all superior devices you need to be able to use constraints as GRES requests do not support logical combinations. The automatically generated configuration should include useful information about your GRES and constraints, but should you wish to obtain this information yourself use the commands:\n\n* `sinfo -p <partition> -o %G` - This will list all the GRES defined on \\<partition>.\n* `sinfo -p <partition> -o %f` - This will list all features selectable by a `--constraint` as a comma-separated list.\n\nTypically CUDA resources will be controlled using GRES or constraints with _gpu_ in the name, so look for these.\n\nFor each coprocessor hardware type you need a sub-section given an identifier than will be used to request this type of coprocessor. For CUDA processors this sub-section *must* be called 'cuda' to ensure that FSL tools can auto-detect and use CUDA hardware/queues.\n\n| Key | Values (default/recommended in bold) | Description |\n| ----|--------|-------------|\n| resource| String | GRES that, when requested, selects machines with the hardware present, e.g. _gpu_. |\n| classes | True/**False** | Whether more than one type of this co-processor is available |\n| include\\_more\\_capable | **True**/False | Whether to automatically request all classes that are more capable than the requested class. This requires the _class\\_constraints_ option to be set to True and for your SLURM cluster to be set up with GPU features/constraints |\n| class\\_types | Configuration dictionary | This contains the definition of the GPU classes... |\n| | _Key_ | |\n| | class selector | This is the letter (or word) that is used to select this class of co-processor from the fsl\\_sub commandline. For CUDA devices you may consider using the card name e.g. A100.|\n| | resource | This is the name of the SLURM GRES 'type' or contraint that will be used to select this GPU family.\n| | doc | The description that appears in the fsl\\_sub help text about this device.\n| | capability | An integer defining the feature set of the device, your most basic device should be given the value 1 and more capable devices higher values, e.g. GTX = 1, Kelper = 2, Pascal = 3, Volta = 4.\n| default\\_class | _Class type key_ | The _class selector_ for the class to assign jobs to where a class has not been specified in the fsl\\_sub call. For FSL tools that automatically submit to CUDA queues you should aim to select one that has good double-precision performance (K40|80, P100, V100, A100) and ensure all higher capability devices also have good double-precision.\n| class\\_constraint | **False**/string | Whether your SLURM cluster is configured to use constraints to select co-processor models/features. If so this should be set to the name of the feature that selects between the models and the co-processor class _resource_ strings set appropriately to match the available values. |\n| presence\\_test | _Program path_ (**nvidia-smi** for CUDA) | The name of a program that can be used to look for this coprocessor type, for example nvidia-smi for CUDA devices. Program needs to return non-zero exit status if there are no available coprocessors. |\n\n### Queue Definitions\n\nSlurm refers to queues as partitions. The example configuration should contain definitions for the automatically discovered partitions but you should review these, in particular any warnings generated.\nTo query SLURM for queue information you can use the following SLURM commands.\n\nTo get a list of all available partitions use:\n\n> sinfo -s -o %P\n\nThen the details for a queue can be obtained with:\n\n> sinfo -p _partitionname_ -O 'CPUs,MaxCPUsPerNode,Memory,Time,NodeHost'\n\nThis will return details for every node within that partition. The queue definition should then be setup as follows:\n\n| Key | Value type | Description\n|-----|------------|-------------|\n| time | integer in minutes | The _TIMELIMIT_ column reports in days-hours:minutes:seconds, this needs converting to minutes. Provide the maximum value observed, but if there are multiple values you should consider enabling job time notification so that SLURM can select the correct node.||\n| max\\_size | integer in GB | This is the maximum permitted memory on a node. This is usually reported by SLURM in MB, so for example 63000 should be configured as 63 (GB). It is equal to the maximum _MEMORY_ value reported. Once again, if there are multiple node types you should turn on RAM nofitication so that nodes can be correctly selected.\n| max\\_slots | _CPU_ contains the number of CPUs (threads) available on each node. Set this option to the maximum number reported. |\n| slot\\_size | **Null**/integer in GB | This is largely meaningless on SLURM and left at None. If you find that you need to get fsl\\_sub to split your job into multiple threads to achieve your memory requirements then set this to the figure provided by your cluster manager. |\n| group | integer | (Optional) All partitions with the same group number will be considered together when scheduling, typically this would be all queues with the same run time but differing memory/core counts. |\n| priority | integer | (Optional) Priority within a group - higher wins. |\n| default | True | Is this the default queue when no time/RAM details provided. |\n| copros | _Co-processor dictionary_ | _Optional_ If this queue has hosts with co-processors (e.g. CUDA devices), then provide this entry, with a key identical to the associated co-processor definition, e.g. _cuda_. |\n| | max\\_quantity | An integer representing the maximum number of this coprocessor type available on a single compute node. This can be obtained by looking at the _complexes_ entry of `qconf -se <hostname>` for all of the hosts in this queue. If the complex is _gpu_ then an entry of _gpu=2_ would indicated that this value should be set to 2.\n| | classes | A list of coprocessor classes (as defined in the coprocessor configuration section) that this queue has hardware for.\n| | exclusive | True/**False** | Whether this queue is only used for co-processor requiring tasks. |\n\nWhere a partition has obvious GRES or features that define GPUs a proposed GPU configuration will be added as comments to the start of the queue definition. You should review this, create/update the coproc_opts>cuda record with the information in the comments and then this section can be uncommented to enable GPU support.\n\n#### Compound Queues\n\nSome clusters may be configured with multiple variants of the same partition, e.g. short.a, short.b, with each queue having different hardware, perhaps CPU generation or maximum memory or memory available per slot. To maximise scheduling options you can define compound queues which have the configuration of the least capable constituent. To define a compound queue, the queue name (key of the YAML dictionary) should be a comma separated list of queue names (no space).\n\n## SLURM specific usage\n\n### Job dependencies\n\nThe default dependency handler (`-j`) takes a job id and uses `--dependency=afterany:\\<jobid>` to control job hierarchies of non-array tasks. To switch to the old behaviour (pre-version 1.6.0) of using `afterok` (ancestor job must complete successfully), either modify the method configuration to set `strict_dependencies` to True or set the environment variable `FSLSUB_STRICTDEPS` to \"1\".\nWhere you need to specify complex dependencies you may pass the raw SLURM dependency description (without the `--dependency=`) in the `-j` argument. For array tasks, the `array_hold` argument is used instead of the `-j` argument. This can take the same forms as the `-j` argument (job ids or complex hold descriptions).\n",
    "bugtrack_url": null,
    "license": "Apache License Version 2.0",
    "summary": "FSL Cluster Submission Plugin for Slurm",
    "version": "1.6.1",
    "project_urls": {
        "Documentation": "https://fsl.fmrib.ox.ac.uk/fsl/fslwiki",
        "Homepage": "https://git.fmrib.ox.ac.uk/fsl/fsl_sub_plugin_slurm",
        "Source": "https://git.fmrib.ox.ac.uk/fsl/fsl_sub_plugin_slurm"
    },
    "split_keywords": [
        "fsl",
        "fsl",
        "neuroimaging",
        "neuroimaging",
        "cluster",
        "grid",
        "slurm"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70c356219884ee5e322d56fdc2dfcb39468424595c4eb936f07664373eb32451",
                "md5": "5fc7275d98ab21acc31434727f4b1c6f",
                "sha256": "b00a71becebac5e2e56699ab061d6aedcc1d22f4b88a0cbce2143adb0a1fbd9f"
            },
            "downloads": -1,
            "filename": "fsl_sub_plugin_slurm-1.6.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5fc7275d98ab21acc31434727f4b1c6f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.7",
            "size": 28983,
            "upload_time": "2023-06-21T08:21:22",
            "upload_time_iso_8601": "2023-06-21T08:21:22.460901Z",
            "url": "https://files.pythonhosted.org/packages/70/c3/56219884ee5e322d56fdc2dfcb39468424595c4eb936f07664373eb32451/fsl_sub_plugin_slurm-1.6.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6bbde21cc7409e16016a32ba1c43c5b440eebe80927127e5d27f29eb4865d9b",
                "md5": "7df1f42a45f804e73307adb6b7167042",
                "sha256": "db0dd6309afdf6f3329d613c2cb0d2a57e1078d0ab5f6eb2cafff9de5d1bd215"
            },
            "downloads": -1,
            "filename": "fsl_sub_plugin_slurm-1.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "7df1f42a45f804e73307adb6b7167042",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.7",
            "size": 32782,
            "upload_time": "2023-06-21T08:21:24",
            "upload_time_iso_8601": "2023-06-21T08:21:24.035010Z",
            "url": "https://files.pythonhosted.org/packages/b6/bb/de21cc7409e16016a32ba1c43c5b440eebe80927127e5d27f29eb4865d9b/fsl_sub_plugin_slurm-1.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-21 08:21:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fsl-sub-plugin-slurm"
}
        
Elapsed time: 0.08065s