Metadata-Version: 2.1
Name: colab-load
Version: 1.0.0
Summary: Library to download .ipynb from google colab.
Home-page: https://github.com/Filin153/colab_load.git
Author: @GusGus153
Author-email: dimons2006@yandex.ru
Project-URL: GitHub, https://github.com/Filin153/colab_load.git
Keywords: colab load file ipynb
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests ==2.31.0
Requires-Dist: selenium ==4.14.0
Requires-Dist: numpy ==1.26.1
Requires-Dist: fake-useragent ==1.3.0
Requires-Dist: colorama

# Colab Load #

## What is this? ##
Library to download .ipynb from google colab

## Quick Guide ##
	pip install colab-load
One url:

    from colab_load.load import ColabLoad
    import asyncio
    
    colab_load = ColabLoad()
    
    async def main():
        res = await colab_load.load_file_single("https://colab.research.google.com/drive/1QD1TM2TroOEqqtTURpk5sVOmGLQeREv_?usp=sharing",
                                          "file_colab_load", "test_colab_load")
    
        print(res)
    
    asyncio.run(main())



