-
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.
Merge pull request #9 from certego/develop
0.1.0
- Loading branch information
Showing
18 changed files
with
311 additions
and
528 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
from atlasq.queryset.exceptions import AtlasIndexError, AtlasIndexFieldError | ||
from atlasq.queryset.index import AtlasIndex | ||
from atlasq.queryset.manager import AtlasManager | ||
from atlasq.queryset.node import AtlasQ | ||
from atlasq.queryset.queryset import AtlasQuerySet | ||
|
||
__all__ = ["AtlasQ", "AtlasQuerySet", "AtlasManager"] | ||
__all__ = [ | ||
"AtlasQ", | ||
"AtlasQuerySet", | ||
"AtlasManager", | ||
"AtlasIndex", | ||
"AtlasIndexFieldError", | ||
"AtlasIndexError", | ||
] |
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 @@ | ||
class AtlasError(Exception): | ||
"""Base class for all AtlasQ exceptions.""" | ||
|
||
|
||
class AtlasIndexFieldError(AtlasError): | ||
pass | ||
|
||
|
||
class AtlasIndexError(AtlasError): | ||
pass | ||
|
||
|
||
class AtlasFieldError(AtlasError): | ||
pass |
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
Oops, something went wrong.