myrpl-cli is a command-line interface tool for fetching and saving course activities from myrpl.ar.
-
πͺ¨ Tired of copying and pasting your code between your IDE and RPL like a caveman?
Well I've got the answer for you! Fetch your activities with
myrpl fetch, solve them and upload them once withmyrpl submitwhen you're done -
β Exhausted of waiting whole seconds for running tests that should take milliseconds?
Well I've got the answer for you! Run your tests locally with
myrpl test -
π¦ Got a thing for slick CLI tools?
While
myrplcan't help you with your fantasies, it can certainly make your workflow smoother and more enjoyable. π
Install the package globally using pipx:
pipx install myrpl-cliNow you can use the myrpl command! π
To use myrpl-cli, you need a bearer token for authentication. You can provide this token either as an environment variable (even within a .env file) or as a command-line argument.
Before fetching course activities, you need to log in and store your credentials securely. Use the login command:
myrpl loginThis will prompt you for your username/email and password and store your credentials securely in an encrypted file. You'll also be asked for a passphrase to encrypt said file.π NOTE: Each time you use myrpl you'll be prompted for the passphrase.
You can always overwrite the stored credentials by running the login command again
First, cd into the directory where you want your courses and activities stored
To fetch activities for a specific course:
myrpl fetch <course_id>This will create a file structure in the current working directory like follows:
./
βββ courses/
βββ {course 1}/
βββ {category 1}/
β βββ description.txt
β βββ {activity 1}/
β β βββ description.md
β β βββ unit_test.py
β β βββ main.py
β βββ {activity 2}/
β βcdinto any activity- Launch your IDE of choice. eg.:
code .for VS Code - You can see the activity's description, initial code and unit tests
- Write your code and run the tests using
myrpl testor justpytest
Option 1: Set an environment variable
export MYRPL_BEARER_TOKEN=your_bearer_token_hereOption 2: Provide the token as a command-line argument (see examples below)
For general help:
myrpl --helpFor help with the a specific command:
myrpl <command> --helpmyrpl-cli/
βββ pyproject.toml
βββ README.md
βββ myrpl_cli/
βββ __init__.py
βββ api.py
βββ credential_manager.py
βββ main.py
βββ myrpl.pyTo set up the development environment:
- Activate an env
poetry env use python- Install all dependencies
poetry install- And pre-commit hooks:
pre-commit install- Activate the virtual environment:
poetry shell- Off you go! π
Use pytest to run the project's tests
Use act for running the github workflow locally
I chose ruff for linting + formatting
PD: I use the Ruff VS Code extension, but you do you
- Implement basic authentication functionality
- Fetch course activities
- Store credentials securely for reuse
- Fetch latest submission
- Implement hidden file .pyc download via submission abuse (branch:
feature/hidden_file_decompilation) - Implement hidden file decompilation for python version agnostic test execution
- Implement activity submission (
myrpl submit) - Implement course/category/activity progress (
myrpl status) - Remove annoying keyring passphrase
- Enhance test coverage
- VS Code extension (?)
- Add support for additional programming languages (idk if actually necessary)
Please note that this roadmap is subject to change and may be updated based on user feedback and my own time π
How does myrpl-cli fetch hidden files and decompiles them? (incoming feature)
I ran into a problem where I couldn't run a unit_test because the "grafo" library was missing.
So, what could I do?
I started trying to get the content of the grafo library, obviously
I ended up with this code snippet, which I ran on myrpl.ar:
import grafo
import base64
def vertex_cover_min(_):
print("#startgrafocontent")
with open(grafo.__file__, "rb") as gf:
content = gf.read()
encoded_content = base64.b64encode(content).decode("utf-8")
print(encoded_content)
print("#endgrafocontent")
return []In the future this can be easily automated with the submission API
This ends up spitting into the submission's stdout the base64 encoded contents
of the grafo.pyc file.
From there I could easily import the Grafo class into python. But, .pyc files are
python version specific, so I could only run them inside Python 3.10.0. Boooringg
So, time to decompile π
I finally found pycdc, which unfortunately has to be make compiled (that'll make things harder when integrating with myrpl-cli later on)
pycdc then spat the following to stdout:
# Source Generated with Decompyle++
# File: grafo.pyc (Python 3.10)
class Grafo:
def __init__(self, es_dirigido, vertices_init=(False, [])):
self.vertices = {}
for v in vertices_init:
self.vertices[v] = {}
self.es_dirigido = es_dirigido
def __contains__(self, v):
return v in self.vertices
# and so on...So, now comes the time to integrate this into myrpl-cli, which poses a challenge in itself.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
It's actually 'My RPL' backwards. No, wait...
- tcorzo π§πΎβπ¦²