{"id":27939563,"url":"https://github.com/devandreacarratta/python-training-example","last_synced_at":"2025-05-07T09:55:02.951Z","repository":{"id":45103302,"uuid":"378240612","full_name":"devandreacarratta/python-training-example","owner":"devandreacarratta","description":"I'm learning Python!","archived":false,"fork":false,"pushed_at":"2022-01-08T09:27:02.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-06T07:17:39.721Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://links.devandreacarratta.it/blog","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devandreacarratta.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"patreon":"devandreacarratta","custom":["https://www.buymeacoffee.com/andreacarratta"]}},"created_at":"2021-06-18T18:54:53.000Z","updated_at":"2022-01-08T09:27:04.000Z","dependencies_parsed_at":"2022-09-16T13:45:34.875Z","dependency_job_id":null,"html_url":"https://github.com/devandreacarratta/python-training-example","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devandreacarratta%2Fpython-training-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devandreacarratta%2Fpython-training-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devandreacarratta%2Fpython-training-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devandreacarratta%2Fpython-training-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devandreacarratta","download_url":"https://codeload.github.com/devandreacarratta/python-training-example/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252856425,"owners_count":21814853,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-07T09:55:02.318Z","updated_at":"2025-05-07T09:55:02.945Z","avatar_url":"https://github.com/devandreacarratta.png","language":"Python","funding_links":["https://patreon.com/devandreacarratta","https://www.buymeacoffee.com/andreacarratta","https://www.patreon.com/devandreacarratta"],"categories":[],"sub_categories":[],"readme":"# python-training-example\n\nI'm learning Python!\n\n- Python Interpreter: **3.9**\n\n## Books @ Amazon \n\n- [Python Book](https://amzn.to/3zDtWrO)\n- [EN Python Book](https://amzn.to/3gOEsUF)\n- [IT Python Book](https://amzn.to/3xLQSDF)\n- [Python. Guida alla sintassi, alle funzionalità avanzate e all'analisi dei dati](https://amzn.to/3gDNW68)\n- [The Quick Python Book](https://amzn.to/3wFIi9d)\n\n## Source detail\n\n|ID|FileName|Description|\n|--|--|--|\n|[001](https://github.com/devandreacarratta/python-training-example/blob/master/source/001-hello-world.py)|001-hello-world|Simple Hello World|\n|[002](https://github.com/devandreacarratta/python-training-example/blob/master/source/002-hello-world-name.py)|002-hello-world-name|Hello word - Get 'input' from user|\n|[003](https://github.com/devandreacarratta/python-training-example/blob/master/source/003-array-loop-for.py)|003-array-loop-for|LOOP - FOR array items|\n|[004](https://github.com/devandreacarratta/python-training-example/blob/master/source/004-array-loop-while.py)|004-array-loop-while|LOOP - WHILE array items|\n|[005](https://github.com/devandreacarratta/python-training-example/blob/master/source/005-array-add-element.py)|005-array-add-element|Array - Add single item|\n|[006](https://github.com/devandreacarratta/python-training-example/blob/master/source/006-array-add-elements.py)|006-array-add-elements|Array - Extend with another array|\n|[007](https://github.com/devandreacarratta/python-training-example/blob/master/source/007-array-sort-elements.py)|007-array-sort-elements|Array - Sort items (ASC/ DESC)|\n|[008](https://github.com/devandreacarratta/python-training-example/blob/master/source/008-array-remove-element-position.py)|008-array-remove-element-position|Array - Remove item by position|\n|[009](https://github.com/devandreacarratta/python-training-example/blob/master/source/009-array-remove-element-value.py)|009-array-remove-element-value|Array - Remove item by value|\n|[010](https://github.com/devandreacarratta/python-training-example/blob/master/source/010-array-check-element-exists.py)|010-array-check-element-exists|Array - Check if value exists|\n|[011](https://github.com/devandreacarratta/python-training-example/blob/master/source/011-http-request-get.py)|011-http-request-get|Simulate a HTTP Request GET|\n|[012](https://github.com/devandreacarratta/python-training-example/blob/master/source/012-http-request-get-params.py)|012-http-request-get-params|Simulate a HTTP Request GET with query string|\n|[013](https://github.com/devandreacarratta/python-training-example/blob/master/source/013-http-request-get-json-load.py)|013-http-request-get-json-load|How to read (and show) values from a remote JSON|\n|[014](https://github.com/devandreacarratta/python-training-example/blob/master/source/014-random-password.py)|014-random-password|Generate Random Password|\n\n\n## Follow Me\n- [AndreaCarratta@Linkedin](http://bit.ly/linkedin-acarratta)\n- [AndreaCarratta@Patreon](https://www.patreon.com/devandreacarratta)\n- [AndreaCarratta@YouTube](https://bit.ly/devandreacarratta-youtube)\n- [DevAndreaCarratta@Linkedin](http://bit.ly/linkedin-devandreacarratta)\n- [DevAndreaCarratta@Facebook](http://bit.ly/devandreacarratta-facebook)\n- [DevAndreaCarratta@Telegram](http://bit.ly/telegram-devandreacarratta)\n- [Backend Developer Italia@Linkedin](https://bit.ly/linkedin-backend-developer-italia)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevandreacarratta%2Fpython-training-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevandreacarratta%2Fpython-training-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevandreacarratta%2Fpython-training-example/lists"}