Skip to content

Feature/structure

Appledora requested to merge feature/structure into main
  • Created initial structure of the library that looks like the following :
.
├── docs
├── README.md
├── src
│   ├── dump
│   │   ├── dump.py
│   │   ├── __init__.py
│   ├── __init__.py
│   ├── parse
│   │   ├── data.py
│   │   ├── __init__.py
│   │   └── utils.py
│   └── temp_test.ipynb
└── tests
    ├── __init__.py
    └── test_dump.py
  • Created separate class files for HTML Dumps and Articles
  • Included the current requirements.txt
  • Implemented methods :
    - get_html() - get_comments() - get_headers() - get_sections()

Merge request reports