Re: Using Python to Populate sqlite3 database with mtgsdk

2017-08-11 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Using Python to Populate sqlite3 database with mtgsdk Your supposed to get 20. Your database has 20 columns, so you should be getting 20 values. I'm curious what the set_name column is for though. If it's not being used for anything, remove it, and remove it in the tuple. Then try

Re: Using Python to Populate sqlite3 database with mtgsdk

2017-08-10 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Re: Using Python to Populate sqlite3 database with mtgsdk At Ethin, thank you for the reply, I have tried setting all of my datatypes to text already, and I was getting an error, once I changed the datatypes to match the python datatypes, it seemed to function better. I am not sure why. I

Re: Using Python to Populate sqlite3 database with mtgsdk

2017-08-09 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Using Python to Populate sqlite3 database with mtgsdk Hi,According to https://sqlite.org/datatype3.html, the types, in order, are:NULL. The value is a NULL value.INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.REAL

Using Python to Populate sqlite3 database with mtgsdk

2017-08-09 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Using Python to Populate sqlite3 database with mtgsdk Hi, I am working on trying to pull in data from the magic the gathering database into my local sqlite3 database, and I am using python 3.4 with mtgsdk. you can get mtgsdk from pip install mtgsdk. I believe I have mostly gotten

Re: Using Python to Populate sqlite3 database with mtgsdk

2017-08-09 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Re: Using Python to Populate sqlite3 database with mtgsdk Thanks Zersiax for letting me know, I edited my original post. For some reason the site cut out most of my post, and stripped out new lines. Someone else on a different thread had the same problem. I think there is some bug

Re: Using Python to Populate sqlite3 database with mtgsdk

2017-08-09 Thread AudioGames . net Forum — Developers room : Zersiax via Audiogames-reflector
Re: Using Python to Populate sqlite3 database with mtgsdk You have only provided the topmost line of the error which, coincidentally, is a line you always get with a Python error ...so just from this I couldn't tell you  what the problem is Zersiax URL: http://forum.audiogames.net

Using Python to Populate sqlite3 database with mtgsdk

2017-08-08 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Using Python to Populate sqlite3 database with mtgsdk Hi, I am working on trying to pull in data from the magic the gathering database into my local sqlite3 database, and I am using python 3.4 with mtgsdk. you can get mtgsdk from pip install mtgsdk.I believe I have mostly gotten