shell bypass 403

UnknownSec Shell

: /lib64/python2.7/ [ drwxr-xr-x ]

name : ConfigParser.pyo
�
zfc
@s�dZyddlmZWnek
r3eZnXddlZdddddd	d
ddd
dddg
ZdZdZ	de
fd��YZdefd��YZdefd��YZ
defd��YZdefd��YZdefd��YZd	efd��YZdefd��YZd
efd��YZdefd��YZdfd��YZddlZd ejfd!��YZdefd"��YZd
efd#��YZdS($sConfiguration file parser.

A setup file consists of sections, lead by a "[section]" header,
and followed by "name: value" entries, with continuations and such in
the style of RFC 822.

The option values can contain format strings which refer to other values in
the same section, or values in a special [DEFAULT] section.

For example:

    something: %(dir)s/whatever

would resolve the "%(dir)s" to the value of dir.  All reference
expansions are done late, on demand.

Intrinsic defaults can be specified by passing them into the
ConfigParser constructor as a dictionary.

class:

ConfigParser -- responsible for parsing a list of
                configuration files, and managing the parsed database.

    methods:

    __init__(defaults=None)
        create the parser and specify a dictionary of intrinsic defaults.  The
        keys must be strings, the values must be appropriate for %()s string
        interpolation.  Note that `__name__' is always an intrinsic default;
        its value is the section's name.

    sections()
        return all the configuration section names, sans DEFAULT

    has_section(section)
        return whether the given section exists

    has_option(section, option)
        return whether the given option exists in the given section

    options(section)
        return list of configuration options for the named section

    read(filenames)
        read and parse the list of named configuration files, given by
        name.  A single filename is also allowed.  Non-existing files
        are ignored.  Return list of successfully read files.

    readfp(fp, filename=None)
        read and parse one configuration file, given as a file object.
        The filename defaults to fp.name; it is only used in error
        messages (if fp has no `name' attribute, the string `<???>' is used).

    get(section, option, raw=False, vars=None)
        return a string value for the named option.  All % interpolations are
        expanded in the return values, based on the defaults passed into the
        constructor and the DEFAULT section.  Additional substitutions may be
        provided using the `vars' argument, which must be a dictionary whose
        contents override any pre-existing defaults.

    getint(section, options)
        like get(), but convert value to an integer

    getfloat(section, options)
        like get(), but convert value to a float

    getboolean(section, options)
        like get(), but convert value to a boolean (currently case
        insensitively defined as 0, false, no, off for False, and 1, true,
        yes, on for True).  Returns False or True.

    items(section, raw=False, vars=None)
        return a list of tuples with (name, value) for each option
        in the section.

    remove_section(section)
        remove the given file section and all its options

    remove_option(section, option)
        remove the given option from the given section

    set(section, option, value)
        set the given option

    write(fp)
        write the configuration state in .ini format
i����(tOrderedDictNtNoSectionErrortDuplicateSectionErrort
NoOptionErrortInterpolationErrortInterpolationDepthErrortInterpolationSyntaxErrortParsingErrortMissingSectionHeaderErrortConfigParsertSafeConfigParsertRawConfigParsertDEFAULTSECTtMAX_INTERPOLATION_DEPTHtDEFAULTi
tErrorcBsJeZdZd�Zd�Zeee�Zdd�Zd�ZeZ	RS(s'Base class for ConfigParser exceptions.cCs|jS(sSGetter for 'message'; needed only to override deprecation in
        BaseException.(t_Error__message(tself((s$/usr/lib64/python2.7/ConfigParser.pyt_get_messagesscCs
||_dS(sSSetter for 'message'; needed only to override deprecation in
        BaseException.N(R(Rtvalue((s$/usr/lib64/python2.7/ConfigParser.pyt_set_messagexstcCs||_tj||�dS(N(tmessaget	Exceptiont__init__(Rtmsg((s$/usr/lib64/python2.7/ConfigParser.pyR�s	cCs|jS(N(R(R((s$/usr/lib64/python2.7/ConfigParser.pyt__repr__�s(
t__name__t
__module__t__doc__RRtpropertyRRRt__str__(((s$/usr/lib64/python2.7/ConfigParser.pyRps			cBseZdZd�ZRS(s2Raised when no section matches a requested option.cCs0tj|d|f�||_|f|_dS(NsNo section: %r(RRtsectiontargs(RR ((s$/usr/lib64/python2.7/ConfigParser.pyR�s	(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBseZdZd�ZRS(s*Raised when a section is multiply-created.cCs-tj|d|�||_|f|_dS(NsSection %r already exists(RRR R!(RR ((s$/usr/lib64/python2.7/ConfigParser.pyR�s	(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBseZdZd�ZRS(s!A requested option was not found.cCs?tj|d||f�||_||_||f|_dS(NsNo option %r in section: %r(RRtoptionR R!(RR"R ((s$/usr/lib64/python2.7/ConfigParser.pyR�s
		(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBseZdZd�ZRS(s0Base class for interpolation-related exceptions.cCs8tj||�||_||_|||f|_dS(N(RRR"R R!(RR"R R((s$/usr/lib64/python2.7/ConfigParser.pyR�s		(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�stInterpolationMissingOptionErrorcBseZdZd�ZRS(sAA string substitution required a setting which was not available.cCsNd||||f}tj||||�||_||||f|_dS(NsNBad value substitution:
	section: [%s]
	option : %s
	key    : %s
	rawval : %s
(RRt	referenceR!(RR"R trawvalR$R((s$/usr/lib64/python2.7/ConfigParser.pyR�s
	(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR#�scBseZdZRS(sjRaised when the source text into which substitutions are made
    does not conform to the required syntax.(RRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBseZdZd�ZRS(s0Raised when substitutions are nested too deeply.cCs?d|||f}tj||||�|||f|_dS(NsSValue interpolation too deeply recursive:
	section: [%s]
	option : %s
	rawval : %s
(RRR!(RR"R R%R((s$/usr/lib64/python2.7/ConfigParser.pyR�s(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBs eZdZd�Zd�ZRS(s>Raised when a configuration file does not follow legal syntax.cCs6tj|d|�||_g|_|f|_dS(Ns File contains parsing errors: %s(RRtfilenameterrorsR!(RR&((s$/usr/lib64/python2.7/ConfigParser.pyR�s		cCs3|jj||f�|jd||f7_dS(Ns
	[line %2d]: %s(R'tappendR(Rtlinenotline((s$/usr/lib64/python2.7/ConfigParser.pyR(�s(RRRRR((((s$/usr/lib64/python2.7/ConfigParser.pyR�s	cBseZdZd�ZRS(s@Raised when a key-value pair is found before any section header.cCsNtj|d|||f�||_||_||_|||f|_dS(Ns7File contains no section headers.
file: %s, line: %d
%r(RRR&R)R*R!(RR&R)R*((s$/usr/lib64/python2.7/ConfigParser.pyR�s			(RRRR(((s$/usr/lib64/python2.7/ConfigParser.pyR�scBs?eZd eed�Zd�Zd�Zd�Zd�Z	d�Z
d�Zd d�Zd�Z
d	�Zd
�Zd�Zd�Zied
6ed6ed6ed6ed6ed6ed6ed6Zd�Zd�Zd�Zd d�Zd�Zd�Zd�Zejd�Zejd�Zejd�Zd�Z RS(!cCs�||_|j�|_|j�|_|r<|j|_n|j|_|r�x3|j�D]"\}}||j|j|�<q[WndS(N(t_dictt	_sectionst	_defaultst	OPTCRE_NVt_optcretOPTCREtitemstoptionxform(Rtdefaultst	dict_typetallow_no_valuetkeyR((s$/usr/lib64/python2.7/ConfigParser.pyR�s	cCs|jS(N(R-(R((s$/usr/lib64/python2.7/ConfigParser.pyR3�scCs
|jj�S(s3Return a list of section names, excluding [DEFAULT](R,tkeys(R((s$/usr/lib64/python2.7/ConfigParser.pytsections�scCsW|j�dkr"td|�n||jkr@t|��n|j�|j|<dS(s�Create a new section in the configuration.

        Raise DuplicateSectionError if a section by the specified name
        already exists. Raise ValueError if name is DEFAULT or any of it's
        case-insensitive variants.
        tdefaultsInvalid section name: %sN(tlowert
ValueErrorR,RR+(RR ((s$/usr/lib64/python2.7/ConfigParser.pytadd_section�s
cCs
||jkS(s~Indicate whether the named section is present in the configuration.

        The DEFAULT section is not acknowledged.
        (R,(RR ((s$/usr/lib64/python2.7/ConfigParser.pythas_sectionscCsgy|j|j�}Wntk
r6t|��nX|j|j�d|kr]|d=n|j�S(s9Return a list of option names for the given section name.R(R,tcopytKeyErrorRtupdateR-R7(RR topts((s$/usr/lib64/python2.7/ConfigParser.pytoptionss

cCs�t|t�r|g}ng}x\|D]T}yt|�}Wntk
rTq(nX|j||�|j�|j|�q(W|S(s�Read and parse a filename or a list of filenames.

        Files that cannot be opened are silently ignored; this is
        designed so that you can specify a list of potential
        configuration file locations (e.g. current directory, user's
        home directory, systemwide directory), and all existing
        configuration files in the list will be read.  A single
        filename may also be given.

        Return list of successfully read files.
        (t
isinstancet
basestringtopentIOErrort_readtcloseR((Rt	filenamestread_okR&tfp((s$/usr/lib64/python2.7/ConfigParser.pytreads


cCsJ|dkr6y
|j}Wq6tk
r2d}q6Xn|j||�dS(sLike read() but the argument must be a file-like object.

        The `fp' argument must have a `readline' method.  Optional
        second argument is the `filename', which if not given, is
        taken from fp.name.  If fp has no `name' attribute, `<???>' is
        used.

        s<???>N(tNonetnametAttributeErrorRG(RRKR&((s$/usr/lib64/python2.7/ConfigParser.pytreadfp6s	


cCs�|j|�}||jkre|tkr9t|��n||jkrS|j|St||��nK||j|kr�|j||S||jkr�|j|St||��dS(N(R2R,RRR-R(RR R"topt((s$/usr/lib64/python2.7/ConfigParser.pytgetFscCs�y|j|}Wn8tk
rK|tkr<t|��n|j�}nX|jj�}|j|�d|kr~|d=n|j�S(NR(	R,R?RRR+R-R>R@R1(RR td2td((s$/usr/lib64/python2.7/ConfigParser.pyR1Vs


cCs||j||��S(N(RR(RR tconvR"((s$/usr/lib64/python2.7/ConfigParser.pyt_getcscCs|j|t|�S(N(RVtint(RR R"((s$/usr/lib64/python2.7/ConfigParser.pytgetintfscCs|j|t|�S(N(RVtfloat(RR R"((s$/usr/lib64/python2.7/ConfigParser.pytgetfloatist1tyesttruetont0tnotfalsetoffcCsH|j||�}|j�|jkr7td|�n|j|j�S(NsNot a boolean: %s(RRR:t_boolean_statesR;(RR R"tv((s$/usr/lib64/python2.7/ConfigParser.pyt
getbooleanoscCs
|j�S(N(R:(Rt	optionstr((s$/usr/lib64/python2.7/ConfigParser.pyR2uscCsu|s|tkr/|j|�}||jkS||jkrBtS|j|�}||j|kpp||jkSdS(s=Check for the existence of a given option in a given section.N(RR2R-R,tFalse(RR R"((s$/usr/lib64/python2.7/ConfigParser.pyt
has_optionxs
cCsg|s|tkr|j}n1y|j|}Wntk
rOt|��nX|||j|�<dS(sSet an option.N(RR-R,R?RR2(RR R"Rtsectdict((s$/usr/lib64/python2.7/ConfigParser.pytset�s
cCs8|jrs|jdt�xF|jj�D]5\}}|jd|t|�jdd�f�q*W|jd�nx�|jD]�}|jd|�x�|j|j�D]w\}}|dkr�q�n|dk	s�|j|j	krdj
|t|�jdd�f�}n|jd|�q�W|jd�q}WdS(	s?Write an .ini-format representation of the configuration state.s[%s]
s%s = %s
s
s
	Rs = s%s
N(R-twriteRR1tstrtreplaceR,RMR/R0tjoin(RRKR6RR ((s$/usr/lib64/python2.7/ConfigParser.pyRk�s	- *cCs|s|tkr|j}n1y|j|}Wntk
rOt|��nX|j|�}||k}|r{||=n|S(sRemove an option.(RR-R,R?RR2(RR R"Ritexisted((s$/usr/lib64/python2.7/ConfigParser.pyt
remove_option�s

cCs&||jk}|r"|j|=n|S(sRemove a file section.(R,(RR Ro((s$/usr/lib64/python2.7/ConfigParser.pytremove_section�s
s\[(?P<header>[^]]+)\]s9(?P<option>[^:=\s][^:=]*)\s*(?P<vi>[:=])\s*(?P<value>.*)$s>(?P<option>[^:=\s][^:=]*)\s*(?:(?P<vi>[:=])\s*(?P<value>.*))?$cCs:d}d}d}d}x�tr�|j�}|s7Pn|d}|j�dks|ddkriqn|jdd�dj�dkr�|ddkr�qn|dj�r�|dk	r�|r�|j�}|r�||j|�q�q|jj	|�}	|	rv|	j
d�}
|
|jkr2|j|
}n;|
tkrJ|j
}n#|j�}|
|d<||j|
<d}q|dkr�t|||��q|jj	|�}	|	r�|	j
d	d
d�\}}}|j|j��}|dk	rv|dkrEd|krE|jd�}
|
dkrE||
dj�rE||
 }qEn|j�}|dkrfd}n|g||<q�|||<q|s�t|�}n|j|t|��qW|r�|�n|j
g}|j|jj��xP|D]H}x?|j�D]1\}}t|t�r�dj|�||<q�q�Wq�WdS(s�Parse a sectioned setup file.

        The sections in setup file contains a title line at the top,
        indicated by a name in square brackets (`[]'), plus key/value
        options lines, indicated by `name: value' format lines.
        Continuations are represented by an embedded newline then
        leading whitespace.  Blank lines, lines beginning with a '#',
        and just about everything else are ignored.
        iiRs#;tremtrRtheaderRR"tviRt=t:t;i����s""s
N(RvRw(RMtTruetreadlinetstriptsplitR:tisspaceR(tSECTCREtmatchtgroupR,RR-R+RR/R2trstriptfindRtreprtextendtvaluesR1RCtlistRn(RRKtfpnametcursecttoptnameR)teR*RtmotsectnameRutoptvaltpostall_sectionsRBRNtval((s$/usr/lib64/python2.7/ConfigParser.pyRG�sn
	
"2"

	 	
	
N(!RRRMt
_default_dictRgRR3R8R<R=RBRLRPRRR1RVRXRZRyRcReR2RhRjRkRpRqtretcompileR~R0R.RG(((s$/usr/lib64/python2.7/ConfigParser.pyR�s<								
									
				t	_ChainmapcBs)eZdZd�Zd�Zd�ZRS(s�Combine multiple mappings for successive lookups.

    For example, to emulate Python's normal lookup sequence:

        import __builtin__
        pylookup = _Chainmap(locals(), globals(), vars(__builtin__))
    cGs
||_dS(N(t_maps(Rtmaps((s$/usr/lib64/python2.7/ConfigParser.pyR7scCsDx1|jD]&}y||SWq
tk
r/q
Xq
Wt|��dS(N(R�R?(RR6tmapping((s$/usr/lib64/python2.7/ConfigParser.pyt__getitem__:s
cCsag}t�}xK|jD]@}x7|D]/}||kr&|j|�|j|�q&q&WqW|S(N(RjR�R(tadd(RtresulttseenR�R6((s$/usr/lib64/python2.7/ConfigParser.pyR7Bs	

(RRRRR�R7(((s$/usr/lib64/python2.7/ConfigParser.pyR�.s		cBsGeZedd�Zedd�Zd�Zejd�Z	d�Z
RS(c
Cs
i}y|j|}Wn,tk
rE|tkrFt|��qFnXi}|r�x0|j�D]\}}|||j|�<q_Wnt|||j�}	|j|�}y|	|}Wn tk
r�t||��nX|s�|dkr�|S|j
||||	�SdS(s�Get an option value for a given section.

        If `vars' is provided, it must be a dictionary. The option is looked up
        in `vars' (if provided), `section', and in `defaults' in that order.

        All % interpolations are expanded in the return values, unless the
        optional argument `raw' is true. Values for interpolation keys are
        looked up in the same manner as the option.

        The section DEFAULT is special.
        N(R,R?RRR1R2R�R-RRMt_interpolate(
RR R"trawtvarstsectiondicttvardictR6RRT((s$/usr/lib64/python2.7/ConfigParser.pyRRNs&

c	Cs|jj�}y|j|j|�Wn,tk
rU|tkrVt|��qVnX|r�x0|j�D]\}}|||j|�<qiWn|j	�}d|kr�|j
d�n|r�g|D]}|||f^q�Sg|D](}||j|||||�f^q�SdS(s�Return a list of tuples with (name, value) for each option
        in the section.

        All % interpolations are expanded in the return values, based on the
        defaults passed into the constructor, unless the optional argument
        `raw' is true.  Additional substitutions may be provided using the
        `vars' argument, which must be a dictionary whose contents overrides
        any pre-existing defaults.

        The section DEFAULT is special.
        RN(R-R>R@R,R?RRR1R2R7tremoveR�(	RR R�R�RTR6RRBR"((s$/usr/lib64/python2.7/ConfigParser.pyR1qs"
cCs�|}t}x�|r�|d8}|r�d|kr�|jj|j|�}y||}Wq�tk
r�}t||||jd��q�XqPqW|r�d|kr�t|||��n|S(Nis%(i(R
t_KEYCREtsubt_interpolation_replaceR?R#R!R(RR R"R%R�RtdepthR�((s$/usr/lib64/python2.7/ConfigParser.pyR��s	
 s%\(([^)]*)\)s|.cCs:|jd�}|dkr%|j�Sd|j|�SdS(Nis%%(%s)s(R�RMR2(RRts((s$/usr/lib64/python2.7/ConfigParser.pyR��s
N(RRRgRMRRR1R�R�R�R�R�(((s$/usr/lib64/python2.7/ConfigParser.pyR	Ls
# 	cBs5eZd�Zejd�Zd�Zdd�ZRS(cCs/g}|j|||||d�dj|�S(NiR(t_interpolate_someRn(RR R"R%R�tL((s$/usr/lib64/python2.7/ConfigParser.pyR��ss
%\(([^)]+)\)scCs�|tkr!t|||��nx�|r�|jd�}|dkrV|j|�dS|dkr�|j|| �||}n|dd!}|dkr�|jd�|d}q$|dkr�|jj|�}	|	dkr�t||d|��n|j|	j	d��}
||	j
�}y||
}Wn&tk
rTt||||
��nXd|kr�|j
||||||d�q�|j|�q$t||d|f��q$WdS(Nt%iiit(s'bad interpolation variable reference %rs/'%%' must be followed by '%%' or '(', found: %r(R
RR�R(t
_interpvar_reRRMRR2R�tendR?R#R�(RR"taccumtrestR tmapR�tptctmtvarRd((s$/usr/lib64/python2.7/ConfigParser.pyR��sB	




	
cCs�|j|jks|r9t|t�s9td��q9n|dk	r�|jdd�}|jjd|�}d|kr�t	d||j
d�f��q�ntj||||�dS(sASet an option.  Extend ConfigParser.set: check for string values.soption values must be stringss%%RR�s1invalid interpolation syntax in %r at position %dN(
R/R0RCRDt	TypeErrorRMRmR�R�R;R�R	Rj(RR R"Rt	tmp_value((s$/usr/lib64/python2.7/ConfigParser.pyRj�sN(	RRR�R�R�R�R�RMRj(((s$/usr/lib64/python2.7/ConfigParser.pyR
�s		&(RtcollectionsRR�tImportErrortdictR�t__all__RR
RRRRRRR#RRRRRtUserDictt	_UserDictt	DictMixinR�R	R
(((s$/usr/lib64/python2.7/ConfigParser.pyt<module>Xs:

		
	
�Fb

© 2025 UnknownSec
Learning made Easy | Anyleson - Learning Platform
INR (₹)
India Rupee
$
United States Dollar

Joy of learning & teaching...

Rocket LMS is a fully-featured educational platform that helps instructors to create and publish video courses, live classes, and text courses and earn money, and helps students to learn in the easiest way.

6

Skillful Instructors

Start learning from experienced instructors.

11

Happy Students

Enrolled in our courses and improved their skills.

8

Live Classes

Improve your skills using live knowledge flow.

10

Video Courses

Learn without any geographical & time limitations.

Featured Courses

#Browse featured courses and become skillful

New Learning Page

Learn step-by-step tips that help you get things done with your virtual team by increasing trust and accountability.If you manage a virtual team today, then you'll probably continue to do so for the rest of your career.

5.00
20% Offer

Excel from Beginner to Advanced

Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and iOS. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications (VBA).

4.75

Newest Courses

#Recently published courses

View All
Course
Full Stack Web Development

Full Stack Web Development

in Web Development
83:20 Hours
10 Oct 2024
₹28,318.82
Course
Installment and Secure Host

Installment and Secure Host

in Business Strategy
5.00
1:30 Hours
16 Mar 2023
₹118
Not conducted
Bestseller
New In-App Live System

New In-App Live System

in Communications
5.00
2:30 Hours
1 Mar 2026
₹11.80
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118

Latest bundles

Latest bundles subtitle

View All
Bestseller
Microsoft Office Beginner to Expert Bundle

Microsoft Office Beginner to Expert Bundle

in Management
5.00
15:10 Hours
24 Jun 2022
₹59

A-Z Web Programming

in Web Development
4.75
2:20 Hours
25 Jun 2022
₹9.44

Upcoming Courses

Courses that will be published soon

View All

Best Rated Courses

#Enjoy high quality and best rated content

View All
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
20% Offer
Health And Fitness Masterclass

Health And Fitness Masterclass

in Health & Fitness
5.00
1:00 Hours
1 Jul 2021
₹18.88 ₹23.60
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.69
7:30 Hours
10 Jul 2021
Free
Text course
Learn Python Programming

Learn Python Programming

in Web Development
4.63
0:35 Hours
29 Jun 2021
Free
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free
20% Offer
Learn and Understand AngularJS

Learn and Understand AngularJS

in Web Development
3.88
1:00 Hours
10 Dec 2023
₹18.88 ₹23.60

Trending Categories

#Browse trending & popular learning topics

Bestselling Courses

#Learn from bestselling courses

View All
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.00
7:30 Hours
10 Jul 2021
Free
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
40% Offer
The Future of Energy

The Future of Energy

in Science
2.50
1:10 Hours
8 Jul 2021
₹42.48 ₹70.80
Not conducted
Bestseller
New In-App Live System

New In-App Live System

in Communications
5.00
2:30 Hours
1 Mar 2026
₹11.80

Free Courses

#Never miss free learning opportunities

View All
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
Course
New Update Features

New Update Features

in Language
4.00
1:30 Hours
21 Jun 2022
Free
Text course
Learn Python Programming

Learn Python Programming

in Web Development
5.00
0:35 Hours
29 Jun 2021
Free
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.00
7:30 Hours
10 Jul 2021
Free
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free

Discounted Courses

#Get courses at the latest price

View All
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118
20% Offer
Learn and Understand AngularJS

Learn and Understand AngularJS

in Web Development
2.75
1:00 Hours
10 Dec 2023
₹18.88 ₹23.60
20% Offer
Health And Fitness Masterclass

Health And Fitness Masterclass

in Health & Fitness
5.00
1:00 Hours
1 Jul 2021
₹18.88 ₹23.60
40% Offer
The Future of Energy

The Future of Energy

in Science
2.50
1:10 Hours
8 Jul 2021
₹42.48 ₹70.80

Store Products

Explore physical & virtual products

All Products

Subscribe Now!

#Choose a subscription plan and save money!

Become an instructor

Are you interested to be a part of our community? You can be a part of our community by signing up as an instructor or organization.

Become an instructor circle dots
user name
Become an instructor start earning right now...
Have a Question? Ask it in forum and get answer circle dots

Have a Question? Ask it in forum and get answer

Our forums helps you to create your questions on different subjects and communicate with other forum users. Our users will help you to get the best answer!

Find the best instructor

Looking for an instructor? Find the best instructors according to different parameters like gender, skill level, price, meeting type, rating, etc. Find instructors on the map.

Find the best instructor circle dots
user name
Tutor Finder Find the best instructor now...

Start learning anywhere, anytime...

Use Rocket LMS to access high-quality education materials without any limitations in the easiest way.

Win Club Points
medal
You earned 50 points! for completing the course...

Win Club Points

Use Rocket LMS and win club points according to different activities. You will be able to use your club points to get free prizes and courses. Start using the system now and collect points!

Instructors

#Learn from the experienced & skillful instructors

All Instructors

Testimonials

#What our customers say about us

Ryan Newman

Ryan Newman

Data Analyst at Microsoft

"We've used Rocket LMS for the last 2  years. Thanks for the great service."

Megan Hayward

Megan Hayward

System Administrator at Amazon

"We're loving it. Rocket LMS is both perfect    and highly adaptable."

Natasha Hope

Natasha Hope

IT Technician at IBM

"I am really satisfied with my Rocket LMS. It's the perfect solution for our business."

Charles Dale

Charles Dale

Computer Engineer at Oracle

"I am so pleased with this product. I couldn't have asked for more than this."

David Patterson

David Patterson

Network Technician at Cisco

"Rocket LMS impressed me on multiple           levels."

Organizations

#Greatest education organizations are here to help you

All Organizations

Blog

#Explore latest news and articles

Blog Posts
Become a Straight-A Student 1 Jul 2021

Become a Straight-A Student

In this article, I’ll explain the two rules I followed to become a straight-A student. If you take my advice, you’ll get better grades and lead a more ...
How To Teach Your Kid Easily 1 Jul 2021

How To Teach Your Kid Easily

The primary reason kids struggle with school is fear. And in most cases, it’s their parent's fault. I started tutoring math out of financial desperation. ...
Better Relationship Between Friends 1 Jul 2021

Better Relationship Between Friends

The tutor-parent relationship is an important relationship and unfortunately greatly overlooked. Why is it important? Well, a good relationship between you and ...