GATE CS quiz generator
1.0.0
GO의 3 권의 PYQ를 기반으로 한 다중 섹션 퀴즈 생성기
updateLots 유틸리티를 사용하여 통합되지 않은 질문의 '로트'에서 질문을 추가/제거 할 수 있습니다.검색 유틸리티를 사용하는 경우 PYPDF2 패키지를 설치하십시오 [선택 사항]
$ pip install PyPDF2
터미널에서 pyqTest 실행하기 만하면됩니다
$ python pyqTest.py
pyqTest 의 16 행을 이것으로 변경하여 다음을 켜십시오.
show_pg_no = True


./vol{x}/log/{DATE}_{TIME}.log vol {x }/log/ {date} {time }.log에서 찾을 수 있습니다 
이것은 특정 질문과 관련된 메모를 작성하고 분석을 수행하는 데 더 많이 사용될 수 있습니다.
.
├── vol1 # Folder with saved data, logs and the vol1 pdf
| ├── data # Folder with .dir files (saved page_no searches), and .lot files (the lot of remaining q's to pick from)
| ├── log # Folder with saved logs having question number attempted, and timing
| ├── csv # Contains all meta information about sections and sub-sections
| └──Volume-1.pdf # GO PYQ Volume1 pdf
├── vol2 # Folder with saved data, logs and the vol2 pdf
| ... # Same as for vol1
| └──Volume-2.pdf
├── vol3 # Folder with saved data, logs and the vol3 pdf
| ... # Same as for vol1/2
| └──Volume-3.pdf
├── __init__.py # For using read_pdf module
├── extract_meta.py # Used to extract index page text (meta_index.txt) and open with word processor (preferably vscode)
├── pyqTest.py # The main test setter, uses the meta.csv and sectionx.csv for q distribution
├── read_pdf.py # Contains search utility to search for a question's page no. from pdf/ saved dictionary
├── regex_test.py # Test file to test out the regex [for question(s) extraction from pdf text]
├── updateLots.py # For adding/removing questions that you've attempted and don't want in the paper/ want to add to unattempted questions
└── README.md