Browse Source

Fix up the bits in the deployment script for entering dbname, etc.

master
duncan.parkes 15 years ago
parent
commit
7832716488
2 changed files with 10 additions and 4 deletions
  1. +3
    -3
      deployment_script_common
  2. +7
    -1
      generateCGIScripts.py

+ 3
- 3
deployment_script_common View File

@@ -39,13 +39,13 @@ echo
echo "Enter mysql db name:"
read MYSQL_DB_NAME
echo $MYSQL_DB_NAME
export $MYSQL_DB_NAME
export MYSQL_DB_NAME
echo "Enter mysql username:"
read MYSQL_USERNAME
export $MYSQL_USERNAME
export MYSQL_USERNAME
echo "Enter mysql password:"
read MYSQL_PASSWORD
export $MYSQL_PASSWORD
export MYSQL_PASSWORD

echo "Generating python scrapers"
# Generate the python cgi files


+ 7
- 1
generateCGIScripts.py View File

@@ -48,7 +48,13 @@ csv_reader = csv.DictReader(
template= open(template_filename).read()

# Get a mysql cursor
mysql_connection = MySQLdb.connect(db="planning")
import pdb;pdb.set_trace()

mysql_connection = MySQLdb.connect(
db=environ['MYSQL_DB_NAME'],
user=environ['MYSQL_USERNAME'],
passwd=environ['MYSQL_PASSWORD'],
)
mysql_cursor = mysql_connection.cursor()

python_scraper_location = "/cgi-bin/%s.cgi?day={day}&month={month}&year={year}"


Loading…
Cancel
Save