Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

orm-creator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orm-creator

Automatically maps sql tables and generates classes for ORM manipulation

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
1

ORM - Creator

Description


Map SQL (MySQl) table(s) and generate ORM classes for them automatically !!  
This proves to be very useful especially in cases where the number of tables is huge 

Demo 
~~~~ 

From command line 
''''''''''''''''' 

.. image:: https://cloud.githubusercontent.com/assets/10980285/17341384/f58637a4-5911-11e6-9309-deb9c4ae3dd8.gif  

As a python module 
'''''''''''''''''' 
.. image:: https://cloud.githubusercontent.com/assets/10980285/17342191/a87677f4-5915-11e6-8cd1-7060eead65b3.gif  



Installation 

Using this repository '''''''''''''''''''''

.. code:: sh

git clone http://github.com/shravan97/ORM-Creator

.. code:: sh

cd ORM-Creator

.. code:: sh

python setup.py install

Using pip '''''''''

Coming up soon !

Usage


.. code:: sh

  usage: orm-creator [-h] [-db DB] [-t TABLES [TABLES ...]] [-host HOST]
                   [-u UNAME] [-o OUTFILE]

  optional arguments:
    -h, --help            show this help message and exit
    -db DB                The name of database from which tables will have to
                        mapped
    -t TABLES [TABLES ...]
                        List of table names each separated by one or more
                        space
    -host HOST            Name of the MySql host For Eg., localhost ,
                        mysql.mydomain.com ,....etc
    -u UNAME              Your Mysql username
    -o OUTFILE            Output file name ,along with its extension and
                        absolute path For Eg. , /home/shravan97/Desktop/out.py  

  

Sample 

As a command line app '''''''''''''''''''''

.. code:: sh

orm-creator -u root -db demo -t users migrations -o /var/www/flaskApp/db.py

The above statement maps users and migrations tables

As a module '''''''''''

.. code:: python

from orm_creator import ormCreator oc = ormCreator(config,'demo',['users','migrations'],'/var/www/flaskApp/db.py')

config is stored as a dict . For eg. , config = {'uname':'root','password':'**','host':'localhost'}

oc.generate_file()

Please check here <https://github.com/shravan97/ORM-Creator/tree/master/demo/) for demo files>__

Contributions


Found any cool idea that could be implemented here ? Go ahead and give a pull request :smile: !  
You may as well put it up as an issue `here <https://github.com/ORM-Creator/issues>`__  

Contributors 
~~~~~~~~~~~~ 

- `shravan97 <https://github.com/shravan97>`__  


License 
~~~~~~~ 

GNU General Public License v3 (GPLv3)  

.. image:: https://cloud.githubusercontent.com/assets/10980285/16361582/a40f472a-3bb2-11e6-80c4-dd633af6c284.png 

Keywords

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc