Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/speratus/rspy-rsi
A rust library to increase insertion speed of a specific set of SQL statements into an SQLite database in Python
https://github.com/speratus/rspy-rsi
Last synced: about 2 months ago
JSON representation
A rust library to increase insertion speed of a specific set of SQL statements into an SQLite database in Python
- Host: GitHub
- URL: https://github.com/speratus/rspy-rsi
- Owner: speratus
- License: mit
- Created: 2021-05-15T17:12:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-31T22:37:31.000Z (over 3 years ago)
- Last Synced: 2023-03-08T00:08:12.131Z (almost 2 years ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# README
This library is a python native module written in rust to solve a very
domain specific problem of running bulk inserts for Django many-to-many
relationships. As such, table values are hard-coded.As a result, this library is not intended for general use, though it could
be adapted for more general use.## Installation
1. Clone the repository and navigate into it.
2. Run `pipenv install` to install python dependencies.
3. Run `pipenv shell` to open a shell window with the correct `PATH`.
4. Run `maturin build` to Create a wheel file for your OS that can be
installed into other virtual environments.