Earn Achievements while learning how to code
Project description
dev-achievements
Earn Achievements while learning how to code
Game-ify your experience while learning to code and get achievements for different concepts as you use them. Start off at a simple print statement and work your way up to functions and classes (and more to come).
Example
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 terminal as you normally would:
$ python3 my_script.py
┌──────────────────────────────────┐
│ Achievement Unlocked: Loops! │
│ Achievement Unlocked: Functions! │
└──────────────────────────────────┘
value: 6
Usage
- Install the package with
pip install dev-achievements - Use
import dev_achievementsat the top of your script - Run your
pythonscript as normal
Some things to note
- 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 should only show once per achievement
Future plans and contributing
- The bare bones achievements are currently implemented (using
"hello world",forloops,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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dev_achievements-1.0.3.tar.gz.
File metadata
- Download URL: dev_achievements-1.0.3.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a55c2a55149d154750d49479885311011c06dd2ce2daea04d449b67f92ae792f
|
|
| MD5 |
5c5b9d28d465e75b34b3fac7b3acc9a9
|
|
| BLAKE2b-256 |
b0aba987d79613d59c0b8ccc405161671351fab8f30110988208d265126539b9
|
File details
Details for the file dev_achievements-1.0.3-py3-none-any.whl.
File metadata
- Download URL: dev_achievements-1.0.3-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adf98ef6ce73a4fab4e202ecd25e174592a93fa565a24b3db8165be1b8f36309
|
|
| MD5 |
f44c8de3c6660074cdfcef6482dede8a
|
|
| BLAKE2b-256 |
abe2757a256682f0b95cc55a002599dfaca25bb7ca2c37e6688537268f03cc10
|