An open API service indexing awesome lists of open source software.

https://github.com/lazywinadmin/python

Python playground :)
https://github.com/lazywinadmin/python

Last synced: 11 months ago
JSON representation

Python playground :)

Awesome Lists containing this project

README

          

# Python

## Learning Python

-[]
https://app.pluralsight.com/library/courses/getting-started-python-core/learning-check
* [Practical Python](https://github.com/dabeaz-course/practical-python)

## Resources

* https://learnpythonthehardway.org/book/ (Learn Python the hard way, free ebook online)
* https://www.learnpython.org/
* https://realpython.com/
* https://realpython.com/learning-paths/python-devops

## Requirements

```
# install pip (in ubuntu)
sudo apt install python-pip
# for python3
sudo apt install python3-pip

# download a module (example with 'requests' module)
pip install requests
# install jinja
pip3 install jinja2
```

## Exercices to explore

* Working with files and folders
* Rest API Call
* Building an HTML report
* Lint Test
* Download packages
* Build function
* Pass parameters to functions, script
* Build module
* Querying local and remote machine over different protocol

##