Metadata-Version: 2.1
Name: sharkpoint
Version: 2.0.0
Summary: A small Pythonic library for interacting with SharePoint document libraries
Author: TheOtherOne
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Office/Business
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: requests >=2.6
Requires-Dist: azure-identity
Project-URL: Bug Tracker, https://github.com/ThatsItForTheOtherOne/sharkpoint/issues
Project-URL: Homepage, https://github.com/ThatsItForTheOtherOne/sharkpoint

# SharkPoint
A small library for interacting with SharePoint document libaries (and hopefully more!)

# Usage

```
import sharkpoint
import azure.identity

ident = azure.identity.AzureDefaultCredential()
sharepoint_instance = sharkpoint.Sharepoint("contoso.sharepoint.com", ident)

site = sharkpoint.get_site("spam")
site.listdir("Shared Documents/")

file = site.open("Shared Documents/eggs.txt")
file.write("foo")
file.close()
```

# Why SharkPoint?
I couldn't think of anything else

