dissw.geek9
dissw.geek9

Reputation: 245

how to use a specific python API in Django?

Can anyone tell me how can I use Pybel in django for creating a web abased application.Pybel is a python module that helps in using Open Babel a software for conversion of chemical compounds.

I want to create an web app which can use different functionalites of Pybel. since Django is python based, so I thought this can work. Since I am new to django if anyone can point me to tutorial or something that can help me doing will also be greatly helpful.

waiting for your replies.

Upvotes: 0

Views: 54

Answers (1)

ThiefMaster
ThiefMaster

Reputation: 318498

You simple import the module and use it. Django is python so you can do whatever you do in a non-web-based python app, too.

Upvotes: 1

Related Questions