Skip to content

Commit

Permalink
Merge branch 'release/v.0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
klich3 committed Jan 2, 2024
2 parents 4f6c298 + dd2ed55 commit fe77204
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ keywords:
- file
- rocket
license: MIT
version: 0.0.3
version: 0.0.4
Binary file removed dist/Rocket-Store-0.0.2.tar.gz
Binary file not shown.
Binary file added dist/Rocket-Store-0.0.4.tar.gz
Binary file not shown.
Binary file removed dist/Rocket_Store-0.0.2-py3-none-any.whl
Binary file not shown.
Binary file added dist/Rocket_Store-0.0.4-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Rocket-Store"
version = "0.0.3"
version = "0.0.4"
authors = [
{ name="Anton Sychev", email="[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions src/Rocket_Store.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: Rocket-Store
Version: 0.0.2
Version: 0.0.4
Summary: Using the filesystem as a searchable database.
Author-email: Anton Sychev <[email protected]>
License: Rocket Store
Expand Down Expand Up @@ -90,7 +90,7 @@ Compare Rocket-Store, SQL and file system terms:
To use Rocketstore, you must first import the library:

```python
from Rocketstore import Rocketstore, _FORMAT_JSON
import Rocketstore, _FORMAT_JSON
```

### Post
Expand Down
7 changes: 7 additions & 0 deletions src/Rocket_Store.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ LICENSE
MANIFEST.in
README.md
pyproject.toml
src/RocketStore/RocketStore.py
src/RocketStore/Rocketstore.py
src/RocketStore/__init__.py
src/RocketStore/__version__.py
src/RocketStore/example.py
src/RocketStore/utils/__init__.py
src/RocketStore/utils/files.py
src/Rocket_Store.egg-info/PKG-INFO
src/Rocket_Store.egg-info/SOURCES.txt
src/Rocket_Store.egg-info/dependency_links.txt
Expand Down
2 changes: 1 addition & 1 deletion src/Rocket_Store.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Rocketstore
RocketStore
4 changes: 2 additions & 2 deletions src/Rocketstore/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
__title__ = "RocketStore"
__description__ = "Rocket Store (Python) - Fast and Simple Database"
__url__ = "https://github.com/klich3/rocket-store-python"
__version__ = "0.0.3"
__build__ = 0x000018
__version__ = "0.0.4"
__build__ = 0x000019
__author__ = "Anton Sychev"
__author_email__ = "[email protected]"
__copyright__ = "Copyright Simon Riget"
11 changes: 8 additions & 3 deletions src/Rocketstore/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@
Author: <Anton Sychev> (anton at sychev dot xyz)
sample.py (c) 2023
Created: 2023-12-01 01:02:01
Desc: sample create instance of Rocketstore
Desc: sample create instance of RocketStore
Docs: documentation
"""

from Rocketstore import Rocketstore, _FORMAT_JSON, _FORMAT_NATIVE, _FORMAT_XML, _ADD_AUTO_INC, _ORDER_DESC
import RocketStore
import _FORMAT_JSON
import _FORMAT_NATIVE
import _FORMAT_XML
import _ADD_AUTO_INC
import _ORDER_DESC

rs = Rocketstore(**{"data_storage_area": "./webapp",
rs = RocketStore(**{"data_storage_area": "./webapp",
"data_format": _FORMAT_JSON})

rs.post("cars", "Mercedes_Benz_GT_R", {"owner": "Lisa Simpson"})
Expand Down

0 comments on commit fe77204

Please sign in to comment.