You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A release of SharePy v2 has been in the works for quite a while, but has been held up due to a lack of testing. This release introduces support for federated authentication, with the SharePointADFS auth class, however, I don't have access to an ADFS-enabled site to test it throughly.
If you want to help out with testing, please install it using pip:
pip install --pre sharepy
If you find a bug, please create an issue with v2 in the title. Be sure to include as much detail as possible in your bug report, including:
The version of SharePy you installed
The authentication type your site is using (run sharepy.auth.detect('user@example.com') if you're not sure)
Any errors and tracebacks you see
Changelog
A major refactor of SharePy to provide a standard Requests auth interface.
Converted the existing SharePoint Online authentication to a Requests auth class
Added ADFS auth to compliment the default SharePoint Online authentication. Thanks to @joemeneses
Added automatic authentication method detection for sharepy.connect()
Added version checking for saved session objects. Major version number changes invalidate a session
Removed auth_tld argument from sharepy.connect() and replaced with an login_url property in auth classes
Removed connection status messages and added Python exceptions when errors are encountered
Fixed session files not being closed when reading and writing
Fixed missing dependencies in PyPI package
Added setup.py script to repository
The text was updated successfully, but these errors were encountered:
Hi @karimabuseer. I ended up releasing to production without having much input from users, and as a result there are some bugs that have been raised. Perhaps you could try to reproduce the issues described in #49 and #59?
A release of SharePy v2 has been in the works for quite a while, but has been held up due to a lack of testing. This release introduces support for federated authentication, with the
SharePointADFS
auth class, however, I don't have access to an ADFS-enabled site to test it throughly.If you want to help out with testing, please install it using pip:
If you find a bug, please create an issue with
v2
in the title. Be sure to include as much detail as possible in your bug report, including:sharepy.auth.detect('user@example.com')
if you're not sure)Changelog
A major refactor of SharePy to provide a standard Requests auth interface.
sharepy.connect()
auth_tld
argument fromsharepy.connect()
and replaced with anlogin_url
property in auth classessetup.py
script to repositoryThe text was updated successfully, but these errors were encountered: