-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shreyansh
committed
Dec 29, 2020
1 parent
da0b056
commit de087a9
Showing
6 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
""" | ||
V1 Admin Expense Files | ||
""" | ||
|
||
from ....internals.post_resources import PostResources | ||
|
||
|
||
class ExpenseFiles(PostResources): | ||
"""Class for Expense Files APIs.""" | ||
|
||
EXPENSE_FILES = '/expense_files' | ||
|
||
def __init__(self, version, role): | ||
super().__init__(version, role, ExpenseFiles.EXPENSE_FILES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
""" | ||
V1 Admin Files | ||
""" | ||
|
||
from ....internals.post_resources import PostResources | ||
from ....internals.get_resources import GetResources | ||
|
||
|
||
class Files(PostResources, GetResources): | ||
"""Class for Orgs APIs.""" | ||
|
||
FILES = '/files' | ||
|
||
def __init__(self, version, role): | ||
super().__init__(version, role, Files.ORGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
""" | ||
V1 Admin Orgs | ||
""" | ||
|
||
from ....internals.list_resources import ListResources | ||
from ....internals.get_resources import GetResources | ||
|
||
|
||
class Orgs(ListResources, GetResources): | ||
"""Class for Orgs APIs.""" | ||
|
||
ORGS = '/orgs' | ||
|
||
def __init__(self, version, role): | ||
super().__init__(version, role, Orgs.ORGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name='fyle', | ||
version='0.1.6-beta', | ||
version='0.1.7-beta', | ||
author='Siva Narayanan', | ||
author_email='[email protected]', | ||
description='Python SDK for accessing Fyle Platform APIs', | ||
|