• Complain

Eric Chou - Mastering Python Networking

Here you can read online Eric Chou - Mastering Python Networking full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2020, publisher: Packt Publishing, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Eric Chou Mastering Python Networking

Mastering Python Networking: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Mastering Python Networking" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Eric Chou: author's other books


Who wrote Mastering Python Networking? Find out the surname, the name of the author of the book and a list of all author's works by series.

Mastering Python Networking — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Mastering Python Networking" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Mastering Python Networking Third Edition Your one-stop solution to using - photo 1

Mastering Python Networking

Third Edition

Your one-stop solution to using Python for network automation, programmability, and DevOps

Eric Chou

BIRMINGHAM - MUMBAI Mastering Python Networking Third Edition Copyright 2020 - photo 2

BIRMINGHAM - MUMBAI

Mastering Python Networking

Third Edition

Copyright 2020 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

Producer: Tushar Gupta

Acquisition Editor Peer Reviews: Suresh Jain

Project Editor: Tom Jacob

Content Development Editor: Ian Hough

Technical Editor: Karan Sonawane

Copy Editor: Safis Editing

Proofreader: Safis Editing

Indexer: Manju Arasan

Presentation Designer: Pranit Padwal

First published: June 2017

Second edition: August 2018

Third edition: January 2020

Production reference: 1280120

Published by Packt Publishing Ltd.

Livery Place

35 Livery Street

Birmingham B3 2PB, UK.

ISBN 978-1-83921-467-7

www.packt.com

For my wife Joanna and children, Mikaelyn and Esmie. For my parents, who lit up the fire in me many years ago.

packtcom Subscribe to our online digital library for full access to over - photo 3

packt.com

Subscribe to our online digital library for full access to over 7,000 books and videos, as well as industry leading tools to help you plan your personal development and advance your career. For more information, please visit our website.

Why subscribe?
  • Spend less time learning and more time coding with practical eBooks and Videos from over 4,000 industry professionals
  • Learn better with Skill Plans built especially for you
  • Get a free eBook or video every month
  • Fully searchable for easy access to vital information
  • Copy and paste, print, and bookmark content

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at for more details.

At www.Packt.com , you can also read a collection of free technical articles, sign up for a range of free newsletters, and receive exclusive discounts and offers on Packt books and eBooks.

Foreword

This book you are holding in your hand or are reading on your screen has a power that can be yours if you take time to study it. Much like Thor's hammer or Iron Man's suit, programming is a superpower that amplifies your existing knowledge and skill set.

Many people feel, or are told, that they should learn programming and Python for their own sake. Programming skills are in demand, so you should be a programmer. That is probably good advice. But better advice would be to answer the question, "How can you take your existing expertise and leap ahead of peers by automating and extending that experience with software skills?" This book aims to do just that for network professionals. You'll learn Python in the context of network configuration, administration, monitoring, and more.

If you are tired of logging in and typing a bunch of commands to configure your network, Python is for you. If you need to be certain that the network configuration is solid and repeatable, Python is for you. If you need to monitor, in real-time, what is happening on the network, well, you guessed it, Python is for you.

You are probably in agreement about learning software skills that can be applied to network engineering. After all, terms like Software-Defined Networking (SDN) have been all the buzz in the last few years. But why Python? Maybe you should learn JavaScript or Go or some other language. Maybe you should just double down on Bash and shell scripting.

Python is well-suited for network engineering for two reasons.

First, as Eric will demonstrate throughout this book, there are many Python libraries (sometimes called packages) designed specifically on network engineering. A focused search over at https://pypi.org for the network topic turns up over 500 different libraries for network automation and monitoring. With libraries such as Ansible, you can create complex network and server configurations declaratively using simple configuration files.

Using Pexpect or Paramiko, you'll be able to program against remote legacy systems as if they had their own scripting API. If the gear you're configuring has an API, chances are you can use a purpose-built Python library to work with it. So clearly, Python is well-suited for the job.

Second, Python is special amongst programming languages. Python is what I call a full spectrum language. My definition of this term is that it is both a language that is incredibly easy to get started (print("hello world") anyone?) and also very powerful, being the technology behind incredible software such as youtube.com .

This is not normal. We have solid beginner languages for quickly building software. Visual Basic comes to mind here. So does MATLAB and other commercial languages. Yet, when these are pushed too far, they fall down badly. Can you imagine Linux, Firefox, or an intensive video game created with any of these? No way.

At the other end of the spectrum, we also have very powerful languages such as C++, .NET, Java, and many others. C++ is, in fact, the language used to build some Linux kernel modules and large open source software such as Firefox to some degree. Yet, these languages are not beginner friendly. You have to learn about pointers, compilers, linkers, headers, classes, accessibility (public/private), and so on just to get started.

Python lives in both realms. On one hand it is incredibly easy to be productive with just a few lines of code and simple programming concepts. On the other, it is increasingly the language of choice for some of the world's most significant software; such as that behind YouTube, Instagram, Reddit, and others. Microsoft chose Python as their language to implement the command line interface (CLI) for Azure (although you don't have to know or use Python to use their CLI, of course).

So, here's the deal. Programming is a superpower. It can take your network engineering expertise and launch it into the stratosphere. Python is one of the world's fastest growing and most popular programming language. Additionally, Python has many highly polished libraries for working with networks in many facets. This book,

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Mastering Python Networking»

Look at similar books to Mastering Python Networking. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Mastering Python Networking»

Discussion, reviews of the book Mastering Python Networking and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.