WP E-Commerce creating categories programmaticaly [closed]

You can use wp_insert_term to add terms to the wpsc_product_category taxonomy:

<?php
$args = array(
    'description'=> 'term description.',
    'slug' => 'my-term'
);
wp_insert_term( 'My term', 'wpsc_product_category', $args );
?>