-
Notifications
You must be signed in to change notification settings - Fork 5
Allow create database in python #23
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
Open
flywire
wants to merge
16
commits into
pfalcon:master
Choose a base branch
from
flywire:patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0acb6bb
added pyproject file to make it consumable by other apps
ma4nn 52e650e
moved sql scripts into separate folder
ma4nn 0215f48
fixed incorrect sql comment
ma4nn 7980594
created module in subfolder
ma4nn 63e1878
added entry points and updated readme
ma4nn 1ed86d7
adapted Makefile to new paths, improved clean command
ma4nn 37a034b
Merge branch 'master' of https://github.com/pfalcon/ppxml2db
df5e2ec
Allow create database in python
flywire e1b2948
Enable create database in python
flywire ac6ca8e
Update README.md to create database in python
flywire 79d29b6
Enable ppxml2db package scripts
9cacbb8
Enable ppxml2db package scripts more
3c63e23
Update toml version
5e5e6a2
Resolve merge conflict
65d1000
Tweak for standalone
0ee5604
Standalone tweak
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,24 @@ | ||
| .account | ||
| .account_attr | ||
| .security | ||
| .security_attr | ||
| .security_event | ||
| .security_prop | ||
| .latest_price | ||
| .price | ||
| .watchlist | ||
| .watchlist_security | ||
| .xact | ||
| .xact_unit | ||
| .xact_cross_entry | ||
| .taxonomy | ||
| .taxonomy_category | ||
| .taxonomy_assignment | ||
| .taxonomy_data | ||
| .dashboard | ||
| .property | ||
| .bookmark | ||
| .attribute_type | ||
| .config_set | ||
| .config_entry | ||
| .create-db |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Empty file.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,16 @@ | ||
| [project] | ||
| name = "ppxml2db" | ||
| version = "1.7.1" | ||
| description = "Import Portfolio Performance XML into an SQLite database and vice versa" | ||
| license = "MIT" | ||
| readme = "README.md" | ||
| requires-python = ">=3.12" | ||
| dependencies = [ "lxml (>=5.3.0,<6.0.0)",] | ||
|
|
||
| [build-system] | ||
| requires = [ "poetry-core>=2.0.0,<3.0.0",] | ||
| build-backend = "poetry.core.masonry.api" | ||
|
|
||
| [project.scripts] | ||
| ppxml2db = "ppxml2db.ppxml2db:main" | ||
| db2ppxml = "ppxml2db.db2ppxml:main" |
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.
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.
Unused import, and please don't add any dependencies on pathlib (it doesn't do anything which Python couldn't do 20 years ago).
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.
As you say, code was in fork I adapted.