django-barobill 0.1.0__tar.gz → 0.1.1__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. django_barobill-0.1.1/LICENSE +21 -0
  2. django_barobill-0.1.1/PKG-INFO +119 -0
  3. django_barobill-0.1.1/README.md +86 -0
  4. django_barobill-0.1.1/django_barobill.egg-info/PKG-INFO +119 -0
  5. {django_barobill-0.1.0 → django_barobill-0.1.1}/setup.py +2 -2
  6. django_barobill-0.1.0/LICENSE +0 -0
  7. django_barobill-0.1.0/PKG-INFO +0 -31
  8. django_barobill-0.1.0/README.md +0 -0
  9. django_barobill-0.1.0/django_barobill.egg-info/PKG-INFO +0 -31
  10. {django_barobill-0.1.0 → django_barobill-0.1.1}/MANIFEST.in +0 -0
  11. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/__init__.py +0 -0
  12. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/admin.py +0 -0
  13. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/apps.py +0 -0
  14. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/choices.py +0 -0
  15. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/errors.py +0 -0
  16. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/migrations/0001_initial.py +0 -0
  17. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/migrations/__init__.py +0 -0
  18. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/models.py +0 -0
  19. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/parsers.py +0 -0
  20. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/tests.py +0 -0
  21. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/utils.py +0 -0
  22. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill/views.py +0 -0
  23. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill.egg-info/SOURCES.txt +0 -0
  24. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill.egg-info/dependency_links.txt +0 -0
  25. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill.egg-info/requires.txt +0 -0
  26. {django_barobill-0.1.0 → django_barobill-0.1.1}/django_barobill.egg-info/top_level.txt +0 -0
  27. {django_barobill-0.1.0 → django_barobill-0.1.1}/setup.cfg +0 -0
  28. {django_barobill-0.1.0 → django_barobill-0.1.1}/tests/test_app.py +0 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 cuhong
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,119 @@
1
+ Metadata-Version: 2.2
2
+ Name: django-barobill
3
+ Version: 0.1.1
4
+ Summary: A reusable Django app for integration with BaroBill services.
5
+ Home-page: https://github.com/cuhong/django-barobill
6
+ Author: cuhong
7
+ Author-email: hongcoilhouse@gmail.com
8
+ License: MIT License
9
+ Classifier: Environment :: Web Environment
10
+ Classifier: Framework :: Django
11
+ Classifier: Framework :: Django :: 4.0
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: django>=4.0
21
+ Requires-Dist: requests==2.32.3
22
+ Requires-Dist: zeep==4.3.1
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: license
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Django Barobill
35
+ 바로빌 연동을 위한 reusable package
36
+
37
+ ## 설치
38
+ 아래 명령어로 패키지 설치한 후
39
+
40
+ ```pip install django-barobill```
41
+
42
+ `django`의 `settings.py` 내 `INSTALLED_APPS`에 `django_barobill`을 추가합니다.
43
+
44
+ ```shell
45
+ INSTALLED_APPS = [
46
+ ...
47
+ 'django.contrib.staticfiles',
48
+ 'django_barobill'
49
+ ]
50
+ ```
51
+
52
+ 마지막으로 마이그레이션을 수행하여 필요한 테이블을 생성합니다.
53
+
54
+ ```shell
55
+ python manage.py migrate
56
+ ```
57
+
58
+ ## 구성
59
+ ### 파트너
60
+ 이 패키지는 기본적으로 여러개의 파트너사를 한 앱에서 관리할 수 있게 구성되어 있습니다.
61
+
62
+ 파트너사는 `models.Partner`에 저장되며 신규 파트너를 아래와 같이 등록할 수 있습니다.
63
+
64
+ ```python
65
+ from django_barobill.models import Partner
66
+ 상세 학목은 메서드의 docstring 참고
67
+
68
+ partner = Partner.objects.register_partner(
69
+ '회사명', '사업자등록번호', 'api key', 'userid', dev=False
70
+ )
71
+ ```
72
+
73
+ ## 계좌조회
74
+ ### 계좌조회 관련 client
75
+ 아래와 같이 은행 계좌 조회와 관련된 client를 생성한다.
76
+
77
+ ```python
78
+ from django_barobill.models import Partner
79
+
80
+ partner = Partner.objects.first()
81
+
82
+ bank_client = partner.bank.client
83
+ ```
84
+ ### 계좌 등록
85
+ 생성된 client에서 아래와 같이 계좌를 생성한다.
86
+ 상세 학목은 메서드의 docstring 참고
87
+
88
+ ```python
89
+ bank_account = bank_client.register_bank_account(
90
+ '수금계좌', BankAccountCollectCycle.MINUTE10, BankAccountBank.HANA,
91
+ BankAccountAccountType.C, '21223451241', '1234'
92
+ )
93
+ ```
94
+
95
+ ### 계좌 거래내역
96
+
97
+ #### 조회만
98
+ 아래와 같은 형태로 거래내역을 조회힌다. 응답은 barobill의 응답을 변경없이 반환한다.
99
+ 자세한 내용은 각 메서드의 docstring 참고
100
+ ```python
101
+ # 기간 조회
102
+ log_duration = bank_client.get_log('20240101', '20240105', 1)
103
+ # 특정일 조회
104
+ log_day = bank_client.get_daily_log('20240101', 1)
105
+ # 특정월 조회
106
+ log_month = bank_client.get_monthly_log('202401', 1)
107
+ ```
108
+
109
+ #### 조회 및 데이터베이스 등록
110
+ 조회 후 데이터베이스 등록 까지 진행
111
+ 자세한 내용은 각 메서드의 docstring 참고
112
+ ```python
113
+ # 특정일 조회 및 등록
114
+ log_day = bank_client.update_date_log('20240101')
115
+ # 오늘 조회 및 등록
116
+ log_today = bank_client.update_today_log()
117
+ # 어제 조회 및 등록
118
+ log_yesterday = bank_client.update_yesterday_log()
119
+ ```
@@ -0,0 +1,86 @@
1
+ # Django Barobill
2
+ 바로빌 연동을 위한 reusable package
3
+
4
+ ## 설치
5
+ 아래 명령어로 패키지 설치한 후
6
+
7
+ ```pip install django-barobill```
8
+
9
+ `django`의 `settings.py` 내 `INSTALLED_APPS`에 `django_barobill`을 추가합니다.
10
+
11
+ ```shell
12
+ INSTALLED_APPS = [
13
+ ...
14
+ 'django.contrib.staticfiles',
15
+ 'django_barobill'
16
+ ]
17
+ ```
18
+
19
+ 마지막으로 마이그레이션을 수행하여 필요한 테이블을 생성합니다.
20
+
21
+ ```shell
22
+ python manage.py migrate
23
+ ```
24
+
25
+ ## 구성
26
+ ### 파트너
27
+ 이 패키지는 기본적으로 여러개의 파트너사를 한 앱에서 관리할 수 있게 구성되어 있습니다.
28
+
29
+ 파트너사는 `models.Partner`에 저장되며 신규 파트너를 아래와 같이 등록할 수 있습니다.
30
+
31
+ ```python
32
+ from django_barobill.models import Partner
33
+ 상세 학목은 메서드의 docstring 참고
34
+
35
+ partner = Partner.objects.register_partner(
36
+ '회사명', '사업자등록번호', 'api key', 'userid', dev=False
37
+ )
38
+ ```
39
+
40
+ ## 계좌조회
41
+ ### 계좌조회 관련 client
42
+ 아래와 같이 은행 계좌 조회와 관련된 client를 생성한다.
43
+
44
+ ```python
45
+ from django_barobill.models import Partner
46
+
47
+ partner = Partner.objects.first()
48
+
49
+ bank_client = partner.bank.client
50
+ ```
51
+ ### 계좌 등록
52
+ 생성된 client에서 아래와 같이 계좌를 생성한다.
53
+ 상세 학목은 메서드의 docstring 참고
54
+
55
+ ```python
56
+ bank_account = bank_client.register_bank_account(
57
+ '수금계좌', BankAccountCollectCycle.MINUTE10, BankAccountBank.HANA,
58
+ BankAccountAccountType.C, '21223451241', '1234'
59
+ )
60
+ ```
61
+
62
+ ### 계좌 거래내역
63
+
64
+ #### 조회만
65
+ 아래와 같은 형태로 거래내역을 조회힌다. 응답은 barobill의 응답을 변경없이 반환한다.
66
+ 자세한 내용은 각 메서드의 docstring 참고
67
+ ```python
68
+ # 기간 조회
69
+ log_duration = bank_client.get_log('20240101', '20240105', 1)
70
+ # 특정일 조회
71
+ log_day = bank_client.get_daily_log('20240101', 1)
72
+ # 특정월 조회
73
+ log_month = bank_client.get_monthly_log('202401', 1)
74
+ ```
75
+
76
+ #### 조회 및 데이터베이스 등록
77
+ 조회 후 데이터베이스 등록 까지 진행
78
+ 자세한 내용은 각 메서드의 docstring 참고
79
+ ```python
80
+ # 특정일 조회 및 등록
81
+ log_day = bank_client.update_date_log('20240101')
82
+ # 오늘 조회 및 등록
83
+ log_today = bank_client.update_today_log()
84
+ # 어제 조회 및 등록
85
+ log_yesterday = bank_client.update_yesterday_log()
86
+ ```
@@ -0,0 +1,119 @@
1
+ Metadata-Version: 2.2
2
+ Name: django-barobill
3
+ Version: 0.1.1
4
+ Summary: A reusable Django app for integration with BaroBill services.
5
+ Home-page: https://github.com/cuhong/django-barobill
6
+ Author: cuhong
7
+ Author-email: hongcoilhouse@gmail.com
8
+ License: MIT License
9
+ Classifier: Environment :: Web Environment
10
+ Classifier: Framework :: Django
11
+ Classifier: Framework :: Django :: 4.0
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: django>=4.0
21
+ Requires-Dist: requests==2.32.3
22
+ Requires-Dist: zeep==4.3.1
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: license
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Django Barobill
35
+ 바로빌 연동을 위한 reusable package
36
+
37
+ ## 설치
38
+ 아래 명령어로 패키지 설치한 후
39
+
40
+ ```pip install django-barobill```
41
+
42
+ `django`의 `settings.py` 내 `INSTALLED_APPS`에 `django_barobill`을 추가합니다.
43
+
44
+ ```shell
45
+ INSTALLED_APPS = [
46
+ ...
47
+ 'django.contrib.staticfiles',
48
+ 'django_barobill'
49
+ ]
50
+ ```
51
+
52
+ 마지막으로 마이그레이션을 수행하여 필요한 테이블을 생성합니다.
53
+
54
+ ```shell
55
+ python manage.py migrate
56
+ ```
57
+
58
+ ## 구성
59
+ ### 파트너
60
+ 이 패키지는 기본적으로 여러개의 파트너사를 한 앱에서 관리할 수 있게 구성되어 있습니다.
61
+
62
+ 파트너사는 `models.Partner`에 저장되며 신규 파트너를 아래와 같이 등록할 수 있습니다.
63
+
64
+ ```python
65
+ from django_barobill.models import Partner
66
+ 상세 학목은 메서드의 docstring 참고
67
+
68
+ partner = Partner.objects.register_partner(
69
+ '회사명', '사업자등록번호', 'api key', 'userid', dev=False
70
+ )
71
+ ```
72
+
73
+ ## 계좌조회
74
+ ### 계좌조회 관련 client
75
+ 아래와 같이 은행 계좌 조회와 관련된 client를 생성한다.
76
+
77
+ ```python
78
+ from django_barobill.models import Partner
79
+
80
+ partner = Partner.objects.first()
81
+
82
+ bank_client = partner.bank.client
83
+ ```
84
+ ### 계좌 등록
85
+ 생성된 client에서 아래와 같이 계좌를 생성한다.
86
+ 상세 학목은 메서드의 docstring 참고
87
+
88
+ ```python
89
+ bank_account = bank_client.register_bank_account(
90
+ '수금계좌', BankAccountCollectCycle.MINUTE10, BankAccountBank.HANA,
91
+ BankAccountAccountType.C, '21223451241', '1234'
92
+ )
93
+ ```
94
+
95
+ ### 계좌 거래내역
96
+
97
+ #### 조회만
98
+ 아래와 같은 형태로 거래내역을 조회힌다. 응답은 barobill의 응답을 변경없이 반환한다.
99
+ 자세한 내용은 각 메서드의 docstring 참고
100
+ ```python
101
+ # 기간 조회
102
+ log_duration = bank_client.get_log('20240101', '20240105', 1)
103
+ # 특정일 조회
104
+ log_day = bank_client.get_daily_log('20240101', 1)
105
+ # 특정월 조회
106
+ log_month = bank_client.get_monthly_log('202401', 1)
107
+ ```
108
+
109
+ #### 조회 및 데이터베이스 등록
110
+ 조회 후 데이터베이스 등록 까지 진행
111
+ 자세한 내용은 각 메서드의 docstring 참고
112
+ ```python
113
+ # 특정일 조회 및 등록
114
+ log_day = bank_client.update_date_log('20240101')
115
+ # 오늘 조회 및 등록
116
+ log_today = bank_client.update_today_log()
117
+ # 어제 조회 및 등록
118
+ log_yesterday = bank_client.update_yesterday_log()
119
+ ```
@@ -1,8 +1,8 @@
1
1
  from setuptools import setup, find_packages
2
-
2
+ long_description=open("README.md").read()
3
3
  setup(
4
4
  name="django-barobill", # 패키지 이름 (PyPI에 등록될 이름)
5
- version="0.1.0", # 초기 버전
5
+ version="0.1.1", # 초기 버전
6
6
  packages=find_packages(exclude=["tests*", "docs*"]), # 'django_barobill' 폴더 포함
7
7
  include_package_data=True, # MANIFEST.in 파일에 포함된 파일도 추가
8
8
  license="MIT License", # 라이선스
File without changes
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: django-barobill
3
- Version: 0.1.0
4
- Summary: A reusable Django app for integration with BaroBill services.
5
- Home-page: https://github.com/cuhong/django-barobill
6
- Author: cuhong
7
- Author-email: hongcoilhouse@gmail.com
8
- License: MIT License
9
- Classifier: Environment :: Web Environment
10
- Classifier: Framework :: Django
11
- Classifier: Framework :: Django :: 4.0
12
- Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
- Requires-Python: >=3.8
18
- Description-Content-Type: text/markdown
19
- License-File: LICENSE
20
- Requires-Dist: django>=4.0
21
- Requires-Dist: requests==2.32.3
22
- Requires-Dist: zeep==4.3.1
23
- Dynamic: author
24
- Dynamic: author-email
25
- Dynamic: classifier
26
- Dynamic: description-content-type
27
- Dynamic: home-page
28
- Dynamic: license
29
- Dynamic: requires-dist
30
- Dynamic: requires-python
31
- Dynamic: summary
File without changes
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: django-barobill
3
- Version: 0.1.0
4
- Summary: A reusable Django app for integration with BaroBill services.
5
- Home-page: https://github.com/cuhong/django-barobill
6
- Author: cuhong
7
- Author-email: hongcoilhouse@gmail.com
8
- License: MIT License
9
- Classifier: Environment :: Web Environment
10
- Classifier: Framework :: Django
11
- Classifier: Framework :: Django :: 4.0
12
- Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
- Requires-Python: >=3.8
18
- Description-Content-Type: text/markdown
19
- License-File: LICENSE
20
- Requires-Dist: django>=4.0
21
- Requires-Dist: requests==2.32.3
22
- Requires-Dist: zeep==4.3.1
23
- Dynamic: author
24
- Dynamic: author-email
25
- Dynamic: classifier
26
- Dynamic: description-content-type
27
- Dynamic: home-page
28
- Dynamic: license
29
- Dynamic: requires-dist
30
- Dynamic: requires-python
31
- Dynamic: summary