{"id":21855516,"url":"https://github.com/cfunkz/python-mini-projects","last_synced_at":"2026-04-12T16:08:08.305Z","repository":{"id":218227132,"uuid":"745917601","full_name":"cfunkz/Python-Mini-Projects","owner":"cfunkz","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-28T21:50:36.000Z","size":47,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-21T19:16:04.575Z","etag":null,"topics":["inventory-management","inventory-management-system","multi-project","python","qrcode","scripts","weather"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"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/cfunkz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-20T14:45:11.000Z","updated_at":"2024-11-19T04:37:35.000Z","dependencies_parsed_at":"2024-02-28T19:49:53.859Z","dependency_job_id":"eff559ab-a8a7-4c06-a8b6-d25b75473c95","html_url":"https://github.com/cfunkz/Python-Mini-Projects","commit_stats":{"total_commits":43,"total_committers":1,"mean_commits":43.0,"dds":0.0,"last_synced_commit":"4f6245370283486347dd5f9190f004b9450d2ff4"},"previous_names":["cfunkz/python-mini-projects"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cfunkz/Python-Mini-Projects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfunkz%2FPython-Mini-Projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfunkz%2FPython-Mini-Projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfunkz%2FPython-Mini-Projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfunkz%2FPython-Mini-Projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cfunkz","download_url":"https://codeload.github.com/cfunkz/Python-Mini-Projects/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfunkz%2FPython-Mini-Projects/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268639746,"owners_count":24282667,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["inventory-management","inventory-management-system","multi-project","python","qrcode","scripts","weather"],"created_at":"2024-11-28T02:16:06.182Z","updated_at":"2026-04-12T16:08:08.265Z","avatar_url":"https://github.com/cfunkz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python-Mini-Projects\n\n## QR Code Generator py_qrcode.py [Link](https://github.com/cfunkz/Python-Mini-Projects/blob/main/py_qrcode.py)\n\n### Description\n\nThis Python script generates QR codes using the `qrcode` library. The script prompts the user to input a website or code, generates a QR code for the input, and saves the QR code as an image file. Each generated QR code is uniquely named using a **UUID** to avoid overwriting existing files.\n\n### Usage\n\n1. Run the script.\n2. Enter a website URL or code when prompted.\n3. The script will generate a QR code and save it as a PNG image with a unique name.\n4. Optionally, you can choose to generate another QR code by entering 'Y' when prompted.\n\n### Dependencies\n\n- Python 3.x\n- [qrcode](https://pypi.org/project/qrcode/)\n- [uuid](https://docs.python.org/3/library/uuid.html)\n\nOr install using ```pip install qrcode, uuid```\n\n## Weather API Call py_weather.py [Link](https://github.com/cfunkz/Python-Mini-Projects/blob/main/py_weather.py)\n\n### Description\n\nThis script uses the **requests** library to fetch current weather information from the **wttr.in API**. It prompts to input a location, and then retrieves and displays the weather details using the \"F2\" view option.\n\n### Information Displayed\n\n- Current condition (e.g., Overcast)\n- Temperature (e.g., -2°C)\n- Wind speed and direction (e.g., 6 km/h ←)\n- Visibility (e.g., 10 km)\n- Precipitation (e.g., 0.0 mm)\n\n### Dependencies\n\n- Python 3.x\n- [requests](https://pypi.org/project/requests/)\n\nOr install using ```pip install requests```\n\n## Inventory Management inventory_management.py [Link](https://github.com/cfunkz/Python-Mini-Projects/blob/main/inventory_management.py)\n\n### Description\n\nA basic inventory management system coded in Python. The script allows users to add, update, remove, and find items in the inventory.\n\n### Features\n\n- **Add Item:** Add a new item to the inventory by providing the name, barcode, and quantity `add_item(\"name\", \"barcode\", quantity)`.\n- **Update Item:** Update the quantity of an existing item in the inventory. `update_item(\"barcode or name\", quantity)`.\n- **Remove Item:** Remove an item from the inventory or decrease its quantity. `remove_item(\"barcode or name\", quantity)`.\n- **Find Item:** Search for an item in the inventory using its name or barcode. `find_item(\"item name or barcode\")`.\n\n### Usage\n\n1. Create inventory.json file with `{}` within.\n2. Run the script.\n3. Select an option from the displayed options.\n\n### Dependencies\n\n- Python 3.x\n- [uuid](https://docs.python.org/3/library/uuid.html)\n\nOr install using ```pip install uuid```\n\n## Soundcloud downloader py_soundcloud.py [Link](https://github.com/cfunkz/Python-Mini-Projects/blob/main/py_soundcloud.py)\n\n### Description\n\nA soundcloud song/playlist downloader made with soundcloud-lib module.\n\n### Features\n\n- **Track Download**\n- **Playlist Download**\n\n### Usage\n\n1. Run py_soundcloud.py\n2. Select what you wish to download\n3. Files will save at the same loaction it has ran from.\n\n### Dependencies\n\n- [soundcloud-lib](https://pypi.org/project/soundcloud-lib/) ```pip install soundcloud-lib```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcfunkz%2Fpython-mini-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcfunkz%2Fpython-mini-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcfunkz%2Fpython-mini-projects/lists"}