Example-project
Introduction
A example project's description is a high-level overview of why you’re doing a project. Its main features are:
- Funny commit history
- Using
sys
module - I need this project for one lecture
- Cool license
Example
This is the entire source code for this project:
import sys
def get_system_info(platform: str):
if 'win' in platform:
return sys.getwindowsversion()
if __name__ == '__main__':
info = get_system_info(sys.platform)
print(info)
License
This project is licensed under the terms of the MIT license.