-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 #494 from VikParuchuri/hotfix-2
Reorganize imports
- Loading branch information
Showing
8 changed files
with
7 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from marker.scripts import chunk_convert_cli | ||
from marker.scripts.chunk_convert import chunk_convert_cli | ||
|
||
if __name__ == "__main__": | ||
chunk_convert_cli() |
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,4 +1,4 @@ | ||
from marker.scripts import convert_cli | ||
from marker.scripts.convert import convert_cli | ||
|
||
if __name__ == "__main__": | ||
main() |
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,4 +1,4 @@ | ||
from marker.scripts import convert_single_cli | ||
from marker.scripts.convert_single import convert_single_cli | ||
|
||
if __name__ == "__main__": | ||
convert_single_cli() |
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 +0,0 @@ | ||
from marker.scripts.convert_single import convert_single_cli | ||
from marker.scripts.convert import convert_cli | ||
from marker.scripts.server import server_cli | ||
from marker.scripts.run_streamlit_app import streamlit_app_cli | ||
from marker.scripts.chunk_convert import chunk_convert_cli | ||
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,4 +1,4 @@ | ||
from marker.scripts import streamlit_app_cli | ||
from marker.scripts.run_streamlit_app import streamlit_app_cli | ||
|
||
if __name__ == "__main__": | ||
streamlit_app_cli() |
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,4 +1,4 @@ | ||
from marker.scripts import server_cli | ||
from marker.scripts.server import server_cli | ||
|
||
if __name__ == "__main__": | ||
server_cli() |
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "marker-pdf" | ||
version = "1.2.5" | ||
version = "1.2.6" | ||
description = "Convert PDF to markdown with high speed and accuracy." | ||
authors = ["Vik Paruchuri <[email protected]>"] | ||
readme = "README.md" | ||
|