An open API service indexing awesome lists of open source software.

https://github.com/bilginpro/agency-aa

A crawler for AA (Anadolu Ajansı - Anadolu Agency).
https://github.com/bilginpro/agency-aa

aa agency ajans anadolu haber news

Last synced: 5 months ago
JSON representation

A crawler for AA (Anadolu Ajansı - Anadolu Agency).

Awesome Lists containing this project

README

          

# Anadolu Ajansi News Crawler - Anadolu Ajansı Haber Robotu

[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]

[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.

[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.

## Install

Via Composer

``` bash
$ composer require bilginpro/agency-aa
```

## Usage

``` php
$crawler = new \BilginPro\Agency\Aa\Crawler([
'user_name' => 'your-username',
'password' => 'your-password'
]);

$news = $crawler->crawl([
'limit' => 10, //optional
]);
```
Calling `$crawler->crawl()` will return an array like this:

```php
[{
"code": "aa:text:20170831:12935896",
"title": "Title of the news 1",
"summary": "Summary...",
"content": "Content 1",
"created_at": "31.08.2017 15:56:12",
"category": "Genel",
"city": "Istanbul",
"images": ["http:\/\/path\/to\/news1\/image1", "http:\/\/path\/to\/news1\/image2"]
},
{
"code": "aa:text:20170831:12935899",
"title": "Title of the news 2",
"summary": "Summary...",
"content": "Content 2",
"created_at": "31.08.2017 15:56:12",
"category": "Genel",
"city": "Ankara",
"images": ["http:\/\/path\/to\/news2\/image1", "http:\/\/path\/to\/news2\/image2"]
}
]
```
## Change log

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Testing

``` bash
$ composer test
```

## Contributing

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

## Security

If you discover any security related issues, please email yavuz@bilgin.pro instead of using the issue tracker.

## Credits

- [Yavuz Selim Bilgin][link-ysb]
- [Murat Paksoy][link-mp]
- [All Contributors][link-contributors]

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

[ico-version]: https://img.shields.io/packagist/v/bilginpro/agency-aa.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-travis]: https://img.shields.io/travis/bilginpro/agency-aa/master.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/bilginpro/agency-aa.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/bilginpro/agency-aa.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/bilginpro/agency-aa.svg?style=flat-square

[link-packagist]: https://packagist.org/packages/bilginpro/agency-aa
[link-travis]: https://travis-ci.org/bilginpro/agency-aa
[link-scrutinizer]: https://scrutinizer-ci.com/g/bilginpro/agency-aa/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/bilginpro/agency-aa
[link-downloads]: https://packagist.org/packages/bilginpro/agency-aa
[link-ysb]: https://github.com/ysb
[link-mp]: https://github.com/slavesoul
[link-contributors]: ../../contributors