Skip to content

Commit bd9f246

Browse files
committed
renaming the project to get rid of camel case.
1 parent 47a599f commit bd9f246

13 files changed

+157
-18
lines changed

.gitignore

Lines changed: 139 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,142 @@ venv/
22
__pycache__/
33
*.db
44
/pysimplesql.egg-info/
5-
/venv*
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
34+
# PyInstaller
35+
# Usually these files are written by a python script from a template
36+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37+
*.manifest
38+
*.spec
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.py,cover
55+
.hypothesis/
56+
.pytest_cache/
57+
cover/
58+
59+
# Translations
60+
*.mo
61+
*.pot
62+
63+
# Django stuff:
64+
*.log
65+
local_settings.py
66+
db.sqlite3
67+
db.sqlite3-journal
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
.pybuilder/
81+
target/
82+
83+
# Jupyter Notebook
84+
.ipynb_checkpoints
85+
86+
# IPython
87+
profile_default/
88+
ipython_config.py
89+
90+
# pyenv
91+
# For a library or package, you might want to ignore these files since the code is
92+
# intended to run in multiple environments; otherwise, check them in:
93+
# .python-version
94+
95+
# pipenv
96+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
97+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
98+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
99+
# install all needed dependencies.
100+
#Pipfile.lock
101+
102+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
103+
__pypackages__/
104+
105+
# Celery stuff
106+
celerybeat-schedule
107+
celerybeat.pid
108+
109+
# SageMath parsed files
110+
*.sage.py
111+
112+
# Environments
113+
.env
114+
.venv
115+
env/
116+
venv/
117+
ENV/
118+
env.bak/
119+
venv.bak/
120+
121+
# Spyder project settings
122+
.spyderproject
123+
.spyproject
124+
125+
# Rope project settings
126+
.ropeproject
127+
128+
# mkdocs documentation
129+
/site
130+
131+
# mypy
132+
.mypy_cache/
133+
.dmypy.json
134+
dmypy.json
135+
136+
# Pyre type checker
137+
.pyre/
138+
139+
# pytype static type analyzer
140+
.pytype/
141+
142+
# Cython debug symbols
143+
cython_debug/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pip3 install pysimplesql
3737

3838
```python
3939
import PySimpleGUI as sg
40-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
40+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
4141
import logging
4242
logger=logging.getLogger(__name__)
4343
logging.basicConfig(level=logging.DEBUG) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)
@@ -374,7 +374,7 @@ See the code below on example usage of the PySimpleSQL.actions() convenience fun
374374
```python
375375
#!/usr/bin/python3
376376
import PySimpleGUI as sg
377-
import PySimpleSQL as ss
377+
import pysimplesql as ss
378378

379379
# Create a small table just for demo purposes
380380
sql = '''
@@ -427,7 +427,7 @@ See example below of how your can make your own record navigation controls inste
427427
```python
428428
#!/usr/bin/python3
429429
import PySimpleGUI as sg
430-
import PySimpleSQL as ss
430+
import pysimplesql as ss
431431

432432
# Create a small table just for demo purposes
433433
sql = '''
@@ -475,7 +475,7 @@ Peeling this back further, you can rewrite the same without the special naming c
475475
```python
476476
#!/usr/bin/python3
477477
import PySimpleGUI as sg
478-
import PySimpleSQL as ss
478+
import pysimplesql as ss
479479

480480
# Create a small table just for demo purposes
481481
sql = '''
@@ -529,7 +529,7 @@ Lastly, you can rewrite the same and handle the events yourself instead of relyi
529529
```python
530530
#!/usr/bin/python3
531531
import PySimpleGUI as sg
532-
import PySimpleSQL as ss
532+
import pysimplesql as ss
533533

534534
# Create a small table just for demo purposes
535535
sql = '''

__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import pysimplesql

examples/address_book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
import logging
44
logger=logging.getLogger(__name__)
55
logging.basicConfig(level=logging.INFO) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/journal_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
import logging
44
logger=logging.getLogger(__name__)
55
logging.basicConfig(level=logging.INFO) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/journal_internal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
import logging
44
logger=logging.getLogger(__name__)
55
logging.basicConfig(level=logging.INFO) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/journal_with_data_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
from datetime import datetime
44
from datetime import timezone
55
import logging

examples/many_to_many.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
import logging
44
logger=logging.getLogger(__name__)
55
logging.basicConfig(level=logging.CRITICAL) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/password_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22
import PySimpleGUI as sg
3-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
3+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
44
import logging
55
logger=logging.getLogger(__name__)
66
logging.basicConfig(level=logging.INFO) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/restaurants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PySimpleGUI as sg
2-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
2+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
33
import logging
44
logger=logging.getLogger(__name__)
55
logging.basicConfig(level=logging.DEBUG) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)

examples/selectors_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22
import PySimpleGUI as sg
3-
import PySimpleSQL as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
3+
import pysimplesql as ss # <=== PySimpleSQL lines will be marked like this. There's only a few!
44
import logging
55
logger=logging.getLogger(__name__)
66
logging.basicConfig(level=logging.DEBUG) # <=== You can set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)
File renamed without changes.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ def readme():
1111
requirements = ['PySimpleGUI']
1212

1313
setuptools.setup(
14-
name="PySimpleSQL",
14+
name="pysimplesql",
1515
version="0.0.4",
1616
author="Jonathan Decker",
17-
author_email="PySimpleSQL@gmail.com",
17+
author_email="pysimplesql@gmail.com",
1818
description="sqlite3 database binding for PySimpleGUI",
1919
long_description="It's alive!",#readme(),
2020
long_description_content_type="text/markdown",
2121
keywords="SQL sqlite database application front-end access libre office GUI PySimpleGUI",
22-
url="https://github.com/PySimpleSQL/PySimpleSQL",
23-
download_url="https://github.com/PySimpleSQL/PySimpleSQL/archive/refs/tags/0.0.4.tar.gz",
22+
url="https://github.com/PySimpleSQL/pysimplesql",
23+
download_url="https://github.com/PySimpleSQL/pysimplesql/archive/refs/tags/0.0.4.tar.gz",
2424
packages=setuptools.find_packages(),
2525
install_requires=requirements,
2626
classifiers=[

0 commit comments

Comments
 (0)