django bank payment

hello, how I can do bank payment in django

To answer the question you’ve written, I’d say you do it the same way you do anything in Django.

  • Create models to store data
  • Create forms and templates to build your UI
  • Create views to process data

Otherwise, you’ll need to be more specific and provide more details about what you’re trying to do and what questions you have about this topic.

thanks for replay , I want to create Django app for accept money from visa card .

  • Create models to store data
  • Create forms and templates to build your UI
  • Create views to process data
    all done but what next step for that

Ok, so you’re talking about accepting credit card payments.

This actually has nothing (directly) to do with “making bank payments” or “accepting money from visa card”. You will really be working with a credit card processing service.

How you interface with that service is specific to that service. Whatever service you select should provide sufficient documentation for creating your interface.

1 Like

ok ,thanks so can you send me so links to read to about this topics. I’ve just build normal Django form not going more about it

I’m sure a general search for “credit card payment processing” will provide you with enough resources to get started.

1 Like

ok thanks I will do for that.
thank you very much

I’d recommend Stripe, their docs are fantastic.

2 Likes