{"id":28499829,"url":"https://github.com/brunorns/javaiterables","last_synced_at":"2025-07-04T04:31:40.360Z","repository":{"id":297845576,"uuid":"997660512","full_name":"BrunoRNS/javaIterables","owner":"BrunoRNS","description":"Java dynammic iterables based on python","archived":false,"fork":false,"pushed_at":"2025-06-07T20:33:10.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-07T21:26:47.680Z","etag":null,"topics":["iterable","iterables","iterator","java","jdk","python-based"],"latest_commit_sha":null,"homepage":"","language":"Java","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/BrunoRNS.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,"zenodo":null}},"created_at":"2025-06-06T23:14:02.000Z","updated_at":"2025-06-07T20:33:13.000Z","dependencies_parsed_at":"2025-06-07T21:37:30.412Z","dependency_job_id":null,"html_url":"https://github.com/BrunoRNS/javaIterables","commit_stats":null,"previous_names":["brunorns/javaiterables"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BrunoRNS/javaIterables","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoRNS%2FjavaIterables","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoRNS%2FjavaIterables/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoRNS%2FjavaIterables/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoRNS%2FjavaIterables/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BrunoRNS","download_url":"https://codeload.github.com/BrunoRNS/javaIterables/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoRNS%2FjavaIterables/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263445885,"owners_count":23467636,"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":["iterable","iterables","iterator","java","jdk","python-based"],"created_at":"2025-06-08T15:04:58.339Z","updated_at":"2025-07-04T04:31:40.353Z","avatar_url":"https://github.com/BrunoRNS.png","language":"Java","readme":"# JavaIterables Library\n\nWelcome to **JavaIterables**, the library that brings Python-like `list` and `dict` functionality to Java! Say goodbye to boilerplate code and hello to clean, efficient data manipulation. Whether you're managing collections or building complex data structures, `List` and `Dict` have got your back.\n\n---\n\n## What Does It Do?\n\n- **`List`**: Think of it as a Java-powered `list` from Python. Append, remove, sort, reverse, and more—all with ease.\n- **`Dict`**: A key-value store that feels like Python's `dict`. Add, update, search, and sort your data like a pro.\n\n---\n\n## Why Use It?\n\nBecause Java deserves to be fun too! With JavaIterables, you can:\n\n- Write less code.\n- Handle collections like a Pythonista.\n- Impress your colleagues with clean, readable Java.\n\n---\n\n## Quick Examples\n\n### **Using `List`**\n\n```java\nimport javaiterables.List;\n\npublic class Main {\n    public static void main(String[] args) {\n        List myList = new List();\n        myList.append(\"Java\");\n        myList.append(\"is\");\n        myList.append(\"awesome!\");\n\n        System.out.println(\"Original List:\");\n        myList.show();\n\n        myList.reverse();\n        System.out.println(\"Reversed List:\");\n        myList.show();\n    }\n}\n```\n\n### **Using `Dict`**\n\n```java\nimport javaiterables.Dict;\n\npublic class Main {\n    public static void main(String[] args) {\n        Dict myDict = new Dict();\n        myDict.add(\"language\", \"Java\");\n        myDict.add(\"type\", \"Object-Oriented\");\n        myDict.add(\"fun\", true);\n\n        System.out.println(\"Dictionary Contents:\");\n        System.out.println(\"Language: \" + myDict.get(\"language\"));\n        System.out.println(\"Type: \" + myDict.get(\"type\"));\n        System.out.println(\"Is it fun? \" + String.valueOf(myDict.get(\"fun\")));\n    }\n}\n```\n\n---\n\n## Ready-to-Use `.jar`\n\nNo need to compile anything! Just grab the precompiled `javaiterables.jar` from the release section and add it to your project:\n\n1. **As a module**: Add `requires javaiterables;` to your `module-info.java`.\n2. **Without modules**: Add the `.jar` to your classpath and import the classes directly.\n\n---\n\n## Licence\n\nThis library is open-source and available under the MIT License. Feel free to use, modify, and distribute it as needed.\n\n## Want More Details?\n\nCheck out the [full documentation](./docs/README.md) for a deep dive into all the features, methods, and examples.\n\n## Special Thanks\n\n- My programming professor\n- Family and friends\n- Everybody that helped me anyway\n\nAnd of course, you, who is going to try this amazing library!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunorns%2Fjavaiterables","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunorns%2Fjavaiterables","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunorns%2Fjavaiterables/lists"}