📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

sqlite-connector

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqlite-connector

Python package with SQLite convenience functions

0.1.0
PyPI
Maintainers
1

SQLite Connector

Python package with SQLite convenience functions. Fyle is an expense management system.

Installation

This project requires Python 3+.

  • Download this project and use it (copy it in your project, etc).

  • Install it from pip.

     $ pip install sqlite-connector
    

Usage

This connector is very easy to use.

First you'll need to create a connection using the main class FyleSDK.

from sqlite_connector import SQLiteConnector

sqlite_connector = SQLiteConnector('/tmp/file.db')

After that you'll be able to execute sql scripts

sqlite_connector.execute_transform('file_name.sql')

Contribute

To contribute to this project follow the steps

  • Fork and clone the repository.
  • Run pip install -r requirements.txt
  • Setup pylint precommit hook
    • Create a file .git/hooks/pre-commit
    • Copy and paste the following lines in the file -
      #!/usr/bin/env bash 
      git-pylint-commit-hook
      
    • Run chmod +x .git/hooks/pre-commit

License

This project is licensed under the MIT License - see the LICENSE file for details

Keywords

fyle

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts