I want to create upload bulk data. Can anyone share code to upload csv or
excel file.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubscr...@
Can anyone share code for uploading CSV file content to database.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubscr...@googlegroups.com.
To p
the CSV module included in Python
> standard library ?
>
>
> You'll find there all the needed information for reading and interpreting
> CSV files without having to implement the raw parsing, and have there rows
> in a form ready to use for inserting objects in your model.
I have created two models in my django project AddStudent and Fee Entry as
shown below.
*models.py*
class AddStudent(models.Model):
enrollment_no = models.BigIntegerField(primary_key=True)
student_name = models.CharField(max_length=500,null=True)
gender = models.CharField(max_lengt
I have one project on django1.0 and python 2.7. If anyone is interested
than contact me...
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubsc
5 matches
Mail list logo