Metadata-Version: 2.1
Name: KnoemaUpload
Version: 0.0.9
Summary: Used for only internal purpose of the knoema employees to upload files to portal via API.
Home-page: https://github.com/pypa/sampleproject
Author: Vasanth
Author-email: vbalakrishna@knoema.com
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
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
License-File: LICENSE

This package is used for only internal purpose of the knoema employees to upload documents to the portal via API.

##Sample Script:##

from Upload import KnoemaUpload 

filepath=r"Path_Of_Your_Document_Upload" # Fill your own Path and Cookies <br />

cookies= {Your_Cookies} # Generate your own cookies. <br />
obj=KnoemaUpload.KnoemaDocumentUploader(filepath,cookies) <br />
obj.FileUpload() # There is an option to pass 'headers' as parameter in FileUpload() <br />
