Metadata-Version: 1.1
Name: pyrosalind
Version: 0.1.2
Summary: Parse information found on the http://rosalind.info website
Home-page: https://github.com/Aluriak/pyrosalind
Author: lucas bourneuf
Author-email: lucas.bourneuf@openmailbox.org
License: UNKNOWN
Description: # PyROSALIND
        Parsing of [ROSALIND](http://rosalind.info) website, in order to get user information programatically.
        
        To run an example on [aluriak user](http://rosalind.info/users/aluriak), run:
        
            make
        
        The main script gives example of the main API, which is currently:
        
            from pyrosalind import User
        
            aluriak = User.from_name('aluriak')
            print(aluriak)
            print(aluriak.solved)
        
        
        Use `pip install -r requirements.txt` to install the *beautiful soup* and *requests* dependencies.
        
        
        ## Retrieved data
        Input data is the username.
        
        - [X] problems solved
        - [ ] badges
        - [ ] achievements
        - [ ] source codes submitted for each problem
        - [ ] scores, statistics
        - [ ] global and country ranks
        - [ ] account details (last solvel, member for, country, time zone, language)
        
Keywords: graph
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
