This repository was archived by the owner on Jul 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +42
-22
lines changed Expand file tree Collapse file tree 4 files changed +42
-22
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ sphinx:
27
27
# Optional but recommended, declare the Python requirements required
28
28
# to build your documentation
29
29
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
30
- # python:
31
- # install:
32
- # - requirements: docs /requirements.txt
30
+ python :
31
+ install :
32
+ - requirements : . /requirements.txt
Original file line number Diff line number Diff line change 11
11
sys .path .insert (0 , os .path .abspath (".." ))
12
12
13
13
14
- project = ' python-flutterwave'
15
- copyright = ' 2024, William Otieno'
16
- author = ' William Otieno'
17
- release = ' 1.2.1'
14
+ project = " python-flutterwave"
15
+ copyright = " 2024, William Otieno"
16
+ author = " William Otieno"
17
+ release = " 1.2.1"
18
18
19
19
# -- General configuration ---------------------------------------------------
20
20
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
21
21
22
- extensions = [
23
- "sphinx.ext.todo" ,
24
- "sphinx.ext.viewcode" ,
25
- "sphinx.ext.autodoc"
26
- ]
27
-
28
- templates_path = ['_templates' ]
29
- exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' ]
22
+ extensions = ["sphinx.ext.todo" , "sphinx.ext.viewcode" , "sphinx.ext.autodoc" ]
30
23
24
+ templates_path = ["_templates" ]
25
+ exclude_patterns = ["_build" , "Thumbs.db" , ".DS_Store" ]
31
26
32
27
33
28
# -- Options for HTML output -------------------------------------------------
34
29
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
35
30
36
- html_theme = ' sphinx_rtd_theme'
37
- html_static_path = [' _static' ]
31
+ html_theme = " sphinx_rtd_theme"
32
+ html_static_path = [" _static" ]
Original file line number Diff line number Diff line change 1
1
"""
2
2
The charge APIs help you to collect payments using different payment methods.
3
3
"""
4
- from .bank import *
5
- from .card import *
6
- from .mobile import *
7
- from .validation import *
4
+ from .bank import (
5
+ initiate_bank_charge ,
6
+ initiate_uk_eu_bank_charge ,
7
+ initiate_ach_bank_charge ,
8
+ initiate_nigeria_bank_charge
9
+ )
10
+ from .card import initiate_card_charge
11
+ from .mobile import (
12
+ initiate_ussd_charge ,
13
+ initiate_mpesa_charge ,
14
+ initiate_enaira_charge ,
15
+ initiate_paypal_charge ,
16
+ initiate_apple_pay_charge ,
17
+ initiate_fawry_pay_charge ,
18
+ initiate_google_pay_charge ,
19
+ initiate_ghana_mobile_charge ,
20
+ initiate_uganda_mobile_charge ,
21
+ initiate_franco_mobile_charge ,
22
+ initiate_rwanda_mobile_charge ,
23
+ initiate_zambia_mobile_charge ,
24
+ initiate_tanzania_mobile_charge
25
+ )
26
+ from .validation import validate_charge
Original file line number Diff line number Diff line change 1
1
"""
2
2
Tokenize your customers' cards with Flutterwave for faster payments.
3
3
"""
4
- from .tokenized_charge import *
4
+ from .tokenized_charge import (
5
+ initiate_tokenized_charge ,
6
+ initiate_bulk_tokenized_charges ,
7
+ fetch_bulk_tokenized_charges ,
8
+ fetch_bulk_tokenized_charges_status ,
9
+ update_card_token
10
+ )
You can’t perform that action at this time.
0 commit comments