Re: Make a realtime video and Teleconsultation

2013-09-19 Thread aini jalil
Can i ask why you need this path: ultrasound --> laptop --> Web Server on 
REALTIME?
Do you want do some Video Streaming ? or just backup your Image/Video on a 
Web Server ? Can this [1] help you?

The reason I need this path "ultrasound --> laptop --> Web Server" because 
I want to do the video streaming
I want to make an application with my own flowchart,and there must have 
functions to key in and saving data patient and streaming video.
If [1],the software already there, I want to do similar with that but with 
my own flowchart and own code.
So,any advice?


On Wednesday, July 24, 2013 3:17:50 PM UTC+8, Christina wrote:
>
> I want to upload the realtime image/ video to my website.
> I have one ultrasound machine,I will transfer ultrasound video/image using 
> video grabber and transfer to my laptop.
> I want to upload this image/ video to my website as realtime,is that 
> possible?
> I'm beginner,previously already developed only a very basic project using 
> Django framework,so I don't have enough experience. 
>
> Please tell me where should I start.What topic I need to highlight when 
> studying the code.
> And is there any tutorial or similar project I can refer?
>
> Thank you.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


django book out date

2007-09-25 Thread Jalil
Anyone know when the django book is comming out ?  I though it was suppose
to come out last month.
I am going outside the country and I would like to get my hands on this book
before leaving.


Thanks

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: mysite.polls application error

2007-08-09 Thread Jalil
>  question = models.CharField(max_length=200)
change  the above to  'question = models.CharField(maxlength=200)'
There should not be a  '_' between 'max' and  'length'.

You should be set now


On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> hi, after hitting
>  python manage.py sql polls
> an error appears and i don't know how to debug in python for find the
> error.
>
> could someone help me with this, THANKS
>
> This is what appears on screen:
>
> mysite.polls: __init__() got an unexpected keyword argument
> 'max_length'
> 1 error found.
>
> Traceback (most recent call last):
>   File "manage.py", line 11, in 
> execute_manager(settings)
>   File "/var/lib/python-support/python2.5/django/core/management.py",
> line 1672, in execute_manager
> execute_from_command_line(action_mapping, argv)
>   File "/var/lib/python-support/python2.5/django/core/management.py",
> line 1620, in execute_from_command_line
> mod_list = [models.get_app(app_label) for app_label in args[1:]]
>   File "/var/lib/python-support/python2.5/django/db/models/
> loading.py", line 40, in get_app
> mod = load_app(app_name)
>   File "/var/lib/python-support/python2.5/django/db/models/
> loading.py", line 51, in load_app
> mod = __import__(app_name, {}, {}, ['models'])
>   File "/home/eduardo/djangoProject/mysite/../mysite/polls/models.py",
> line 5, in 
> class Poll(models.Model):
>   File "/home/eduardo/djangoProject/mysite/../mysite/polls/models.py",
> line 6, in Poll
> question = models.CharField(max_length=200)
> TypeError: __init__() got an unexpected keyword argument 'max_length'
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Error loading MySQLdb module

2007-07-06 Thread Jalil
I keep getting this below error when I try to sync my database.
I am using python2.3. Any ideas?



[no job set:~/dev/mysite] 113% python2.3  manage.py syncdb
Traceback (most recent call last):
  File "manage.py", line 11, in ?
execute_manager(settings)
  File "/usr/lib/python2.3/site-packages/django/core/management.py", line
1672, in execute_manager
execute_from_command_line(action_mapping, argv)
  File "/usr/lib/python2.3/site-packages/django/core/management.py", line
1571, in execute_from_command_line
action_mapping[action](int(options.verbosity), options.interactive)
  File "/usr/lib/python2.3/site-packages/django/core/management.py", line
486, in syncdb
from django.db import connection, transaction, models,
get_creation_module
  File "/usr/lib/python2.3/site-packages/django/db/__init__.py", line 11, in
?
backend = __import__('django.db.backends.%s.base' %
settings.DATABASE_ENGINE, {}, {}, [''])
  File
"/usr/lib/python2.3/site-packages/django/db/backends/mysql_old/base.py",
line 12, in ?
raise ImproperlyConfigured, "Error loading MySQLdb module: %s" % e
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module:
No module named MySQLdb
bykergrove [no job set:~/dev/mysite] 114%

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---