Metadata-Version: 1.1
Name: ants
Version: 0.0.2
Summary: A human spider framework base on django
Home-page: https://github.com/mymusise/ants
Author: mymusise
Author-email: mymusise1@gmail.com
License: MIT
Description: Ants
        ===
        
        Ants is a clawer framework for perfectionism base on Django， which help people build a clawer faster and easier to make manage.
        
        Requirements
        ===
        
        - Python 2.7 +
        - Django 1.10 +
        - Gevent 1.1.2 
        - Jinja2 2.8
        
        
        Install 
        ===
        
        	pip install ants
            
        To get the lastest, download this fucking source code and build
        
        	git clone git@github.com:mymusise/Ants.git
            cd Ants
            python setup.py build
            sudo python setup.py install
            
        
        Getting started
        ====
        
        ## 1. Initialize project
        
        Ok, I suggest you work on a virtualenv
        
        	virtualenv my_env
            source my_env/bin/activate
        
        Then we install the Requirements and start a django project
        
        	pip install django gevent ants
            ants-tools  startproject my_ants
            cd my_ants
            
        now you can use ``tree`` command to get the file-tree of your project
        
            ├── manage.py
            ├── my_ants
            │   ├── __init__.py
            │   ├── settings.py
            │   ├── urls.py
            │   └── wsgi.py
            ├── parsers
            │   ├── admin.py
            │   ├── ants
            │   │   └── __init__.py
            │   ├── apps.py
            │   ├── __init__.py
            │   ├── migrations
            │   │   └── __init__.py
            │   ├── models.py
            │   ├── tests.py
            │   └── views.py
            └── spiders
                ├── admin.py
                ├── ants
                │   └── __init__.py
                ├── apps.py
                ├── __init__.py
                ├── migrations
                │   └── __init__.py
                ├── models.py
                ├── tests.py
                └── views.py
        
        
        
        ### 2. Write your first spider ant!
        
        Ants will run ants belong to clawers by run command `python manage.py runclawer [spider_name]`
        
        Let's add a ant.``spider/ants/first_blood.py``
        
            from ants.utils import BaseMixin
            import requests
        
        
            class FirstBloodClawerWhatNameYouWant(BaseMixin):
                NAME = 'first_blood' # must be unique
                thread = 2 # the number of coroutine, default 1
                url_head = """https://movie.douban.com/j/search_subjects?type=movie&tag=%E7%83%AD%E9%97%A8&sort=recommend&page_limit=10&page_start={}"""
                max_page = 4
        
                def get_url(self, url):
                    res = requests.get(url)
                    print(res.text)
        
                def start(self):
                    need_urls = [self.url_head.format(i) for i in range(self.max_page)]
                    list(map(self.get_url, need_urls))
        
        
        This is a simple spider that can get hot movie from `Douban`.
        Be attention, the `NAME` property is required, which is the unique identification
        for different clawers.
        
        Now we can run our first blood to get hot movie!
        
        	python manage.py runclawer first_blood
        
        
        # Enjoy!
Keywords: spider django human
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
