https://github.com/mr55p-dev/python-outlook-calendar-sync
Python CLI tool to scrape the MS outlook webapp and parse events.
https://github.com/mr55p-dev/python-outlook-calendar-sync
Last synced: about 1 year ago
JSON representation
Python CLI tool to scrape the MS outlook webapp and parse events.
- Host: GitHub
- URL: https://github.com/mr55p-dev/python-outlook-calendar-sync
- Owner: mr55p-dev
- License: bsd-2-clause
- Created: 2022-11-23T13:26:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T22:44:54.000Z (over 3 years ago)
- Last Synced: 2025-04-27T16:23:28.694Z (about 1 year ago)
- Language: Python
- Size: 56.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
========
Overview
========
.. start-badges
.. list-table::
:stub-columns: 1
* - docs
- |docs|
* - tests
- | |github-actions|
| |codecov|
* - package
- | |version| |wheel| |supported-versions| |supported-implementations|
.. | |commits-since|
.. |docs| image:: https://readthedocs.org/projects/python-outlook-calendar-sync/badge/?style=flat
:target: https://python-outlook-calendar-sync.readthedocs.io/
:alt: Documentation Status
.. |github-actions| image:: https://github.com/mr55p-dev/python-outlook-calendar-sync/actions/workflows/github-actions.yml/badge.svg
:alt: GitHub Actions Build Status
:target: https://github.com/mr55p-dev/python-outlook-calendar-sync/actions
.. |codecov| image:: https://codecov.io/gh/mr55p-dev/python-outlook-calendar-sync/branch/main/graphs/badge.svg?branch=main
:alt: Coverage Status
:target: https://codecov.io/github/mr55p-dev/python-outlook-calendar-sync
.. |version| image:: https://img.shields.io/pypi/v/outlook-calendar-sync.svg
:alt: PyPI Package latest release
:target: https://pypi.org/project/outlook-calendar-sync
.. |wheel| image:: https://img.shields.io/pypi/wheel/outlook-calendar-sync.svg
:alt: PyPI Wheel
:target: https://pypi.org/project/outlook-calendar-sync
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/outlook-calendar-sync.svg
:alt: Supported versions
:target: https://pypi.org/project/outlook-calendar-sync
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/outlook-calendar-sync.svg
:alt: Supported implementations
:target: https://pypi.org/project/outlook-calendar-sync
.. .. |commits-since| image:: https://img.shields.io/github/commits-since/mr55p-dev/python-outlook-calendar-sync/v0.0.5.svg
.. :alt: Commits since latest release
.. :target: https://github.com/mr55p-dev/python-outlook-calendar-sync/compare/v0.0.5...main
.. end-badges
CLI interface to scrape outlook calendar events from the webapp and insert them to a google calendar account.
* Free software: BSD 2-Clause License
Installation
============
::
pip install outlook-calendar-sync
You can also install the in-development version with::
pip install https://github.com/mr55p-dev/python-outlook-calendar-sync/archive/main.zip
Documentation
=============
https://python-outlook-calendar-sync.readthedocs.io/
Development
===========
To run all the tests run::
tox
Note, to combine the coverage data from all the tox environments run:
.. list-table::
:widths: 10 90
:stub-columns: 1
- - Windows
- ::
set PYTEST_ADDOPTS=--cov-append
tox
- - Other
- ::
PYTEST_ADDOPTS=--cov-append tox
On the roadmap is:
- [ ] Create some error handling for the outlook sign up process
- [ ] Exception on invalid username
- [ ] Exception on invalid password
- [ ] Exception on invalid auth code
- [ ] Handle the case where authenticator is not required (either auto detect or use flag)
- [ ] Switch from using css selectors to XPath
- [ ] Put dependencies in the setuptools script