Metadata-Version: 2.1
Name: codeforces
Version: 0.0.2
Summary: A simple command line tool to move your competitive programming workflow to your terminal.
Home-page: https://github.com/Nirlep5252/codeforces-cli
Author: Nirlep5252
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown


## Codeforces CLI [WORK IN PROGRESS]

A simple command line tool to move your competitive programming workflow to your terminal.

### How to install?

- Clone the repo
```
$ git clone https://github.com/Nirlep5252/codeforces-cli
```

- Install it
```
$ cd ./codeforces-cli
$ python3 -m pip install build
$ python3 -m build
$ python3 -m pip install dist/codeforces-0.0.1-py3-none-any.whl --force-reinstall
```

- Happy coding!
```
$ cf --help
```

#### Current commands:

`cf contests` - list all the current or upcoming contests \
`cf contests {ID}` - view all the problems of an ongoing contest \
`cf parse {Contest ID} {Problem ID | Optional}` - parse the problem and its test cases \
`cf run {FILE}` - check the test cases for the current problem (works based on current directory)

#### TODO commands:

`cf submit {FILE}` - submit the problem (requires config) (works based on current directory) \
`cf standings {Contest ID | Optional}` - show all the standings of an ongoing of finished contests \
`cf config` - save your username, password, problems-directory


