전체 글 (24) 썸네일형 리스트형 About Time(작문연습) 팀은 21세기 영국에서 살고 있는 평범한 청년입니다. Tim is ordinary man for living in Lon Don. 하지만 가문의 남은 남자들에게만 전해져 내려오는 가문의 비밀을 알게 되고, 특별한 능력을 가지게 됩니다. But his family's man have succeed special ability and Tim knew it, and had special ability. 그 능력은 과거로 돌아가 원하는 시간을 재생할 수 있는 것입니다. the ability was turned back time where he wanted to play. 팀은 이 능력을 활용하여 자신의 인생을 개선하고, 사람들과의 관계를 개선하며 성장해 나갑니다. Time improved his life to .. 어바웃 타임( 작문연습 ) 정말 인간다운 행복은 무엇일까, 시간을 되돌릴 수 있다면 행복할 수 있는 것일까... 이런 질문에 대답하는 것이 영화 《어바웃 타임》의 결말 줄거리입니다. 21살이 되면 시간 여행을 할 수 있는 가문에서 태어난 주인공은 그 능력 덕분에 깨달음을 얻습니다. What is happy as people, if we are tunning back time, can we be happy? movie of the about time tell answering this question. main actor get to be 21 years old then he have ability to travel in time and he get realized real happy because of ability. 시간 여.. API 수집 예시(시스코 넥서스) import requestsimport jsonfrom datetime import datetimeimport osimport pandas as pdimport time # 환경 변수에서 URL, 사용자 이름, 패스워드를 가져옵니다.url1 = os.getenv('API_URL1', 'https://IP/ins')url2 = os.getenv('API_URL2', 'https://IP/ins')user1 = os.getenv('API_USER', 'ID')password1 = os.getenv('API_PASSWORD', 'PASSWORD')myheaders = {'Content-Type': 'application/json-rpc'} # API 호출을 위한 페이로드 설정payload1 = [ { .. juniper cli 파이프 명령 해당 포스트에서는 주니퍼 라우터와 스위치에서 쓸수있는 파이프 명령어에 대해 알아볼 예정이다. show interface terse | cont 출력되는 값의 라인별 갯수를 세어준다 이런식이다 앞의 명령어는 사실 어떠한 것이든 상관없이 출력되는 라인의 갯수를 세어준다 show configuration | display set juniper 장비의 특징인 XML 형식을 좀 더 보기 편하게 set 타입으로 바꿔서 출력해 주는 명령어 설정을 한 눈에 보기 쉽게 정리해 주지만 치명적인 단점이 존재하는데 하드웨어가 지원하지 않는 설정도 아무런 문제가 없는 것 처럼 보인다는 것이다 아래와 같이 하드웨어가 지원 하지 않던 라이센스가 없어서 동작하지 않건 설정이 정상 동작 하지 않는다면 xml 환경에서는 해당 설정에 대.. 파이썬 자동화 -7- import paramiko, time, socks, re, os from getpass import getpass import pandas as pd import openpyxl from tqdm import tqdm from concurrent.futures import as_completed from openpyxl.utils.dataframe import dataframe_to_rows from concurrent.futures import ThreadPoolExecutor, as_completed import threading def juniper_parse_fixed(df, up_t): df.loc[0, "uptime"] = up_t[0] return df def parse_fix(df1): .. 파이썬 자동화 -6- import paramiko, time, socks, re, os from getpass import getpass import pandas as pd import openpyxl from openpyxl.utils.dataframe import dataframe_to_rows from concurrent.futures import ThreadPoolExecutor, as_completed import threading def juniper_parse_fixed(df, up_t): df.loc[0, "uptime"] = up_t[0] return df def re_ver(data): ex2200_match = re.search(r"ex2200", data) if ex2200_match: match2 = .. network automation -5- import paramiko, time from getpass import getpass import re import openpyxl from openpyxl.utils.dataframe import dataframe_to_rows import pandas as pd def juniper_parse_fixed(df): fpc_rows = df[df["item"].astype(str).str.startswith("FPC")].reset_index(drop=True) ps_rows = df[df["item"].astype(str).str.startswith("Power Supply")].reset_index(drop=True) paired_rows = [] ps_idx = 0 for _, fpc_rows .. Network Automation -4- import time import paramiko, time import socks from getpass import getpass import re import pandas as pd import os import openpyxl from openpyxl.utils.dataframe import dataframe_to_rows from concurrent.futures import ThreadPoolExecutor, as_completed import threading def juniper_parse(ip_a, u_id, u_pas, lock): try: ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy(.. 이전 1 2 3 다음