-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: ImportExpr
and ImportFromExpr
#122
Merged
Merged
Conversation
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
The ascii AST viz has been fixed. now we have something like the outputs below: Examples of how to test this: from astx.packages import (
AliasExpr,
ImportFromStmt,
ImportStmt,
ImportExpr,
ImportFromExpr
)
# AliasExpr
alias1 = AliasExpr(name="pyplot", asname="plt")
alias1
alias1.get_struct()
# ImportStmt
alias1 = AliasExpr(name="math")
alias2 = AliasExpr(name="matplotlib", asname="mtlb")
# Create an import statement
import_stmt = ImportStmt(names=[alias1, alias2])
import_stmt
import_stmt.get_struct()
# ImportFromStmt
alias4 = AliasExpr(name="pyplot",asname="plt")
import_from_stmt = ImportFromStmt(module="matplotlib",names=[alias4], level=0)
import_from_stmt
import_from_stmt.get_struct()
# ImportFromStmt
alias2 = AliasExpr(name="matplotlib", asname="mtlb")
import_from_stmt = ImportFromStmt(names=[alias2], level=1)
import_from_stmt
import_from_stmt.get_struct()
# ImportExpr
alias1 = AliasExpr(name="sqrt", asname="square_root")
alias2 = AliasExpr(name="pi")
import_expr = ImportExpr([alias1, alias2])
import_expr
import_expr.get_struct()
# ImportFromExpr
alias1 = AliasExpr(name="pyplot", asname="plt")
import_from_expr = ImportFromExpr(module="matplotlib",names=[alias1])
import_from_expr
import_from_expr.get_struct() I believe now it's good to go. |
@xmnlab the problem with graphviz AST viz has been solved. |
xmnlab
approved these changes
Oct 15, 2024
🎉 This PR is included in version 0.16.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request description
This PR adds ImportExpr and ImportFromExpr.
This PR is an attempt to solve #88 .
__init__.py
to include the new imports and classes in the__all__
listtranspilers/python.py
tests/transpilers/test_python.py
tests/test_packages.py
How to test these changes
Pull Request checklists
This PR is a:
About this PR:
Author's checklist:
complexity.
Additional information
Reviewer's checklist
Copy and paste this template for your review's note: