{"id":17603073,"url":"https://github.com/yjg30737/pyqt-file-list-widget","last_synced_at":"2026-02-20T00:01:22.519Z","repository":{"id":57679352,"uuid":"437213504","full_name":"yjg30737/pyqt-file-list-widget","owner":"yjg30737","description":"PyQt QListWidget for files (Being able to drop the files based on user-defined extensions)","archived":false,"fork":false,"pushed_at":"2022-05-14T10:40:10.000Z","size":38,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-01T01:22:20.031Z","etag":null,"topics":["py37","pyqt","pyqt-examples","pyqt-file-list-widget","pyqt-qlistwidget","pyqt-tutorial","pyqt5","pyqt5-examples","pyqt5-file-list-widget","pyqt5-gui","pyqt5-qlistwidget","pyqt5-tutorial","python","python3","python37","qlistwidget","qt"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yjg30737.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-11T07:09:10.000Z","updated_at":"2024-07-13T02:12:38.000Z","dependencies_parsed_at":"2022-08-24T19:21:09.634Z","dependency_job_id":null,"html_url":"https://github.com/yjg30737/pyqt-file-list-widget","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yjg30737/pyqt-file-list-widget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-file-list-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-file-list-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-file-list-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-file-list-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yjg30737","download_url":"https://codeload.github.com/yjg30737/pyqt-file-list-widget/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-file-list-widget/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29637400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["py37","pyqt","pyqt-examples","pyqt-file-list-widget","pyqt-qlistwidget","pyqt-tutorial","pyqt5","pyqt5-examples","pyqt5-file-list-widget","pyqt5-gui","pyqt5-qlistwidget","pyqt5-tutorial","python","python3","python37","qlistwidget","qt"],"created_at":"2024-10-22T13:39:02.614Z","updated_at":"2026-02-20T00:01:22.503Z","avatar_url":"https://github.com/yjg30737.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyqt-file-list-widget\nPyQt QListWidget for files (Being able to drop the files based on user-defined extensions)\n\n## Requirements\nPyQt5 \u003e= 5.8\n\n## Setup\n`python -m pip install pyqt-file-list-widget`\n\n## Included Packages\n* \u003ca href=\"https://github.com/yjg30737/pyqt-tooltip-list-widget.git\"\u003epyqt-tooltip-list-widget\u003c/a\u003e - parent class\n* \u003ca href=\"https://github.com/yjg30737/pyqt-files-already-exists-dialog.git\"\u003epyqt-files-already-exists-dialog\u003c/a\u003e\n\n## Method Overview\n* `addFilenames(filenames: list, cur_filename: str = '')` - Add files on the list. `cur_filename` is current file name to set. Default is first one.  \n* `setFilenames(filenames: list, cur_filename: str = '')` - Clear the list before adding new files on the list.\n* `addDirectory(dirname: str, cur_filename: str = '')` - Add files in directory.\n* `setDirectory(dirname: str, cur_filename: str = '')` - Clear the list before adding new files on the list.\n* `setFilenameOnly(f: bool)` - Show file name only. ex) C:\\...\\abc.txt -\u003e abc.txt\n* `isFilenameOnly() -\u003e bool`\n* `getSelectedFilenames() -\u003e list`\n* `removeSelectedRows()`\n* `clear()` - Overriding method.\n* `getAbsFilename(basename: str) -\u003e str` - Get the absolute file path with base file name.\n* `setExtensions(extensions: list)` - Set the acceptable extensions of list.\n* `setDuplicateEnabled(f: bool)` - Allow list to have duplicate item.\n* `isDuplicateEnabled() -\u003e bool`\n* `getFilenameFromRow(r: int) -\u003e str`\n\n## Example\nSee \u003ca href=\"https://github.com/yjg30737/pyqt-top-left-right-file-list-widget.git\"\u003epyqt-top-left-right-file-list-widget\u003c/a\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-file-list-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyjg30737%2Fpyqt-file-list-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-file-list-widget/lists"}