shell bypass 403

UnknownSec Shell

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

name : wave.pyo
�
zfc@s�dZddlZdddgZdefd��YZdZdZddlZddl	Z	ddl
mZd�Zd
dd��YZ
ddd��YZdd�ZeZdS(s
Stuff to parse WAVE files.

Usage.

Reading WAVE files:
      f = wave.open(file, 'r')
where file is either the name of a file or an open file pointer.
The open file pointer must have methods read(), seek(), and close().
When the setpos() and rewind() methods are not used, the seek()
method is not  necessary.

This returns an instance of a class with the following public methods:
      getnchannels()  -- returns number of audio channels (1 for
                         mono, 2 for stereo)
      getsampwidth()  -- returns sample width in bytes
      getframerate()  -- returns sampling frequency
      getnframes()    -- returns number of audio frames
      getcomptype()   -- returns compression type ('NONE' for linear samples)
      getcompname()   -- returns human-readable version of
                         compression type ('not compressed' linear samples)
      getparams()     -- returns a tuple consisting of all of the
                         above in the above order
      getmarkers()    -- returns None (for compatibility with the
                         aifc module)
      getmark(id)     -- raises an error since the mark does not
                         exist (for compatibility with the aifc module)
      readframes(n)   -- returns at most n frames of audio
      rewind()        -- rewind to the beginning of the audio stream
      setpos(pos)     -- seek to the specified position
      tell()          -- return the current position
      close()         -- close the instance (make it unusable)
The position returned by tell() and the position given to setpos()
are compatible and have nothing to do with the actual position in the
file.
The close() method is called automatically when the class instance
is destroyed.

Writing WAVE files:
      f = wave.open(file, 'w')
where file is either the name of a file or an open file pointer.
The open file pointer must have methods write(), tell(), seek(), and
close().

This returns an instance of a class with the following public methods:
      setnchannels(n) -- set the number of channels
      setsampwidth(n) -- set the sample width
      setframerate(n) -- set the frame rate
      setnframes(n)   -- set the number of frames
      setcomptype(type, name)
                      -- set the compression type and the
                         human-readable compression type
      setparams(tuple)
                      -- set all parameters at once
      tell()          -- return current position in output file
      writeframesraw(data)
                      -- write audio frames without pathing up the
                         file header
      writeframes(data)
                      -- write audio frames and patch up the file header
      close()         -- patch up the file header and close the
                         output file
You should set the parameters before the first writeframesraw or
writeframes.  The total number of frames does not need to be set,
but when it is set to the correct value, the header does not have to
be patched up.
It is best to first set all parameters, perhaps possibly the
compression type, and then write audio frames using writeframesraw.
When all frames have been written, either call writeframes('') or
close() to patch up the sizes in the header.
The close() method is called automatically when the class instance
is destroyed.
i����NtopentopenfptErrorcBseZRS((t__name__t
__module__(((s/usr/lib64/python2.7/wave.pyRNsitbthti(tChunkcCsVt|�}|ddd�|ddd�<|ddd�|ddd�<t|�S(Nii(t	bytearraytbytes(tdatatba((s/usr/lib64/python2.7/wave.pyt
_byteswap3Ys  t	Wave_readcBs�eZdZd�Zd�Zd�Zd�Zd�Zd�Zd�Z	d�Z
d	�Zd
�Zd�Z
d�Zd
�Zd�Zd�Zd�Zd�Zd�Zd�ZRS(sPVariables used in this class:

    These variables are available to the user though appropriate
    methods of this class:
    _file -- the open file with methods read(), close(), and seek()
              set through the __init__() method
    _nchannels -- the number of audio channels
              available through the getnchannels() method
    _nframes -- the number of audio frames
              available through the getnframes() method
    _sampwidth -- the number of bytes per audio sample
              available through the getsampwidth() method
    _framerate -- the sampling frequency
              available through the getframerate() method
    _comptype -- the AIFF-C compression type ('NONE' if AIFF)
              available through the getcomptype() method
    _compname -- the human-readable AIFF-C compression type
              available through the getcomptype() method
    _soundpos -- the position in the audio stream
              available through the tell() method, set through the
              setpos() method

    These variables are used internally only:
    _fmt_chunk_read -- 1 iff the FMT chunk has been read
    _data_seek_needed -- 1 iff positioned correctly in audio
              file for readframes()
    _data_chunk -- instantiation of a chunk class for the DATA chunk
    _framesize -- size of one frame in the file
    cCsed|_d|_t|dd�|_|jj�dkrHtd�n|jjd�dkrltd�nd|_d|_	x�d|_
yt|jdd�}Wntk
r�PnX|j�}|d	kr�|j|�d|_nJ|d
kr3|js
td�n||_	|j
|j|_d|_
Pn|j�q�W|jsU|j	ratd�ndS(
Nit	bigendiantRIFFs file does not start with RIFF iditWAVEsnot a WAVE fileisfmt Rsdata chunk before fmt chunks#fmt chunk and/or data chunk missing(tNonet_convertt	_soundposRt_filetgetnameRtreadt_fmt_chunk_readt_data_chunkt_data_seek_neededtEOFErrort_read_fmt_chunkt	chunksizet
_framesizet_nframestskip(tselftfiletchunkt	chunkname((s/usr/lib64/python2.7/wave.pytinitfp~s:					

			cCsnd|_t|t�r6tj|d�}||_ny|j|�Wn |jrc|j�n�nXdS(Ntrb(Rt_i_opened_the_filet
isinstancet
basestringt__builtin__RR%tclose(R!tf((s/usr/lib64/python2.7/wave.pyt__init__�s		
cCs|j�dS(N(R+(R!((s/usr/lib64/python2.7/wave.pyt__del__�scCs|jS(N(R(R!((s/usr/lib64/python2.7/wave.pytgetfp�scCsd|_d|_dS(Nii(RR(R!((s/usr/lib64/python2.7/wave.pytrewind�s	cCs2d|_|j}|r.d|_|j�ndS(N(RRR'R+(R!R"((s/usr/lib64/python2.7/wave.pyR+�s
			cCs|jS(N(R(R!((s/usr/lib64/python2.7/wave.pyttell�scCs|jS(N(t
_nchannels(R!((s/usr/lib64/python2.7/wave.pytgetnchannels�scCs|jS(N(R(R!((s/usr/lib64/python2.7/wave.pyt
getnframes�scCs|jS(N(t
_sampwidth(R!((s/usr/lib64/python2.7/wave.pytgetsampwidth�scCs|jS(N(t
_framerate(R!((s/usr/lib64/python2.7/wave.pytgetframerate�scCs|jS(N(t	_comptype(R!((s/usr/lib64/python2.7/wave.pytgetcomptype�scCs|jS(N(t	_compname(R!((s/usr/lib64/python2.7/wave.pytgetcompname�scCs:|j�|j�|j�|j�|j�|j�fS(N(R3R6R8R4R:R<(R!((s/usr/lib64/python2.7/wave.pyt	getparams�scCsdS(N(R(R!((s/usr/lib64/python2.7/wave.pyt
getmarkers�scCs
td�dS(Nsno marks(R(R!tid((s/usr/lib64/python2.7/wave.pytgetmark�scCs=|dks||jkr'td�n||_d|_dS(Nisposition not in rangei(RRRR(R!tpos((s/usr/lib64/python2.7/wave.pytsetpos�s	cCs�|jrT|jjdd�|j|j}|rH|jj|d�nd|_n|dkrddS|jdkrWtjdkrWddl}|j}|jt	|j�}||j
}||j|j|jkr�|j|j|j}n|j
|jj|�|j||j|_|j}|j||j|_|j�|j�}nF|jj||j�}|jdkr�tjdkr�t|�}n|jr�|r�|j|�}n|jt|�|j
|j|_|S(	Nitiitbigi����i(ii(RRtseekRRR5tsyst	byteordertarrayt_array_fmtsR2Rt	size_readtfromfileR"tbyteswapttostringRR
Rtlen(R!tnframesRARHR#Rtnitems((s/usr/lib64/python2.7/wave.pyt
readframes�s8		
	
$cCs�tjd|jd��\}|_|_}}|tkrotjd|jd��d}|dd|_ntd|f�|j|j|_d	|_	d
|_
dS(Ns<HHLLHis<Hiiiisunknown format: %rtNONEsnot compressed(tstructtunpackRR2R7tWAVE_FORMAT_PCMR5RRR9R;(R!R#t
wFormatTagtdwAvgBytesPerSectwBlockAlignt	sampwidth((s/usr/lib64/python2.7/wave.pyRs0	(RRt__doc__R%R-R.R/R0R+R1R3R4R6R8R:R<R=R>R@RBRQR(((s/usr/lib64/python2.7/wave.pyR_s(		
																)t
Wave_writecBs�eZdZd�Zd�Zd�Zd�Zd�Zd�Zd�Z	d�Z
d	�Zd
�Zd�Z
d�Zd
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�ZRS(s�Variables used in this class:

    These variables are user settable through appropriate methods
    of this class:
    _file -- the open file with methods write(), close(), tell(), seek()
              set through the __init__() method
    _comptype -- the AIFF-C compression type ('NONE' in AIFF)
              set through the setcomptype() or setparams() method
    _compname -- the human-readable AIFF-C compression type
              set through the setcomptype() or setparams() method
    _nchannels -- the number of audio channels
              set through the setnchannels() or setparams() method
    _sampwidth -- the number of bytes per audio sample
              set through the setsampwidth() or setparams() method
    _framerate -- the sampling frequency
              set through the setframerate() or setparams() method
    _nframes -- the number of audio frames written to the header
              set through the setnframes() or setparams() method

    These variables are used internally only:
    _datalength -- the size of the audio samples written to the header
    _nframeswritten -- the number of frames actually written
    _datawritten -- the size of the audio samples actually written
    cCsnd|_t|t�r6tj|d�}||_ny|j|�Wn |jrc|j�n�nXdS(Ntwb(RR'R(R)R*RR%R+(R!R,((s/usr/lib64/python2.7/wave.pyR-1s		
cCs^||_d|_d|_d|_d|_d|_d|_d|_d|_	t
|_dS(Ni(RRRR2R5R7Rt_nframeswrittent_datawrittent_datalengthtFalset_headerwritten(R!R"((s/usr/lib64/python2.7/wave.pyR%=s									cCs|j�dS(N(R+(R!((s/usr/lib64/python2.7/wave.pyR.IscCs:|jrtd�n|dkr-td�n||_dS(Ns0cannot change parameters after starting to writeisbad # of channels(R^RR2(R!t	nchannels((s/usr/lib64/python2.7/wave.pytsetnchannelsOs
	cCs|jstd�n|jS(Nsnumber of channels not set(R2R(R!((s/usr/lib64/python2.7/wave.pyR3Vs	cCsF|jrtd�n|dks-|dkr9td�n||_dS(Ns0cannot change parameters after starting to writeiisbad sample width(R^RR5(R!RY((s/usr/lib64/python2.7/wave.pytsetsampwidth[s
	cCs|jstd�n|jS(Nssample width not set(R5R(R!((s/usr/lib64/python2.7/wave.pyR6bs	cCs:|jrtd�n|dkr-td�n||_dS(Ns0cannot change parameters after starting to writeisbad frame rate(R^RR7(R!t	framerate((s/usr/lib64/python2.7/wave.pytsetframerategs
	cCs|jstd�n|jS(Nsframe rate not set(R7R(R!((s/usr/lib64/python2.7/wave.pyR8ns	cCs"|jrtd�n||_dS(Ns0cannot change parameters after starting to write(R^RR(R!RO((s/usr/lib64/python2.7/wave.pyt
setnframesss	cCs|jS(N(R](R!((s/usr/lib64/python2.7/wave.pyR4xscCsC|jrtd�n|dkr-td�n||_||_dS(Ns0cannot change parameters after starting to writeRRsunsupported compression type(RR(R^RR9R;(R!tcomptypetcompname((s/usr/lib64/python2.7/wave.pytsetcomptype{s		cCs|jS(N(R9(R!((s/usr/lib64/python2.7/wave.pyR:�scCs|jS(N(R;(R!((s/usr/lib64/python2.7/wave.pyR<�scCsu|\}}}}}}|jr-td�n|j|�|j|�|j|�|j|�|j||�dS(Ns0cannot change parameters after starting to write(R^RRcRdRfRgRj(R!tparamsRbRYReRORhRi((s/usr/lib64/python2.7/wave.pyt	setparams�s	



cCsR|js|js|jr*td�n|j|j|j|j|j|jfS(Nsnot all parameters set(R2R5R7RRR9R;(R!((s/usr/lib64/python2.7/wave.pyR=�scCs
td�dS(Nssetmark() not supported(R(R!R?RAtname((s/usr/lib64/python2.7/wave.pytsetmark�scCs
td�dS(Nsno marks(R(R!R?((s/usr/lib64/python2.7/wave.pyR@�scCsdS(N(R(R!((s/usr/lib64/python2.7/wave.pyR>�scCs|jS(N(R](R!((s/usr/lib64/python2.7/wave.pyR1�scCs<|jt|��t|�|j|j}|jrH|j|�}n|jdkr�tjdkr�ddl}|jt|j�}|j	|�|}|j
�|j|j�|j
t|�|j|_
nS|jdkrtjdkrt|�}n|jj|�|j
t|�|_
|j||_dS(NiiRDi����i(ii(t_ensure_header_writtenRNR5R2RRFRGRHRIt
fromstringRLttofileRR^R
twriteR](R!RRORHta((s/usr/lib64/python2.7/wave.pytwriteframesraw�s"	

 cCs0|j|�|j|jkr,|j�ndS(N(RtR_R^t_patchheader(R!R((s/usr/lib64/python2.7/wave.pytwriteframes�s
cCszI|jrH|jd�|j|jkr8|j�n|jj�nWdd|_|j}|rzd|_|j�nXdS(Ni(	RRoR_R^RutflushRR'R+(R!R"((s/usr/lib64/python2.7/wave.pyR+�s	

			cCs\|jsX|jstd�n|js3td�n|jsHtd�n|j|�ndS(Ns# channels not specifiedssample width not specifiedssampling rate not specified(RaR2RR5R7t
_write_header(R!tdatasize((s/usr/lib64/python2.7/wave.pyRo�s				cCs|jjd�|js3||j|j|_n|j|j|j|_|jj�|_|jjtj	dd|jdddt
|j|j|j|j|j|j|j|jdd��|jj�|_|jjtj	d	|j��t
|_dS(
NRs<L4s4sLHHLLHH4si$Rsfmt iiRs<L(RRrRR2R5R_R1t_form_length_posRStpackRUR7t_data_length_postTrueRa(R!t
initlength((s/usr/lib64/python2.7/wave.pyRx�s	
cCs�|j|jkrdS|jj�}|jj|jd�|jjtjdd|j��|jj|j	d�|jjtjd|j��|jj|d�|j|_dS(Nis<Li$(
R^R_RR1RERzRrRSR{R|(R!tcurpos((s/usr/lib64/python2.7/wave.pyRu�s#(RRRZR-R%R.RcR3RdR6RfR8RgR4RjR:R<RlR=RnR@R>R1RtRvR+RoRxRu(((s/usr/lib64/python2.7/wave.pyR[s6															
									
	cCsi|dkr0t|d�r'|j}q0d}n|dkrFt|�S|dkr\t|�Std�dS(	NtmodeR&trtwR\s$mode must be 'r', 'rb', 'w', or 'wb'(R�R&(R�R\(RthasattrR�RR[R(R,R�((s/usr/lib64/python2.7/wave.pyR�s	

(NRRNR(((RZR*t__all__t	ExceptionRRURRIRSRFR#RR
RR[RR(((s/usr/lib64/python2.7/wave.pyt<module>Hs	��

© 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
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
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
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 ...