{"id":34042006,"url":"https://github.com/hardope/linkedpy","last_synced_at":"2026-04-05T11:32:41.200Z","repository":{"id":151925584,"uuid":"619984153","full_name":"hardope/linkedpy","owner":"hardope","description":"Implementation of Lists data type using Linked Lists","archived":false,"fork":false,"pushed_at":"2024-04-16T21:57:40.000Z","size":2269,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-15T14:30:34.510Z","etag":null,"topics":["data-structures","linked-list","python-packages"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/linkedpy/","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/hardope.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}},"created_at":"2023-03-27T19:57:33.000Z","updated_at":"2025-03-30T06:41:49.000Z","dependencies_parsed_at":"2024-03-01T22:46:50.684Z","dependency_job_id":null,"html_url":"https://github.com/hardope/linkedpy","commit_stats":null,"previous_names":["hardope/mylist","hardope/linkedy"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/hardope/linkedpy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardope%2Flinkedpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardope%2Flinkedpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardope%2Flinkedpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardope%2Flinkedpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hardope","download_url":"https://codeload.github.com/hardope/linkedpy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardope%2Flinkedpy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31434624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: 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":["data-structures","linked-list","python-packages"],"created_at":"2025-12-13T22:12:32.692Z","updated_at":"2026-04-05T11:32:41.184Z","avatar_url":"https://github.com/hardope.png","language":"Python","readme":"# linkedpy\n\n`linkedpy` is a simple linked list implementation in Python, providing a custom `List` class with various methods for managing linked list operations.\n\n## Features\n\n- **Basic Operations:**\n  - `append(value)`: Add value to the end of the list.\n  - `insert(index, value)`: Insert a value before the specified index.\n  - `remove(value)`: Remove the first occurrence of a value.\n  - `pop(index=None)`: Remove and return an item at a specified index (default is the last item).\n  - `clear()`: Remove all items from the list.\n\n- **Access and Indexing:**\n  - `__getitem__(index)`: Get the item at a specific index.\n  - `__setitem__(index, value)`: Set the item at a specific index.\n  - `__delitem__(index)`: Delete the item at a specific index.\n\n- **Information and Iteration:**\n  - `count()`: Return the number of items in the list.\n  - `__len__()`: Return the number of items in the list.\n  - `to_list()`: Return the list as a normal Python list.\n  - `__repr__()`: Return a string representation of the list.\n  - `__iter__()`: Iterate over values in the list.\n\n- **Concatenation:**\n  - `__add__(other)`: Concatenate two lists using the `+` operator.\n  - `__iadd__(other)`: In-place concatenation using the `+=` operator.\n\n- **Statistical Operations:**\n  - `min()`: Return the minimum value in the list.\n  - `max()`: Return the maximum value in the list.\n\n- **Sorting:**\n  - `sort()`: Sort The list\n  - `sorted()`: Return Sorted copy List\n\n## Usage\n\n```python\nfrom linkedpy import List\n\n# Create a new list\nmy_list = List(1, 2, 3)\n\n# Append values\nmy_list.append(4)\nmy_list.append(5)\n\n# Access elements\nprint(my_list[2])  # Output: 3\n\n# Remove element\nmy_list.remove(2)\n\n# Iterate over the list\nfor item in my_list:\n    print(item)\n\n# Concatenate lists\nnew_list = my_list + List(6, 7, 8)\n\n# In-place concatenation\nmy_list += List(9, 10)\n\n# Sorting\n\nmy_list.sort()\n\n# Optional reverse argument\nmy_list.sorted(reverse=True)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardope%2Flinkedpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhardope%2Flinkedpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardope%2Flinkedpy/lists"}