Metadata-Version: 2.1
Name: gigsebook
Version: 1.0.3
Summary: a python library to search free eBooks online using Library Genesis's database 
Home-page: https://github.com/gaurav712/GiGS-eBook
Author: Gaurav Kumar Yadav
Author-email: gaurav712@protonmail.com
License: UNKNOWN
Description: # GiGS-eBook
        a python library to search free eBooks online using [Library Genesis](https://en.wikipedia.org/wiki/Library_Genesis)'s database
        
        # Installation
        `pip3 install gigsebook`
        
        # TODO
        * Better error handling
        
        # USAGE
        * import the class FetchData
        
            `from gigsebook import FetchData`
        * initialize an instance of `FetchData` with the query
        
            `output = FetchData('your_query')`
        * now `output.data` should be filled with the returned info, use it to your needs. e.g.
        
            `print(output.data)`
        
            should provide you with:
        
            ```
            [
                {
                    'title': 'dummy',
                    'author': 'dummy, dummy2',
                    'year': '0000',
                    'publication': 'dummy',
                    'pages': '0',
                    'language': 'dummy',
                    'size': '0 Bytes',
                    'extention': 'none',
                    'links': ['https://example.example',
                              'https://example2.example']
                },
        
                {
                    'title': 'dummy',
                    'author': 'dummy, dummy2',
                    'year': '0000',
                    'publication': 'dummy',
                    'pages': '0',
                    'language': 'dummy',
                    'size': '0 Bytes',
                    'extention': 'none',
                    'links': ['https://example.example',
                              'https://example2.example']
                },
        
                .
                .
                .
            ]
            ```
        
            *Note that the output above is not JSON, It's just a list of dictionaries. The representation is just to make it readable.*
        
        
        # NOTES
        **I DO NOT RECOMMEND PIRACY OF ANY CREATION, BUY THE ORIGINAL COPIES TO SUPPORT THE AUTHOR. THIS CODE IS FOR EDUCATIONAL PURPOSES. FOR OTHER USES, YOU ARE RESPONSIBLE FOR WHAT YOU DO.**
        
        # LICENSE
        Licensed under MIT License
        
        *Copyright (c) 2020 Gaurav Kumar Yadav*
        
        Head over to the `LICENSE` for details
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
