https://github.com/lazywinadmin/python
Python playground :)
https://github.com/lazywinadmin/python
Last synced: 11 months ago
JSON representation
Python playground :)
- Host: GitHub
- URL: https://github.com/lazywinadmin/python
- Owner: lazywinadmin
- Created: 2015-02-28T20:57:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T06:18:08.000Z (over 3 years ago)
- Last Synced: 2024-05-02T01:54:04.249Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
##