-
Notifications
You must be signed in to change notification settings - Fork 33
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
Move Python UDF methods out of their own class. #475
Conversation
- Resolve #467 - README button colour tweak for UserDocs
Codecov Report
@@ Coverage Diff @@
## master #475 +/- ##
=======================================
Coverage 83.88% 83.88%
=======================================
Files 44 44
Lines 1297 1297
Branches 250 250
=======================================
Hits 1088 1088
Misses 80 80
Partials 129 129 |
@@ -1,5 +1,39 @@ | |||
from aut.app import Extract_Popular_Images, Write_Gexf, Write_Graphml | |||
from aut.common import WebArchive | |||
from aut.udfs import Udf | |||
from aut.udfs import ( | |||
compute_image_size, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All appropriately pythonic, 👍
|
||
__all__ = ["Extract_Popular_Images", "Udf", "WebArchive", "Write_Gexf", "Write_Graphml"] | ||
__all__ = [ | ||
"Extract_Popular_Images", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apologies in advance if this has been hashed out already, but have we agreed on a naming convention for these? Naming seems inconsistent at present...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ran through the two provided notebooks with CPP sample data - thanks for those @ruebot. All works perfectly!
GitHub issue(s): #467
What does this Pull Request do?
Move Python UDF methods out of their own class.
How should this be tested?