목록개발 (3)
개발자-H 입니다.
ASN1 데이터 정합성 검사 및 파싱 결과를 쉽게 보여주는 사이트 https://pkitools.net/index.html pkitools.net - Free cryptographic and PKI toolsFunctions and services Cryptographic Primitive Support common encoding types such as UTF-8, Hex, Decimal, Base32, Base64, Base45, Base58, QR, Byte Array (programming friendly) and many more. Support various hashing algorithms family such as SHA1, SHA2, SHApkitools.net PKI Services..
소스 코드의 주석을 활용하여 자동으로 문서화 할수 있다. /// /// 책 모델 /// public class Book { /// /// 생성 일자 /// public DateTime CreatedTime { get; set; } /// /// 책 종류 /// public BookType Type { get; set; } /// /// 책 이름 /// public string Title { get; set; } /// /// 책을 생성합니다. /// /// 생성 일자 /// 종류 /// 이름 /// /// var b = new Book(DateTime.Now, BookType.Game, "Diablo II"); /// public Book(DateTime createdTime, BookType type,..
1. 크롤링이란? 크롤링이란 웹 페이지에 존재하는 다양한 정보를 접근하여 의미있는 데이터를 추출하는 작업이다. 웹 페이지에는 다양한 리소스들이 존재한다. 텍스트 (주식 정보) 이미지 (일러스트, 그림) 동영상 Python에는 아래의 라이브러리를 활용하여 웹 페이지의 리소스를 접근 할수 있다. requests (웹 페이지 요청) BeautifulSoup (웹 페이지 정보 접근) 오늘의 타켓 페이지는 메이플 스토리 랭킹 페이지이다. (maplestory.nexon.com/Ranking/World/Total?page=1) 2. 환경 설정 아래의 명령어로 의존 라이브러리를 다운받는다. pip install requests pip install bs4 maple-crawl-sample.py 3. 크롤 코드 랭킹 ..