Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guicaulada/exams2anki
Convert examtopics.com pages to Anki decks!
https://github.com/guicaulada/exams2anki
Last synced: 2 months ago
JSON representation
Convert examtopics.com pages to Anki decks!
- Host: GitHub
- URL: https://github.com/guicaulada/exams2anki
- Owner: guicaulada
- License: agpl-3.0
- Created: 2021-02-04T04:26:11.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-26T04:02:45.000Z (over 1 year ago)
- Last Synced: 2024-10-30T11:06:27.019Z (2 months ago)
- Language: Python
- Homepage:
- Size: 1.08 MB
- Stars: 11
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# exams2anki
Convert [ExamTopics](https://www.examtopics.com/exams/) pages to Anki decks!
## Requirements
At least one of the following webdrivers must be installed and in your PATH environment variable:
- [chromedriver](https://chromedriver.chromium.org/)
- [Edge WebDriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/)Chrome will be used by default, if you wish to use the Edge WebDriver use the flag `--edge`.
## Installation
- `pip install exams2anki`
## Usage
- `exams2anki --help`
## Running from local repository
If you have cloned this repository you can run, for example:
```
python3 src/exams2anki.py -u -p '' -pr amazon -e aws-certified-cloud-practitioner
```## Install local version
If you have cloned this repository you can run:
```
python3 setup.py install
```## Build and publish
If you had created this package you would be able to run:
```
python3 setup.py sdist bdist_wheel
twine upload dist/*
```## Template
You can experiment creating your own template based on the existing ones using the `--template` option.
## License
```
exams2anki - Convert ExamTopics pages to Anki decks
Copyright (C) 2021 Guilherme CauladaThis program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
```