Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upstream Merge #1

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c9f3348
update xero-python version 0.4.1
SidneyAllen Jul 3, 2020
2266fcd
Merge pull request #12 from XeroAPI/sid-development
SidneyAllen Jul 3, 2020
3d354ed
Change app host to localhost
Jul 25, 2020
c4282de
Merge pull request #15 from mattarderne/master
SidneyAllen Jul 27, 2020
0b21f74
Update to version 0.5.1 of SDK
SidneyAllen Jul 27, 2020
e046c73
Merge pull request #16 from XeroAPI/sid-development
SidneyAllen Jul 27, 2020
30438e2
update requirements
SidneyAllen Aug 3, 2020
5abaafc
Merge pull request #17 from XeroAPI/sid-development
SidneyAllen Aug 3, 2020
c4c50a7
Update README
SidneyAllen Aug 7, 2020
a91316c
Merge pull request #18 from XeroAPI/sid-development
SidneyAllen Aug 7, 2020
69995ec
update version of xero-python
SidneyAllen Aug 21, 2020
30c0a76
Merge pull request #19 from XeroAPI/sid-development
SidneyAllen Aug 21, 2020
8766327
Update requirements
SidneyAllen Oct 8, 2020
976d325
update git ignore
SidneyAllen Nov 3, 2020
2f38971
update requirements
SidneyAllen Nov 3, 2020
1ae539b
Merge pull request #23 from XeroAPI/sid-development
SidneyAllen Nov 3, 2020
aa4af3a
update version of xero-python to 1.1.0
SidneyAllen Nov 12, 2020
5909cdf
Merge pull request #25 from XeroAPI/sid-development
SidneyAllen Nov 12, 2020
f6799ba
update version of xero-python in requirments.txt
SidneyAllen Jan 30, 2021
be7cc1f
Merge pull request #26 from XeroAPI/sid-development
SidneyAllen Jan 30, 2021
a8a0a7f
Update requirements.txt
SidneyAllen Apr 19, 2021
4d19c71
Merge branch 'master' into sid-development
SidneyAllen Apr 19, 2021
cf2ca46
Update app.py
SidneyAllen Apr 19, 2021
0e6970b
Update README
SidneyAllen Apr 19, 2021
320c732
Merge pull request #29 from XeroAPI/sid-development
SidneyAllen Apr 19, 2021
2068b78
Update README.md
wobinb May 14, 2021
e66e28b
Merge pull request #31 from wobinb/patch-1
SidneyAllen May 14, 2021
d7f50aa
adds more github actions
RettBehrens Feb 2, 2023
e321814
update scopes
manishT72x May 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/jira_create_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Create Issue in Jira

on:
issues:
types:
- opened

jobs:
create_jira_issue:
uses: XeroAPI/Xero-OpenAPI/.github/workflows/jira_create_issue.yml@master
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/jira_update_issue_closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Update Jira Ticket Status To Done

on:
issues:
types:
- closed

jobs:
create_jira_issue:
uses: XeroAPI/Xero-OpenAPI/.github/workflows/jira_update_issue_closed.yml@master
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/jira_update_issue_reopen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Update Jira Ticket Status To Backlog

on:
issues:
types:
- reopened

jobs:
create_jira_issue:
uses: XeroAPI/Xero-OpenAPI/.github/workflows/jira_update_issue_reopen.yml@master
secrets: inherit
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
venv
config.py
cache/
__pycache__/
__pycache__/

.DS_Store
.vscode/*
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ Please use your Demo Company organisation for your testing.
### Prerequirements
* python3.5+ installed
* git installed
* SSH keys setup for your github profile.

### Download the code
* Clone this repo to your local drive.

### Local installation
* Open terminal window and navigate to your `xero-python-oauth-starter` local drive directory
* Open terminal window and navigate to your `xero-python-oauth2-starter` local drive directory
* Create new python virtual environment by running `python3 -m venv venv`
* Activate new virtual environment by running `source venv/bin/activate`
* Install project dependencies by running `pip install -r requirements.txt`
Expand Down
10 changes: 4 additions & 6 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@
access_token_url="https://identity.xero.com/connect/token",
refresh_token_url="https://identity.xero.com/connect/token",
scope="offline_access openid profile email accounting.transactions "
"accounting.transactions.read accounting.reports.read "
"accounting.journals.read accounting.settings accounting.settings.read "
"accounting.contacts accounting.contacts.read accounting.attachments "
"accounting.attachments.read assets projects",
"accounting.journals.read accounting.transactions payroll.payruns accounting.reports.read "
"files accounting.settings.read accounting.settings accounting.attachments payroll.payslip payroll.settings files.read openid assets.read profile payroll.employees projects.read email accounting.contacts.read accounting.attachments.read projects assets accounting.contacts payroll.timesheets accounting.budgets.read",
) # type: OAuth2Application


Expand Down Expand Up @@ -288,5 +286,5 @@ def get_xero_tenant_id():
return connection.tenant_id


if __name__ == "__main__":
app.run()
if __name__ == '__main__':
app.run(host='localhost', port=5000)
14 changes: 3 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
flask
# Werkzeug<1.0 # flask-session not compatible
# see https://github.com/fengsp/flask-session/pull/114
# using patched version of flask-session
git+https://github.com/SqrtMinusOne/flask-session.git@560d00f1a84a9924d788a4f4e1ef35c5cf94c76d#egg=Flask-Session
# Werkzeug<1.0 # flask-oauthlib not compatible
# using patched version of flask-oauthlib
git+https://github.com/ageis/flask-oauthlib.git@c5ea3ace957ceeeeab3cfb6556f32685ff292eab#egg=Flask-OAuthlib

# Use development version of xero-python
#git+ssh://git@github.com/xero-github/xero-python.git@020f780b4e2b48cb33746ae19ddab9fdf128e626#egg=xero-python
xero-python==0.2.1
flask-session==0.3.2
flask-oauthlib==0.9.6
xero-python==1.5.3