Metadata-Version: 2.4
Name: projecteuler-cli
Version: 0.3.0
Summary: A tiny helper to fetch Project Euler problems, create boiler-plates, and track progress.
Author-email: Arnav Kalekar <akalekar@purdue.edu>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# Project Euler CLI



A command-line helper for Project Euler problems to:

* fetch any Project Euler problem and scaffold boiler-plate files
* pull the official RSS feed
* track which problems you have finished
* show quick progress stats

**Supports both Julia and Python!**

```
# install from PyPI
pip install projecteuler-cli

# create a folder "problem 944" with .md, .py, .ipynb
projecteuler 944 --lang py

# same but Julia template
projecteuler 944 --lang julia

# read RSS in your terminal
projecteuler rss

# also save RSS to a dated txt
projecteuler rss --txt

# mark problem 944 as done
projecteuler done 944

# show progress
projecteuler stats
projecteuler stats --txt
```
