{"id":41956687,"url":"https://github.com/bilginpro/agency-aa","last_synced_at":"2026-01-25T22:40:14.680Z","repository":{"id":62494214,"uuid":"102038145","full_name":"bilginpro/agency-aa","owner":"bilginpro","description":"A crawler for AA (Anadolu Ajansı - Anadolu Agency).","archived":false,"fork":false,"pushed_at":"2021-01-18T08:15:28.000Z","size":15,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-27T02:52:46.034Z","etag":null,"topics":["aa","agency","ajans","anadolu","haber","news"],"latest_commit_sha":null,"homepage":null,"language":"PHP","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/bilginpro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-31T19:39:14.000Z","updated_at":"2024-08-09T19:51:43.000Z","dependencies_parsed_at":"2022-11-02T09:32:03.815Z","dependency_job_id":null,"html_url":"https://github.com/bilginpro/agency-aa","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/bilginpro/agency-aa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bilginpro%2Fagency-aa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bilginpro%2Fagency-aa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bilginpro%2Fagency-aa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bilginpro%2Fagency-aa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bilginpro","download_url":"https://codeload.github.com/bilginpro/agency-aa/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bilginpro%2Fagency-aa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28760648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T20:56:06.009Z","status":"ssl_error","status_checked_at":"2026-01-25T20:54:48.203Z","response_time":113,"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":["aa","agency","ajans","anadolu","haber","news"],"created_at":"2026-01-25T22:40:13.853Z","updated_at":"2026-01-25T22:40:14.664Z","avatar_url":"https://github.com/bilginpro.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Anadolu Ajansi News Crawler - Anadolu Ajansı Haber Robotu\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE.md)\n[![Build Status][ico-travis]][link-travis]\n[![Coverage Status][ico-scrutinizer]][link-scrutinizer]\n[![Quality Score][ico-code-quality]][link-code-quality]\n[![Total Downloads][ico-downloads]][link-downloads]\n\n[EN] This package is created for crawling news from Anadolu Ajansi. You have to be subscribed to AA and obtain user credentials for being able to use this package.\n\n[TR] Bu paket AA abonelerinin kullanıcı bilgileriyle haberleri taramaları için oluşturulmuştur. Aşağıdaki şekilde kullandığınızda son eklenen haberlerden istediğiniz adette haberi dizi olarak alabilirsiniz. Paketi kullanmak için AA abonesi olmalı ve kullanıcı bilgilerine sahip olmalısınız.\n\n\n\n\n\n## Install\n\nVia Composer\n\n``` bash\n$ composer require bilginpro/agency-aa\n```\n\n## Usage\n\n``` php\n$crawler = new \\BilginPro\\Agency\\Aa\\Crawler([\n    'user_name' =\u003e 'your-username',\n    'password' =\u003e 'your-password'\n]);\n\n$news = $crawler-\u003ecrawl([\n    'limit' =\u003e 10, //optional\n]);\n```\nCalling `$crawler-\u003ecrawl()` will return an array like this:\n\n```php\n[{\n\t\t\"code\": \"aa:text:20170831:12935896\",\n\t\t\"title\": \"Title of the news 1\",\n\t\t\"summary\": \"Summary...\",\n\t\t\"content\": \"Content 1\",\n\t\t\"created_at\": \"31.08.2017 15:56:12\",\n\t\t\"category\": \"Genel\",\n\t\t\"city\": \"Istanbul\",\n\t\t\"images\": [\"http:\\/\\/path\\/to\\/news1\\/image1\", \"http:\\/\\/path\\/to\\/news1\\/image2\"]\n\t},\n\t{\n\t\t\"code\": \"aa:text:20170831:12935899\",\n\t\t\"title\": \"Title of the news 2\",\n\t\t\"summary\": \"Summary...\",\n\t\t\"content\": \"Content 2\",\n\t\t\"created_at\": \"31.08.2017 15:56:12\",\n\t\t\"category\": \"Genel\",\n\t\t\"city\": \"Ankara\",\n\t\t\"images\": [\"http:\\/\\/path\\/to\\/news2\\/image1\", \"http:\\/\\/path\\/to\\/news2\\/image2\"]\n\t}\n]\n```\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Testing\n\n``` bash\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email yavuz@bilgin.pro instead of using the issue tracker.\n\n## Credits\n\n- [Yavuz Selim Bilgin][link-ysb]\n- [Murat Paksoy][link-mp]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/bilginpro/agency-aa.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/bilginpro/agency-aa/master.svg?style=flat-square\n[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/bilginpro/agency-aa.svg?style=flat-square\n[ico-code-quality]: https://img.shields.io/scrutinizer/g/bilginpro/agency-aa.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/bilginpro/agency-aa.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/bilginpro/agency-aa\n[link-travis]: https://travis-ci.org/bilginpro/agency-aa\n[link-scrutinizer]: https://scrutinizer-ci.com/g/bilginpro/agency-aa/code-structure\n[link-code-quality]: https://scrutinizer-ci.com/g/bilginpro/agency-aa\n[link-downloads]: https://packagist.org/packages/bilginpro/agency-aa\n[link-ysb]: https://github.com/ysb\n[link-mp]: https://github.com/slavesoul\n[link-contributors]: ../../contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbilginpro%2Fagency-aa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbilginpro%2Fagency-aa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbilginpro%2Fagency-aa/lists"}