Earn Achievements while learning how to code
Gamify your experience while learning to code and get achievements for different concepts as you use them. Start at a simple print
statement and work your way up to functions
and classes
(and more to come).
Just import
the package at the top of your script (example):
# my_script.py
import dev_achievements
def cumulative_sum(x):
# calculates sum of numbers from 0 to x
total = 0
for i in range(x):
total += i
return total
result = cumulative_sum(4)
print('value: ', result)
And run it in the terminal as you normally would:
$ python3 my_script.py
ββββββββββββββββββββββββββββββββββββ
β Achievement Unlocked: Loops! β
β Achievement Unlocked: Functions! β
ββββββββββββββββββββββββββββββββββββ
value: 6
To install and use:
- Install the package with
pip install dev-achievements
- Use
import dev_achievements
at the top of your script - Run your
python
script as normal
To uninstall:
- Uninstall the package with
pip uninstall dev-achievements
- Optionally, delete the directory
~/.dev_achievements
to remove any achievement progress. Keep this directory to save progress through installs.
- Currently this only works on single file scripts - if you import your own module (e.g. for utility functions) that module will not be parsed (planning on fixing this though)
- Some achievements have dependencies, and will only be unlocked once previous ones have been unlocked
- Unlocked achievements will remain unlocked, so those "Achievement Unlocked" messages will only show once per achievement
- The bare bones achievements are currently implemented (using
"hello world"
,for
loops,lists
,functions
, etc.) - more achievements are in development (see issue #1) - More details on how to contribute (along with code docs to help with the development process) are coming soon