sqlshell 0.2.0__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sqlshell might be problematic. Click here for more details.

Files changed (54) hide show
  1. {sqlshell-0.2.0 → sqlshell-0.2.2}/.gitignore +1 -0
  2. {sqlshell-0.2.0/sqlshell.egg-info → sqlshell-0.2.2}/PKG-INFO +1 -1
  3. {sqlshell-0.2.0 → sqlshell-0.2.2}/pyproject.toml +1 -1
  4. sqlshell-0.2.2/sqlshell/__init__.py +14 -0
  5. {sqlshell-0.2.0 → sqlshell-0.2.2/sqlshell.egg-info}/PKG-INFO +1 -1
  6. sqlshell-0.2.0/sqlshell/__init__.py +0 -8
  7. {sqlshell-0.2.0 → sqlshell-0.2.2}/MANIFEST.in +0 -0
  8. {sqlshell-0.2.0 → sqlshell-0.2.2}/README.md +0 -0
  9. {sqlshell-0.2.0 → sqlshell-0.2.2}/column_profiler.png +0 -0
  10. {sqlshell-0.2.0 → sqlshell-0.2.2}/requirements.txt +0 -0
  11. {sqlshell-0.2.0 → sqlshell-0.2.2}/run.py +0 -0
  12. {sqlshell-0.2.0 → sqlshell-0.2.2}/setup.cfg +0 -0
  13. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/LICENSE +0 -0
  14. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/MANIFEST.in +0 -0
  15. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/README.md +0 -0
  16. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/context_suggester.py +0 -0
  17. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/create_test_data.py +0 -0
  18. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/data/create_test_data.py +0 -0
  19. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/db/__init__.py +0 -0
  20. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/db/database_manager.py +0 -0
  21. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/editor.py +0 -0
  22. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/main.py +0 -0
  23. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/menus.py +0 -0
  24. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/query_tab.py +0 -0
  25. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/__init__.py +0 -0
  26. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/create_icon.py +0 -0
  27. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/create_splash.py +0 -0
  28. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/icon.png +0 -0
  29. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/logo_large.png +0 -0
  30. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/logo_medium.png +0 -0
  31. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/logo_small.png +0 -0
  32. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/resources/splash_screen.gif +0 -0
  33. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/splash_screen.py +0 -0
  34. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/sqlshell/__init__.py +0 -0
  35. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/sqlshell/create_test_data.py +0 -0
  36. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/sqlshell/create_test_databases.py +0 -0
  37. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/sqlshell_demo.png +0 -0
  38. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/styles.py +0 -0
  39. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/suggester_integration.py +0 -0
  40. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/syntax_highlighter.py +0 -0
  41. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/table_list.py +0 -0
  42. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/ui/__init__.py +0 -0
  43. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/ui/bar_chart_delegate.py +0 -0
  44. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/ui/filter_header.py +0 -0
  45. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/utils/__init__.py +0 -0
  46. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/utils/profile_entropy.py +0 -0
  47. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell/utils/profile_keys.py +0 -0
  48. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell.egg-info/SOURCES.txt +0 -0
  49. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell.egg-info/dependency_links.txt +0 -0
  50. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell.egg-info/entry_points.txt +0 -0
  51. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell.egg-info/requires.txt +0 -0
  52. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell.egg-info/top_level.txt +0 -0
  53. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell_demo.png +0 -0
  54. {sqlshell-0.2.0 → sqlshell-0.2.2}/sqlshell_logo.png +0 -0
@@ -76,6 +76,7 @@ logs/
76
76
  .DS_Store
77
77
  Thumbs.db
78
78
  desktop.ini
79
+ tests/
79
80
 
80
81
  # Distribution / packaging
81
82
  *.spec
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlshell
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: A powerful SQL shell with GUI interface for data analysis
5
5
  Author: SQLShell Team
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sqlshell"
7
- version = "0.2.0"
7
+ version = "0.2.2"
8
8
  description = "A powerful SQL shell with GUI interface for data analysis"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -0,0 +1,14 @@
1
+ """
2
+ SQLShell - A powerful SQL shell with GUI interface for data analysis
3
+ """
4
+
5
+ __version__ = "0.2.2"
6
+ __author__ = "SQLShell Team"
7
+
8
+ from sqlshell.main import main
9
+
10
+ def start():
11
+ """Start the SQLShell application."""
12
+ main()
13
+
14
+ # SQLShell package initialization
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlshell
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: A powerful SQL shell with GUI interface for data analysis
5
5
  Author: SQLShell Team
6
6
  License-Expression: MIT
@@ -1,8 +0,0 @@
1
- """
2
- SQLShell - A powerful SQL shell with GUI interface for data analysis
3
- """
4
-
5
- __version__ = "0.1.9"
6
- __author__ = "SQLShell Team"
7
-
8
- # SQLShell package initialization
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes