Your IP : 216.73.216.134


Current Path : /opt/rh/rh-python35/root/lib64/python3.5/__pycache__/
Upload File :
Current File : //opt/rh/rh-python35/root/lib64/python3.5/__pycache__/cmd.cpython-35.pyc



���\:�@sXdZddlZddlZdgZdZejejdZGdd�d�ZdS)a	A generic class to build line-oriented command interpreters.

Interpreters constructed with this class obey the following conventions:

1. End of file on input is processed as the command 'EOF'.
2. A command is parsed out of each line by collecting the prefix composed
   of characters in the identchars member.
3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method
   is passed a single argument consisting of the remainder of the line.
4. Typing an empty line repeats the last command.  (Actually, it calls the
   method `emptyline', which may be overridden in a subclass.)
5. There is a predefined `help' method.  Given an argument `topic', it
   calls the command `help_topic'.  With no arguments, it lists all topics
   with defined help_ functions, broken into up to three topics; documented
   commands, miscellaneous help topics, and undocumented commands.
6. The command '?' is a synonym for `help'.  The command '!' is a synonym
   for `shell', if a do_shell method exists.
7. If completion is enabled, completing commands will be done automatically,
   and completing of commands args is done by calling complete_foo() with
   arguments text, line, begidx, endidx.  text is string we are matching
   against, all returned matches must begin with it.  line is the current
   input line (lstripped), begidx and endidx are the beginning and end
   indexes of the text being matched, which could be used to provide
   different completion depending upon which position the argument is in.

The `default' method may be overridden to intercept commands for which there
is no do_ method.

The `completedefault' method may be overridden to intercept completions for
commands that have no complete_ method.

The data member `self.ruler' sets the character used to draw separator lines
in the help messages.  If empty, no ruler line is drawn.  It defaults to "=".

If the value of `self.intro' is nonempty when the cmdloop method is called,
it is printed out on interpreter startup.  This value may be overridden
via an optional argument to the cmdloop() method.

The data members `self.doc_header', `self.misc_header', and
`self.undoc_header' set the headers used for the help function's
listings of documented functions, miscellaneous topics, and undocumented
functions respectively.
�N�Cmdz(Cmd) �_c@s?eZdZdZeZeZdZdZ	dZ
dZdZdZ
dZdZd	Zd
dddd�Zdd
d�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Z d+d,�Z!d-d.d/�Z"dS)0raA simple framework for writing line-oriented command interpreters.

    These are often useful for test harnesses, administrative tools, and
    prototypes that will later be wrapped in a more sophisticated interface.

    A Cmd instance or subclass instance is a line-oriented interpreter
    framework.  There is no good reason to instantiate Cmd itself; rather,
    it's useful as a superclass of an interpreter class you define yourself
    in order to inherit Cmd's methods and encapsulate action methods.

    �=�Nz(Documented commands (type help <topic>):zMiscellaneous help topics:zUndocumented commands:z*** No help on %s�ZtabcCs^|dk	r||_ntj|_|dk	r<||_ntj|_g|_||_dS)a�Instantiate a line-oriented interpreter framework.

        The optional argument 'completekey' is the readline name of a
        completion key; it defaults to the Tab key. If completekey is
        not None and the readline module is available, command completion
        is done automatically. The optional arguments stdin and stdout
        specify alternate input and output file objects; if not specified,
        sys.stdin and sys.stdout are used.

        N)�stdin�sys�stdout�cmdqueue�completekey)�selfrrr	�r
�3/opt/rh/rh-python35/root/usr/lib64/python3.5/cmd.py�__init__Ls	zCmd.__init__cCs�|j�|jrt|jrtyCddl}|j�|_|j|j�|j|jd�Wnt	k
rsYnXz7|dk	r�||_
|j
r�|jjt
|j
�d�d}x�|s�|jr�|jjd�}n�|jryt|j�}Wqltk
rd}YqlXnS|jj|j�|jj�|jj�}t|�s]d}n|jd�}|j|�}|j|�}|j||�}q�W|j�Wd|jr�|jr�y ddl}|j|j�Wnt	k
r�YnXXdS)z�Repeatedly issue a prompt, accept input, parse an initial prefix
        off the received input, and dispatch to action methods, passing them
        the remainder of the line as argument.

        rNz
: complete�
�EOFz
)�preloop�use_rawinputr�readlineZ
get_completerZ
old_completerZ
set_completer�complete�parse_and_bind�ImportError�intror	�write�strr
�pop�input�prompt�EOFError�flushr�len�rstrip�precmd�onecmd�postcmd�postloop)rrr�stop�liner
r
r�cmdloopbsN

					

	
zCmd.cmdloopcCs|S)z�Hook method executed just before the command line is
        interpreted, but after the input prompt is generated and issued.

        r
)rr'r
r
rr"�sz
Cmd.precmdcCs|S)z?Hook method executed just after a command dispatch is finished.r
)rr&r'r
r
rr$�szCmd.postcmdcCsdS)z>Hook method executed once when the cmdloop() method is called.Nr
)rr
r
rr�szCmd.preloopcCsdS)zYHook method executed once when the cmdloop() method is about to
        return.

        Nr
)rr
r
rr%�szCmd.postloopcCs|j�}|sdd|fS|ddkrFd|dd�}nC|ddkr�t|d�r|d|dd�}n
dd|fSdt|�}}x-||kr�|||jkr�|d}q�W|d|�||d�j�}}|||fS)	z�Parse the line into a command name and a string containing
        the arguments.  Returns a tuple containing (command, args, line).
        'command' and 'args' may be None if the line couldn't be parsed.
        Nr�?zhelp r�!Zdo_shellzshell )�strip�hasattrr �
identchars)rr'�i�n�cmd�argr
r
r�	parseline�s

"'z
Cmd.parselinecCs�|j|�\}}}|s(|j�S|dkrA|j|�S||_|dkr_d|_|dkrx|j|�Syt|d|�}Wntk
r�|j|�SYnX||�SdS)ahInterpret the argument as though it had been typed in response
        to the prompt.

        This may be overridden, but should not normally need to be;
        see the precmd() and postcmd() methods for useful execution hooks.
        The return value is a flag indicating whether interpretation of
        commands by the interpreter should stop.

        Nrr�do_)r2�	emptyline�default�lastcmd�getattr�AttributeError)rr'r0r1�funcr
r
rr#�s


		

z
Cmd.onecmdcCs|jr|j|j�SdS)z�Called when an empty line is entered in response to the prompt.

        If this method is not overridden, it repeats the last nonempty
        command entered.

        N)r6r#)rr
r
rr4�s	z
Cmd.emptylinecCs|jjd|�dS)z�Called on an input line when the command prefix is not recognized.

        If this method is not overridden, it prints an error message and
        returns.

        z*** Unknown syntax: %s
N)r	r)rr'r
r
rr5�szCmd.defaultcGsgS)z�Method called to complete an input line when no command-specific
        complete_*() method is available.

        By default, it returns an empty list.

        r
)r�ignoredr
r
r�completedefault�szCmd.completedefaultcs'd|��fdd�|j�D�S)Nr3cs/g|]%}|j��r|dd��qS)�N)�
startswith)�.0�a)�dotextr
r�
<listcomp>�s	z%Cmd.completenames.<locals>.<listcomp>)�	get_names)r�textr:r
)r@r�
completenames�s
zCmd.completenamesc
Cs'|dkr�ddl}|j�}|j�}t|�t|�}|j�|}|j�|}|dkr�|j|�\}	}
}|	dkr�|j}q�yt|d|	�}Wq�t	k
r�|j}Yq�Xn	|j
}|||||�|_y|j|SWntk
r"dSYnXdS)z�Return the next possible completion for 'text'.

        If a command has not been entered, then complete against command list.
        Otherwise try to call complete_<command> to get list of completions.
        rNrZ	complete_)
rZget_line_buffer�lstripr Z
get_begidxZ
get_endidxr2r;r7r8rDZcompletion_matches�
IndexError)
rrC�staterZorigliner'ZstrippedZbegidxZendidxr0�argsZfooZcompfuncr
r
rr�s*
	
zCmd.completecCs
t|j�S)N)�dir�	__class__)rr
r
rrBsz
Cmd.get_namescsHt|j���}t�fdd�|j�D��}t||B�S)Nc3s6|],}|jd�d�r|dd�VqdS)�help_r�N)r=)r>r?)rHr
r�	<genexpr> sz$Cmd.complete_help.<locals>.<genexpr>)�setrDrB�list)rrHZcommandsZtopicsr
)rHr�
complete_helps%zCmd.complete_helpcCs6|r�yt|d|�}Wn�tk
r�y>t|d|�j}|rj|jjdt|��dSWntk
rYnX|jjdt|j|f��dSYnX|�n{|j�}g}g}i}x8|D]0}|dd�dkr�d||dd�<q�W|j�d}	x�|D]�}|dd�dkr'||	krRq'|}	|dd�}
|
|kr�|j	|
�||
=q't||�jr�|j	|
�q'|j	|
�q'W|jjdt|j
��|j|j|d	d
�|j|j
t|j��d	d
�|j|j|d	d
�dS)zEList available commands with "help" or detailed help with "help cmd".rKr3z%s
NrLrrr<��P)r7r8�__doc__r	rr�nohelprB�sort�append�
doc_leader�print_topics�
doc_header�misc_headerrO�keys�undoc_header)rr1r9�doc�namesZcmds_docZ
cmds_undoc�help�nameZprevnamer0r
r
r�do_help$sN

$	





%zCmd.do_helpcCsx|rt|jjdt|��|jrP|jjdt|jt|���|j||d�|jjd�dS)Nz%s
rr)r	rr�rulerr �	columnize)r�headerZcmdsZcmdlenZmaxcolr
r
rrXRs	'zCmd.print_topicsrRcs��s|jjd�dS�fdd�tt���D�}|rgtddjtt|����t��}|dkr�|jjdt�d	��dSx�tdt���D]�}||d|}g}d
}x�t|�D]�}	d	}
xNt|�D]@}|||	}||kr"P�|}
t|
t|
��}
qW|j	|
�||
d
7}||kr�Pq�W||kr�Pq�Wt��}d}d	g}x�t|�D]�}g}xNt|�D]@}	|||	}||kr�d}
n
�|}
|j	|
�q�Wx|r%|dr%|d=q
Wx5tt|��D]!}	||	j
||	�||	<q9W|jjdtdj|���q�WdS)z�Display a list of strings as a compact set of columns.

        Each column is only as wide as necessary.
        Columns are separated by two spaces (one was not legible enough).
        z<empty>
Ncs)g|]}t�|t�s|�qSr
)�
isinstancer)r>r.)rOr
rrAds	z!Cmd.columnize.<locals>.<listcomp>z list[i] not a string for i in %sz, rz%s
r�rz  ������rh)r	r�ranger �	TypeError�join�mapr�maxrV�ljust)rrOZdisplaywidthZ
nonstrings�sizeZnrowsZncolsZ	colwidthsZtotwidth�colZcolwidth�rowr.�xZtextsr
)rOrrcZsZ%

		
z
Cmd.columnize)#�__name__�
__module__�__qualname__rS�PROMPTr�
IDENTCHARSr-rbr6rrWrYrZr\rTrrr(r"r$rr%r2r#r4r5r;rDrrBrPrarXrcr
r
r
rr4s<4
		.)	rS�stringr�__all__rvZ
ascii_lettersZdigitsrwrr
r
r
r�<module>+s
	

Rosenblum TV: Video training, virtual workshops, classes, tutorials
logologologologo
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact

RE-INVENTING THE TELEVISION NEWS BUSINESS*

A revolution in video storytelling

Creating entirely new & cost-effective production methods

From the world leaders in video production training and the creators of Character Driven Storytelling™

*and every other business that uses video

WHAT WE DO

Over the past 35 years, we have designed, built or restructured some of the most powerful news and journalism companies in the world.

We replace the traditional TV news ‘crew’ with one highly trained journalist, working alone with nothing but an iPhone.

No more TV news ‘crews’, no editors and no field producers.

This is television news done the way newspaper journalism is done – one reporter with their electronic pad and pencil.

In doing this, we can cut the cost of production by as much as 75% while increasing ratings and audience engagement.

In the place of conventional TV news ‘packages’ – ie, reporter stand up, interview, b-roll, man on the street, we marry great journalism with Netflix and Hollywood storytelling.

It’s a combination that works.

We have taken most of our clients to #1 in their respective markets.

And it’s not just for news. Any company, any profit, any NGO and anyone else who is online needs to tell their story in compelling yet cost-effective video. We can teach you to do that. Either in person or virtually.

EXAMPLES OF WHAT WE CAN TEACH YOUR STAFF TO PRODUCE

ITAY HOD

Itay Hod, MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2018.

Because he works alone, with only an iPhone, he was able to embed himself with a homeless family.

Here’s the story he produced in a one-day turn.

KIET DO

Kiet Do, an MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2021.

Here is a story he produced, all on his own, with only an iPhone and in a one-day turn.

TAYLOR SCHAUB

Taylor Schaub, an MMJ with Spectrum News 1 in LA, took the 5-Day Intensive Video Storytelling Bootcamp in 2023.

Here is a story he turned in only one day, using only an iPhone. It was the first video story he ever did and it was nominated for an Emmy.

THE BOOTCAMP

How do we convert stations and whole networks to working in this way?

Since 1988, we have run intensive 5-Day Video Storytelling Bootcamps

We have done these all over the world.

These are hands-on bootcamps, and participants learn an entirely new way of creating TV news stories.

-We shoot at a 3:1 ratio or lower, so turnaround times are fast.

-We go directly from camera to timelilne and edit – no written scripts.  We work in the medium of pictures and sound.

-We are entirely character-driven.

-We are driven by pictures and real events.

-We are focused almost entirely on ’the viewer experience’.

Since 1988, more than 70,000 journalists around the world have taken our bootcamps, either in person on virtualy.

Case Studies

CBS Case Study Logos
CBS News

We have started to work with CBS News, bringing our ideas of character-driven storytelling to one of the most successful and biggest networks in the United States. Since beginning to work with them ratings have climbed and more importantly, audience engagement is through the ceiling.

Learn More
NYT Case Study Logos
New York Times Television

We started New York Times Television in 1990 and it was the first paper to be brought into the world of TV. It quickly became one of the most successful non-fiction production companies in the United States. The series and documentaries we produced won many awards including multiple Emmys.

Learn More
BBC Case Study Logos
The BBC

We have been working with the BBC since the year 2000 helping to convert their national news network to our visual storytelling technique. Most recently we have trained teams from their sports, documentaries, and comedy divisions to make character-driven stories using only smartphones.

Learn More
Spectrum Case Study Logos
Spectrum News

For the past five years we have worked with Spectrum News to introduce and train their journalists on visual, character driven storytelling using smartphones helping to create a different kind of local news for their network of 24-Hour News Stations across the United States.

Learn More
UN Case Study Logos
The United Nations

In 2006, we were approached by the United Nations. Rather than rely on news outlets, it would be much easier to train the field operatives to produce their own stories. We spent two years working with the UN, training more than 100 of their staff in bootcamps in Geneva and Nairobi.

Learn More
Star Ledger Case Study Logos
The Newark Star-Ledger

We trained 50 print reporters at the paper to shoot and tell their own stories, in conjunction with their print work. We built a TV newsroom in their existing print newsroom – you could not ask for a better set and they began to live stream their stories in conjunction with their print work.

Learn More
Mcgraw Hill Case Study Logos
Mcgraw Hill

We spent two years with McGraw Hill, training more than 150 of their staffers, making them completely video literate. McGraw/Hill media properties we transit included Business Week, Aviation Week, (what was the name of the architecture magazine), and JD Power and Associates.

Learn More
VOA Case Study Logos
Voice of America

In 1990, we were approached by The Voice of America, the official broadcasting agency for the United States Government. When we met with VOA, they were only a short wave radio broadcaster, but working with them, we took them into television, launching VOA-TV.

Learn More
Oyster Case Study Logos
Oyster Yachts

British based Oyster Yachts makes some of the finest yachts in the world. Like every other company, they had to find a way to feed the never-ending video demands of social media – sites like Instagram and TikTok. We trained the Oyster staff to tell their own stories, using only iPhones.

Learn More
SEPA Case Study Logos
Scottish Environmental Protection Agency

We were approached by SEPA, the Scottish Environmental Protection Agency because they had to continually find a way to ‘feed the media beast’. The result was that SEPA was able to tell their own stories, whenever they wanted, and at almost no additional cost.

Learn More
Image 11-11-22 at 6.25 PM

Michael on Media

Michael Rosenblum has been writing about the media since 1988. His work and ideas have appeared in The Guardian, The Huffington Post, Ilkeston Life and many other publications.

He has been blogging regularly for the past 35 years on this subject. Having taught media studies at Columbia University, NYU and now the University of Oxford, he is considered an expert on this subject.

Continue reading this post or look back at previous posts.

Read More

Do You Have Questions About Learning Video Skills?

If you would like to know more about our courses contact us and one of our training advisors will be happy to call you.

Contact Us

Copyright 2024. All rights reserved.