{"id":15445185,"url":"https://github.com/f213/wunderlist-rest","last_synced_at":"2025-07-30T20:04:04.670Z","repository":{"id":9910913,"uuid":"11919938","full_name":"f213/Wunderlist-REST","owner":"f213","description":"Perl client for unofficial wunderlist REST api","archived":false,"fork":false,"pushed_at":"2013-08-06T09:14:31.000Z","size":128,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-25T13:54:48.172Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Perl","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/f213.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-08-06T09:13:12.000Z","updated_at":"2018-04-03T11:28:38.000Z","dependencies_parsed_at":"2022-09-13T16:02:39.292Z","dependency_job_id":null,"html_url":"https://github.com/f213/Wunderlist-REST","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/f213/Wunderlist-REST","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f213%2FWunderlist-REST","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f213%2FWunderlist-REST/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f213%2FWunderlist-REST/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f213%2FWunderlist-REST/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f213","download_url":"https://codeload.github.com/f213/Wunderlist-REST/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f213%2FWunderlist-REST/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267930586,"owners_count":24167472,"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-07-30T02:00:09.044Z","response_time":70,"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":[],"created_at":"2024-10-01T19:44:14.892Z","updated_at":"2025-07-30T20:04:04.620Z","avatar_url":"https://github.com/f213.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n    Wunderlist::REST - Perl module for dealing with Wunderlist\n    \u003chttps://www.wunderlist.com\u003e api.\n\nVERSION\n    Version 0.01\n\nSYNOPSIS\n    This module utilizes Wunderlist API. Api is undocumented officialy, but\n    it was reverse engineered by bsmt. The documentation can be found here\n    \u003chttps://wunderpy.readthedocs.org/en/latest/index.html\u003e. You should read\n    that before working with this module.\n\n    Currently this module does not support even full CRUD, because i need\n    only create and delete.\n\n            use Wunderlist::REST;\n            my $api = Wunderlist::REST-\u003enew(\n                    login           =\u003e 'myLogin',\n                    password        =\u003e 'myPassword',\n            );\n\n            my $me = $api-\u003eme();\n            say $me-\u003e{email};\n\n            my $list = $api-\u003eaddList(\n                    [\n                            title   =\u003e 'TestList',\n                    ]\n            );\n\n            my $task = $api-\u003eaddTask(\n                    [\n                            title   =\u003e 'TestTask',\n                            list_id =\u003e $list-\u003e{id},\n                    ]\n            );\n\n            my @tasks = $api-\u003etasks();\n            my @lists = $api-\u003elists();\n\n            $api-\u003edelTask($task-\u003e{id});\n            $api-\u003edelList($list-\u003e{id});\n        ...\n\nSUBROUTINES/METHODS\n  $api-\u003eme()\n    Get wunderlist information about the logged in account.\n    \u003chttps://wunderpy.readthedocs.org/en/latest/wunderlist_api/account/me.ht\n    ml\u003e\n\n  $api-\u003elists()\n    Get a list of all wunderlist lists.\n    \u003chttps://wunderpy.readthedocs.org/en/latest/wunderlist_api/lists/lists.h\n    tml\u003e.\n\n  $api-\u003eaddList()\n    Create a new list, The only parameter Title is needed.\n\n            $api-\u003eaddList([title    =\u003e 'testList']);\n\n  $api-\u003edelList()\n    Delete an existing list.\n\n            $api-\u003edelList($listId);\n\n  $api-\u003etasks();\n    Get a list of all wunderlist tasks.\n    \u003chttps://wunderpy.readthedocs.org/en/latest/wunderlist_api/tasks/tasks.h\n    tml\u003e\n\n  $api-\u003eaddTask()\n    Create a new list, The only parameter Title is needed.\n\n            $api-\u003eaddList(\n                    [\n                            title   =\u003e 'testTask',\n                            listId  =\u003e $listId,\n                    ]\n            );\n\n  $api-\u003edelTask()\n    Delete an existing task.\n\n            $api-\u003edelList($listId);\n\nAUTHOR\n    Fedor Borshev, \"\u003cfedor9 at gmail.com\u003e\"\n\nBUGS\n    Please report any bugs or feature requests to \"bug-wunderlist-rest at\n    rt.cpan.org\", or through the web interface at\n    \u003chttp://rt.cpan.org/NoAuth/ReportBug.html?Queue=Wunderlist-REST\u003e. I will\n    be notified, and then you'll automatically be notified of progress on\n    your bug as I make changes.\n\nSUPPORT\n    You can find documentation for this module with the perldoc command.\n\n        perldoc Wunderlist::REST\n\n    You can also look for information at:\n\n    *   Github\n\n        \u003chttps://github.com/f213/Wunderlist-REST\u003e\n\n    *   RT: CPAN's request tracker (report bugs here)\n\n        \u003chttp://rt.cpan.org/NoAuth/Bugs.html?Dist=Wunderlist-REST\u003e\n\n    *   AnnoCPAN: Annotated CPAN documentation\n\n        \u003chttp://annocpan.org/dist/Wunderlist-REST\u003e\n\n    *   CPAN Ratings\n\n        \u003chttp://cpanratings.perl.org/d/Wunderlist-REST\u003e\n\n    *   Search CPAN\n\n        \u003chttp://search.cpan.org/dist/Wunderlist-REST/\u003e\n\nACKNOWLEDGEMENTS\nLICENSE AND COPYRIGHT\n    Copyright 2013 Fedor Borshev.\n\n    This program is free software; you can redistribute it and/or modify it\n    under the terms of the the Artistic License (2.0). You may obtain a copy\n    of the full license at:\n\n    \u003chttp://www.perlfoundation.org/artistic_license_2_0\u003e\n\n    Any use, modification, and distribution of the Standard or Modified\n    Versions is governed by this Artistic License. By using, modifying or\n    distributing the Package, you accept this license. Do not use, modify,\n    or distribute the Package, if you do not accept this license.\n\n    If your Modified Version has been derived from a Modified Version made\n    by someone other than you, you are nevertheless required to ensure that\n    your Modified Version complies with the requirements of this license.\n\n    This license does not grant you the right to use any trademark, service\n    mark, tradename, or logo of the Copyright Holder.\n\n    This license includes the non-exclusive, worldwide, free-of-charge\n    patent license to make, have made, use, offer to sell, sell, import and\n    otherwise transfer the Package with respect to any patent claims\n    licensable by the Copyright Holder that are necessarily infringed by the\n    Package. If you institute patent litigation (including a cross-claim or\n    counterclaim) against any party alleging that the Package constitutes\n    direct or contributory patent infringement, then this Artistic License\n    to you shall terminate on the date that such litigation is filed.\n\n    Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER\n    AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n    THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\n    PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY\n    YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR\n    CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR\n    CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,\n    EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff213%2Fwunderlist-rest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff213%2Fwunderlist-rest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff213%2Fwunderlist-rest/lists"}