socialift 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. socialift-1.0.0/.gitignore +385 -0
  2. socialift-1.0.0/LICENSE +32 -0
  3. socialift-1.0.0/PKG-INFO +347 -0
  4. socialift-1.0.0/README.md +265 -0
  5. socialift-1.0.0/SECURITY.md +186 -0
  6. socialift-1.0.0/alembic.ini +117 -0
  7. socialift-1.0.0/docs/ARCHITECTURE.md +310 -0
  8. socialift-1.0.0/docs/BACKEND_SETUP.md +406 -0
  9. socialift-1.0.0/docs/DEPLOYMENT.md +226 -0
  10. socialift-1.0.0/docs/FRONTEND.md +422 -0
  11. socialift-1.0.0/docs/SDK.md +379 -0
  12. socialift-1.0.0/pyproject.toml +146 -0
  13. socialift-1.0.0/socialift/__init__.py +125 -0
  14. socialift-1.0.0/socialift/_version.py +3 -0
  15. socialift-1.0.0/socialift/cli.py +275 -0
  16. socialift-1.0.0/socialift/crypto.py +107 -0
  17. socialift-1.0.0/socialift/endpoints.py +186 -0
  18. socialift-1.0.0/socialift/errors.py +130 -0
  19. socialift-1.0.0/socialift/facebook.py +450 -0
  20. socialift-1.0.0/socialift/http.py +348 -0
  21. socialift-1.0.0/socialift/instagram.py +633 -0
  22. socialift-1.0.0/socialift/leads.py +184 -0
  23. socialift-1.0.0/socialift/licensing.py +503 -0
  24. socialift-1.0.0/socialift/linkedin.py +308 -0
  25. socialift-1.0.0/socialift/migrations/README +1 -0
  26. socialift-1.0.0/socialift/migrations/__init__.py +1 -0
  27. socialift-1.0.0/socialift/migrations/env.py +114 -0
  28. socialift-1.0.0/socialift/migrations/script.py.mako +28 -0
  29. socialift-1.0.0/socialift/migrations/versions/0f1184b7db9c_init_socialift_schema.py +1412 -0
  30. socialift-1.0.0/socialift/migrations/versions/32270dcf80b2_license_and_subscription_tables.py +145 -0
  31. socialift-1.0.0/socialift/migrations/versions/76ee4d6802e4_billing_userbot_usage_visitors_license_.py +446 -0
  32. socialift-1.0.0/socialift/migrations/versions/__init__.py +0 -0
  33. socialift-1.0.0/socialift/models.py +231 -0
  34. socialift-1.0.0/socialift/py.typed +0 -0
  35. socialift-1.0.0/socialift/server/__init__.py +22 -0
  36. socialift-1.0.0/socialift/server/ai.py +94 -0
  37. socialift-1.0.0/socialift/server/api/__init__.py +0 -0
  38. socialift-1.0.0/socialift/server/api/analytics/__init__.py +0 -0
  39. socialift-1.0.0/socialift/server/api/analytics/router.py +31 -0
  40. socialift-1.0.0/socialift/server/api/analytics/schema.py +28 -0
  41. socialift-1.0.0/socialift/server/api/analytics/service.py +97 -0
  42. socialift-1.0.0/socialift/server/api/billing/__init__.py +0 -0
  43. socialift-1.0.0/socialift/server/api/billing/topup/__init__.py +0 -0
  44. socialift-1.0.0/socialift/server/api/billing/topup/router.py +44 -0
  45. socialift-1.0.0/socialift/server/api/billing/topup/schema.py +46 -0
  46. socialift-1.0.0/socialift/server/api/billing/topup/services/__init__.py +0 -0
  47. socialift-1.0.0/socialift/server/api/billing/topup/services/bank_matcher.py +14 -0
  48. socialift-1.0.0/socialift/server/api/billing/topup/services/cards.py +27 -0
  49. socialift-1.0.0/socialift/server/api/billing/topup/services/topup.py +191 -0
  50. socialift-1.0.0/socialift/server/api/billing/topup/services/transfers.py +101 -0
  51. socialift-1.0.0/socialift/server/api/crm/__init__.py +0 -0
  52. socialift-1.0.0/socialift/server/api/crm/routers/__init__.py +1 -0
  53. socialift-1.0.0/socialift/server/api/crm/routers/leads.py +105 -0
  54. socialift-1.0.0/socialift/server/api/crm/schemas/__init__.py +1 -0
  55. socialift-1.0.0/socialift/server/api/crm/schemas/lead.py +93 -0
  56. socialift-1.0.0/socialift/server/api/crm/services/__init__.py +4 -0
  57. socialift-1.0.0/socialift/server/api/crm/services/delivery.py +220 -0
  58. socialift-1.0.0/socialift/server/api/crm/services/ingest.py +238 -0
  59. socialift-1.0.0/socialift/server/api/crm/services/leads.py +224 -0
  60. socialift-1.0.0/socialift/server/api/crm/services/normalizer.py +21 -0
  61. socialift-1.0.0/socialift/server/api/facebook/__init__.py +0 -0
  62. socialift-1.0.0/socialift/server/api/facebook/routers/__init__.py +1 -0
  63. socialift-1.0.0/socialift/server/api/facebook/routers/auth.py +85 -0
  64. socialift-1.0.0/socialift/server/api/facebook/routers/content.py +132 -0
  65. socialift-1.0.0/socialift/server/api/facebook/routers/leads.py +123 -0
  66. socialift-1.0.0/socialift/server/api/facebook/routers/pages.py +89 -0
  67. socialift-1.0.0/socialift/server/api/facebook/schemas/__init__.py +1 -0
  68. socialift-1.0.0/socialift/server/api/facebook/schemas/auth.py +28 -0
  69. socialift-1.0.0/socialift/server/api/facebook/services/__init__.py +5 -0
  70. socialift-1.0.0/socialift/server/api/facebook/services/auth.py +191 -0
  71. socialift-1.0.0/socialift/server/api/facebook/services/base.py +86 -0
  72. socialift-1.0.0/socialift/server/api/facebook/services/leads.py +195 -0
  73. socialift-1.0.0/socialift/server/api/facebook/services/pages.py +202 -0
  74. socialift-1.0.0/socialift/server/api/facebook/services/posts.py +140 -0
  75. socialift-1.0.0/socialift/server/api/instagram/__init__.py +0 -0
  76. socialift-1.0.0/socialift/server/api/instagram/routers/__init__.py +1 -0
  77. socialift-1.0.0/socialift/server/api/instagram/routers/auth.py +77 -0
  78. socialift-1.0.0/socialift/server/api/instagram/routers/content.py +154 -0
  79. socialift-1.0.0/socialift/server/api/instagram/routers/messages.py +112 -0
  80. socialift-1.0.0/socialift/server/api/instagram/schemas/__init__.py +1 -0
  81. socialift-1.0.0/socialift/server/api/instagram/schemas/auth.py +23 -0
  82. socialift-1.0.0/socialift/server/api/instagram/services/__init__.py +7 -0
  83. socialift-1.0.0/socialift/server/api/instagram/services/auth.py +174 -0
  84. socialift-1.0.0/socialift/server/api/instagram/services/base.py +100 -0
  85. socialift-1.0.0/socialift/server/api/instagram/services/comments.py +56 -0
  86. socialift-1.0.0/socialift/server/api/instagram/services/insights.py +128 -0
  87. socialift-1.0.0/socialift/server/api/instagram/services/media.py +157 -0
  88. socialift-1.0.0/socialift/server/api/instagram/services/messages.py +264 -0
  89. socialift-1.0.0/socialift/server/api/instagram/services/profile.py +56 -0
  90. socialift-1.0.0/socialift/server/api/license/__init__.py +0 -0
  91. socialift-1.0.0/socialift/server/api/license/routers/__init__.py +1 -0
  92. socialift-1.0.0/socialift/server/api/license/routers/license.py +195 -0
  93. socialift-1.0.0/socialift/server/api/license/services/__init__.py +2 -0
  94. socialift-1.0.0/socialift/server/api/license/services/activation.py +206 -0
  95. socialift-1.0.0/socialift/server/api/license/services/issuer.py +140 -0
  96. socialift-1.0.0/socialift/server/api/linkedin/__init__.py +0 -0
  97. socialift-1.0.0/socialift/server/api/linkedin/routers/__init__.py +1 -0
  98. socialift-1.0.0/socialift/server/api/linkedin/routers/auth.py +82 -0
  99. socialift-1.0.0/socialift/server/api/linkedin/routers/me.py +31 -0
  100. socialift-1.0.0/socialift/server/api/linkedin/routers/posts.py +55 -0
  101. socialift-1.0.0/socialift/server/api/linkedin/schemas/__init__.py +1 -0
  102. socialift-1.0.0/socialift/server/api/linkedin/schemas/auth.py +23 -0
  103. socialift-1.0.0/socialift/server/api/linkedin/services/__init__.py +4 -0
  104. socialift-1.0.0/socialift/server/api/linkedin/services/auth.py +213 -0
  105. socialift-1.0.0/socialift/server/api/linkedin/services/base.py +95 -0
  106. socialift-1.0.0/socialift/server/api/linkedin/services/me.py +72 -0
  107. socialift-1.0.0/socialift/server/api/linkedin/services/posts.py +98 -0
  108. socialift-1.0.0/socialift/server/api/routers.py +62 -0
  109. socialift-1.0.0/socialift/server/api/tokens/__init__.py +0 -0
  110. socialift-1.0.0/socialift/server/api/tokens/router.py +56 -0
  111. socialift-1.0.0/socialift/server/api/tokens/schema.py +45 -0
  112. socialift-1.0.0/socialift/server/api/tokens/service.py +220 -0
  113. socialift-1.0.0/socialift/server/api/user/__init__.py +0 -0
  114. socialift-1.0.0/socialift/server/api/user/router.py +115 -0
  115. socialift-1.0.0/socialift/server/api/user/schema.py +119 -0
  116. socialift-1.0.0/socialift/server/api/user/service.py +227 -0
  117. socialift-1.0.0/socialift/server/api/webhooks/__init__.py +0 -0
  118. socialift-1.0.0/socialift/server/api/webhooks/routers/__init__.py +1 -0
  119. socialift-1.0.0/socialift/server/api/webhooks/routers/meta.py +205 -0
  120. socialift-1.0.0/socialift/server/api/webhooks/services/__init__.py +1 -0
  121. socialift-1.0.0/socialift/server/api/webhooks/services/dispatcher.py +219 -0
  122. socialift-1.0.0/socialift/server/config/__init__.py +1 -0
  123. socialift-1.0.0/socialift/server/config/db/__init__.py +3 -0
  124. socialift-1.0.0/socialift/server/config/db/engine.py +64 -0
  125. socialift-1.0.0/socialift/server/config/db/orm.py +28 -0
  126. socialift-1.0.0/socialift/server/config/db/repo.py +510 -0
  127. socialift-1.0.0/socialift/server/config/events.py +127 -0
  128. socialift-1.0.0/socialift/server/config/http/__init__.py +3 -0
  129. socialift-1.0.0/socialift/server/config/http/client.py +46 -0
  130. socialift-1.0.0/socialift/server/config/redis/__init__.py +2 -0
  131. socialift-1.0.0/socialift/server/config/redis/cache.py +132 -0
  132. socialift-1.0.0/socialift/server/config/redis/conn.py +20 -0
  133. socialift-1.0.0/socialift/server/config/security.py +199 -0
  134. socialift-1.0.0/socialift/server/config/server.py +131 -0
  135. socialift-1.0.0/socialift/server/config/settings.py +418 -0
  136. socialift-1.0.0/socialift/server/config/usage.py +91 -0
  137. socialift-1.0.0/socialift/server/integrations/__init__.py +0 -0
  138. socialift-1.0.0/socialift/server/integrations/bank_transactions.py +33 -0
  139. socialift-1.0.0/socialift/server/integrations/telethon_userbot/__init__.py +3 -0
  140. socialift-1.0.0/socialift/server/integrations/telethon_userbot/scraper.py +316 -0
  141. socialift-1.0.0/socialift/server/integrations/telethon_userbot/uzcard_humo.py +135 -0
  142. socialift-1.0.0/socialift/server/main.py +28 -0
  143. socialift-1.0.0/socialift/server/models/__init__.py +22 -0
  144. socialift-1.0.0/socialift/server/models/account/__init__.py +3 -0
  145. socialift-1.0.0/socialift/server/models/account/social_account.py +218 -0
  146. socialift-1.0.0/socialift/server/models/account/user.py +239 -0
  147. socialift-1.0.0/socialift/server/models/ai/__init__.py +0 -0
  148. socialift-1.0.0/socialift/server/models/ai/image.py +0 -0
  149. socialift-1.0.0/socialift/server/models/ai/profile/__init__.py +0 -0
  150. socialift-1.0.0/socialift/server/models/ai/video.py +0 -0
  151. socialift-1.0.0/socialift/server/models/analytics.py +77 -0
  152. socialift-1.0.0/socialift/server/models/base.py +93 -0
  153. socialift-1.0.0/socialift/server/models/billing/__init__.py +4 -0
  154. socialift-1.0.0/socialift/server/models/billing/card.py +29 -0
  155. socialift-1.0.0/socialift/server/models/billing/pricing.py +35 -0
  156. socialift-1.0.0/socialift/server/models/billing/topup.py +74 -0
  157. socialift-1.0.0/socialift/server/models/billing/transaction.py +50 -0
  158. socialift-1.0.0/socialift/server/models/crm/__init__.py +2 -0
  159. socialift-1.0.0/socialift/server/models/crm/lead.py +168 -0
  160. socialift-1.0.0/socialift/server/models/crm/webhook.py +58 -0
  161. socialift-1.0.0/socialift/server/models/license.py +160 -0
  162. socialift-1.0.0/socialift/server/models/mixins.py +41 -0
  163. socialift-1.0.0/socialift/server/models/social/__init__.py +4 -0
  164. socialift-1.0.0/socialift/server/models/social/content.py +268 -0
  165. socialift-1.0.0/socialift/server/models/social/stats.py +173 -0
  166. socialift-1.0.0/socialift/server/models/userbot.py +27 -0
  167. socialift-1.0.0/socialift/server/resources/__init__.py +0 -0
  168. socialift-1.0.0/socialift/server/resources/depends/__init__.py +3 -0
  169. socialift-1.0.0/socialift/server/resources/depends/current_payload.py +62 -0
  170. socialift-1.0.0/socialift/server/resources/depends/current_user.py +63 -0
  171. socialift-1.0.0/socialift/server/resources/depends/social_account.py +112 -0
  172. socialift-1.0.0/socialift/server/resources/enums.py +243 -0
  173. socialift-1.0.0/socialift/server/resources/managers/__init__.py +0 -0
  174. socialift-1.0.0/socialift/server/resources/services/__init__.py +7 -0
  175. socialift-1.0.0/socialift/server/resources/services/base.py +158 -0
  176. socialift-1.0.0/socialift/server/resources/services/decorators.py +28 -0
  177. socialift-1.0.0/socialift/server/resources/services/social_link.py +298 -0
  178. socialift-1.0.0/socialift/server/utils/__init__.py +14 -0
  179. socialift-1.0.0/socialift/server/utils/choices.py +0 -0
  180. socialift-1.0.0/socialift/server/utils/command.py +0 -0
  181. socialift-1.0.0/socialift/server/utils/commands.py +0 -0
  182. socialift-1.0.0/socialift/server/utils/constants.py +66 -0
  183. socialift-1.0.0/socialift/server/utils/crypto.py +97 -0
  184. socialift-1.0.0/socialift/server/utils/customs/__init__.py +25 -0
  185. socialift-1.0.0/socialift/server/utils/customs/aiohttp.py +173 -0
  186. socialift-1.0.0/socialift/server/utils/customs/choices.py +35 -0
  187. socialift-1.0.0/socialift/server/utils/customs/decorators.py +74 -0
  188. socialift-1.0.0/socialift/server/utils/customs/fields/__init__.py +13 -0
  189. socialift-1.0.0/socialift/server/utils/customs/fields/datetime.py +33 -0
  190. socialift-1.0.0/socialift/server/utils/customs/fields/enum.py +41 -0
  191. socialift-1.0.0/socialift/server/utils/customs/fields/file.py +42 -0
  192. socialift-1.0.0/socialift/server/utils/customs/fields/password.py +17 -0
  193. socialift-1.0.0/socialift/server/utils/customs/fields/richtext.py +59 -0
  194. socialift-1.0.0/socialift/server/utils/customs/formats/__init__.py +11 -0
  195. socialift-1.0.0/socialift/server/utils/customs/formats/base.py +31 -0
  196. socialift-1.0.0/socialift/server/utils/customs/formats/datetime.py +52 -0
  197. socialift-1.0.0/socialift/server/utils/customs/formats/file.py +62 -0
  198. socialift-1.0.0/socialift/server/utils/customs/storages.py +14 -0
  199. socialift-1.0.0/socialift/server/utils/email.py +64 -0
  200. socialift-1.0.0/socialift/server/utils/exceptions.py +44 -0
  201. socialift-1.0.0/socialift/server/utils/formatters.py +105 -0
  202. socialift-1.0.0/socialift/server/utils/hash.py +46 -0
  203. socialift-1.0.0/socialift/server/utils/http.py +142 -0
  204. socialift-1.0.0/socialift/server/utils/jwt.py +91 -0
  205. socialift-1.0.0/socialift/server/utils/oauth_state.py +75 -0
  206. socialift-1.0.0/socialift/server/utils/operators.py +12 -0
  207. socialift-1.0.0/socialift/server/utils/responses.py +142 -0
  208. socialift-1.0.0/socialift/server/utils/routes.py +15 -0
  209. socialift-1.0.0/socialift/server/utils/sms.py +47 -0
  210. socialift-1.0.0/socialift/server/utils/storages/__init__.py +8 -0
  211. socialift-1.0.0/socialift/server/utils/storages/base.py +23 -0
  212. socialift-1.0.0/socialift/server/utils/storages/local.py +33 -0
  213. socialift-1.0.0/socialift/server/utils/storages/s3.py +60 -0
  214. socialift-1.0.0/socialift/server/utils/tasks.py +12 -0
  215. socialift-1.0.0/socialift/server/utils/useragent.py +51 -0
  216. socialift-1.0.0/socialift/server/utils/utility.py +12 -0
  217. socialift-1.0.0/socialift/server/utils/validators/__init__.py +8 -0
  218. socialift-1.0.0/socialift/server/utils/validators/base.py +40 -0
  219. socialift-1.0.0/socialift/server/utils/validators/classes.py +17 -0
  220. socialift-1.0.0/socialift/server/utils/validators/functions.py +21 -0
  221. socialift-1.0.0/socialift/webhooks.py +184 -0
@@ -0,0 +1,385 @@
1
+ # Created by https://www.toptal.com/developers/gitignore/api/python,django,pycharm+all
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,django,pycharm+all
3
+
4
+ ### Django ###
5
+ *.log
6
+ *.pot
7
+ *.pyc
8
+ __pycache__/
9
+ local_settings.py
10
+ db.sqlite3
11
+ db.sqlite3-journal
12
+ media
13
+
14
+ # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
15
+ # in your Git repository. Update and uncomment the following line accordingly.
16
+ # <django-project-name>/staticfiles/
17
+
18
+ ### Django.Python Stack ###
19
+ # Byte-compiled / optimized / DLL files
20
+ *.py[cod]
21
+ *$py.class
22
+
23
+ # C extensions
24
+ *.so
25
+
26
+ # Distribution / packaging
27
+ .Python
28
+ build/
29
+ develop-eggs/
30
+ dist/
31
+ downloads/
32
+ eggs/
33
+ .eggs/
34
+ lib/
35
+ lib64/
36
+ parts/
37
+ sdist/
38
+ var/
39
+ wheels/
40
+ share/python-wheels/
41
+ *.egg-info/
42
+ .installed.cfg
43
+ *.egg
44
+ MANIFEST
45
+
46
+ # PyInstaller
47
+ # Usually these files are written by a python script from a template
48
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
49
+ *.manifest
50
+ *.spec
51
+
52
+ # Installer logs
53
+ pip-log.txt
54
+ pip-delete-this-directory.txt
55
+
56
+ # Unit test / coverage reports
57
+ htmlcov/
58
+ .tox/
59
+ .nox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ coverage.xml
65
+ *.cover
66
+ *.py,cover
67
+ .hypothesis/
68
+ .pytest_cache/
69
+ cover/
70
+
71
+ # Translations
72
+ *.mo
73
+
74
+ # Django stuff:
75
+
76
+ # Flask stuff:
77
+ instance/
78
+ .webassets-cache
79
+
80
+ # Scrapy stuff:
81
+ .scrapy
82
+
83
+ # Sphinx documentation
84
+ docs/_build/
85
+
86
+ # PyBuilder
87
+ .pybuilder/
88
+ target/
89
+
90
+ # Jupyter Notebook
91
+ .ipynb_checkpoints
92
+
93
+ # IPython
94
+ profile_default/
95
+ ipython_config.py
96
+
97
+ # pyenv
98
+ # For a library or package, you might want to ignore these files since the code is
99
+ # intended to run in multiple environments; otherwise, check them in:
100
+ # .python-version
101
+
102
+ # pipenv
103
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
104
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
105
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
106
+ # install all needed dependencies.
107
+ #Pipfile.lock
108
+
109
+ # poetry
110
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
111
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
112
+ # commonly ignored for libraries.
113
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
114
+ #poetry.lock
115
+
116
+ # pdm
117
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
118
+ #pdm.lock
119
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
120
+ # in version control.
121
+ # https://pdm.fming.dev/#use-with-ide
122
+ .pdm.toml
123
+
124
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
125
+ __pypackages__/
126
+
127
+ # Celery stuff
128
+ celerybeat-schedule
129
+ celerybeat.pid
130
+
131
+ # SageMath parsed files
132
+ *.sage.py
133
+
134
+ # Environments
135
+ .env
136
+ .venv
137
+ env/
138
+ venv/
139
+ ENV/
140
+ env.bak/
141
+ venv.bak/
142
+
143
+ # Spyder project settings
144
+ .spyderproject
145
+ .spyproject
146
+
147
+ # Rope project settings
148
+ .ropeproject
149
+
150
+ # mkdocs documentation
151
+ /site
152
+
153
+ # mypy
154
+ .mypy_cache/
155
+ .dmypy.json
156
+ dmypy.json
157
+
158
+ # Pyre type checker
159
+ .pyre/
160
+
161
+ # pytype static type analyzer
162
+ .pytype/
163
+
164
+ # Cython debug symbols
165
+ cython_debug/
166
+
167
+ # PyCharm
168
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
169
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
170
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
171
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
172
+ .idea/
173
+
174
+ ### PyCharm+all ###
175
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
176
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
177
+
178
+ # User-specific stuff
179
+ .idea/**/workspace.xml
180
+ .idea/**/tasks.xml
181
+ .idea/**/usage.statistics.xml
182
+ .idea/**/dictionaries
183
+ .idea/**/shelf
184
+
185
+ # AWS User-specific
186
+ .idea/**/aws.xml
187
+
188
+ # Generated files
189
+ .idea/**/contentModel.xml
190
+
191
+ # Sensitive or high-churn files
192
+ .idea/**/dataSources/
193
+ .idea/**/dataSources.ids
194
+ .idea/**/dataSources.local.xml
195
+ .idea/**/sqlDataSources.xml
196
+ .idea/**/dynamic.xml
197
+ .idea/**/uiDesigner.xml
198
+ .idea/**/dbnavigator.xml
199
+
200
+ # Gradle
201
+ .idea/**/gradle.xml
202
+ .idea/**/libraries
203
+
204
+ # Gradle and Maven with auto-import
205
+ # When using Gradle or Maven with auto-import, you should exclude module files,
206
+ # since they will be recreated, and may cause churn. Uncomment if using
207
+ # auto-import.
208
+ # .idea/artifacts
209
+ # .idea/compiler.xml
210
+ # .idea/jarRepositories.xml
211
+ # .idea/modules.xml
212
+ # .idea/*.iml
213
+ # .idea/modules
214
+ # *.iml
215
+ # *.ipr
216
+
217
+ # CMake
218
+ cmake-build-*/
219
+
220
+ # Mongo Explorer plugin
221
+ .idea/**/mongoSettings.xml
222
+
223
+ # File-based project format
224
+ *.iws
225
+
226
+ # IntelliJ
227
+ out/
228
+
229
+ # mpeltonen/sbt-idea plugin
230
+ .idea_modules/
231
+
232
+ # JIRA plugin
233
+ atlassian-ide-plugin.xml
234
+
235
+ # Cursive Clojure plugin
236
+ .idea/replstate.xml
237
+
238
+ # SonarLint plugin
239
+ .idea/sonarlint/
240
+
241
+ # Crashlytics plugin (for Android Studio and IntelliJ)
242
+ com_crashlytics_export_strings.xml
243
+ crashlytics.properties
244
+ crashlytics-build.properties
245
+ fabric.properties
246
+
247
+ # Editor-based Rest Client
248
+ .idea/httpRequests
249
+
250
+ # Android studio 3.1+ serialized cache file
251
+ .idea/caches/build_file_checksums.ser
252
+
253
+ ### PyCharm+all Patch ###
254
+ # Ignore everything but code style settings and run configurations
255
+ # that are supposed to be shared within teams.
256
+
257
+ .idea/*
258
+
259
+ !.idea/codeStyles
260
+ !.idea/runConfigurations
261
+
262
+ ### Python ###
263
+ # Byte-compiled / optimized / DLL files
264
+
265
+ # C extensions
266
+
267
+ # Distribution / packaging
268
+
269
+ # PyInstaller
270
+ # Usually these files are written by a python script from a template
271
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
272
+
273
+ # Installer logs
274
+
275
+ # Unit test / coverage reports
276
+
277
+ # Translations
278
+
279
+ # Django stuff:
280
+
281
+ # Flask stuff:
282
+
283
+ # Scrapy stuff:
284
+
285
+ # Sphinx documentation
286
+
287
+ # PyBuilder
288
+
289
+ # Jupyter Notebook
290
+
291
+ # IPython
292
+
293
+ # pyenv
294
+ # For a library or package, you might want to ignore these files since the code is
295
+ # intended to run in multiple environments; otherwise, check them in:
296
+ # .python-version
297
+
298
+ # pipenv
299
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
300
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
301
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
302
+ # install all needed dependencies.
303
+
304
+ # poetry
305
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
306
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
307
+ # commonly ignored for libraries.
308
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
309
+
310
+ # pdm
311
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
312
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
313
+ # in version control.
314
+ # https://pdm.fming.dev/#use-with-ide
315
+
316
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
317
+
318
+ # Celery stuff
319
+
320
+ # SageMath parsed files
321
+
322
+ # Environments
323
+
324
+ # Spyder project settings
325
+
326
+ # Rope project settings
327
+
328
+ # mkdocs documentation
329
+
330
+ # mypy
331
+
332
+ # Pyre type checker
333
+
334
+ # pytype static type analyzer
335
+
336
+ # Cython debug symbols
337
+
338
+ # PyCharm
339
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
340
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
341
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
342
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
343
+
344
+ # End of https://www.toptal.com/developers/gitignore/api/python,django,pycharm+all
345
+
346
+ /static/
347
+
348
+ ### macOS ###
349
+ .DS_Store
350
+ .AppleDouble
351
+ .LSOverride
352
+
353
+ # Icon must end with two \r
354
+ Icon
355
+
356
+
357
+ # Thumbnails
358
+ ._*
359
+
360
+ # Files that might appear in the root of a volume
361
+ .DocumentRevisions-V100
362
+ .fseventsd
363
+ .Spotlight-V100
364
+ .TemporaryItems
365
+ .Trashes
366
+ .VolumeIcon.icns
367
+ .com.apple.timemachine.donotpresent
368
+
369
+ # Directories potentially created on remote AFP share
370
+ .AppleDB
371
+ .AppleDesktop
372
+ Network Trash Folder
373
+ Temporary Items
374
+ .apdisk
375
+
376
+ ### macOS Patch ###
377
+ # iCloud generated files
378
+ *.icloud
379
+
380
+ celerybeat-schedule.db
381
+ postgres/
382
+ dump.sql
383
+ # paket artefaktlari
384
+ dist/
385
+ *.egg-info/
@@ -0,0 +1,32 @@
1
+ Socialift — tijorat litsenziyasi
2
+ Copyright (c) 2026 Fayoz Turaqulov. Barcha huquqlar himoyalangan.
3
+
4
+ 1. RUXSAT
5
+ Amaldagi obuna kaliti (`SOCIALIFT_LICENSE_KEY`) egasiga quyidagilar
6
+ ruxsat etiladi:
7
+ a) dasturiy ta'minotni o'z mahsuloti yoki ichki tizimlarida ishlatish;
8
+ b) obuna rejasida ko'rsatilgan seat (muhit) sonidan oshmasdan o'rnatish;
9
+ c) o'z ehtiyoji uchun kodni o'rganish va lokal o'zgartirish kiritish.
10
+
11
+ 2. TAQIQLAR
12
+ Quyidagilar yozma ruxsatsiz taqiqlanadi:
13
+ a) dasturiy ta'minotni yoki uning hosilasini qayta tarqatish, sotish,
14
+ ijaraga berish, sublitsenziyalash;
15
+ b) litsenziya tekshiruvini chetlab o'tish, o'chirish yoki buzish;
16
+ c) obuna kalitini uchinchi shaxsga berish yoki oshkor qilish;
17
+ d) dasturiy ta'minot asosida raqobatdosh mahsulot yaratish.
18
+
19
+ 3. OBUNA
20
+ Ruxsat obuna amal qilgan davrda kuchda. Obuna tugagach yoki bekor
21
+ qilingach 1-banddagi ruxsatlar to'xtaydi.
22
+
23
+ 4. KAFOLATLAR YO'QLIGI
24
+ Dasturiy ta'minot "BOR HOLICHA" taqdim etiladi, hech qanday oshkora
25
+ yoki nazarda tutilgan kafolatsiz. Mualliflar hech qanday zarar uchun
26
+ javobgar emas.
27
+
28
+ 5. UCHINCHI TOMON XIZMATLARI
29
+ Meta (Facebook, Instagram) va LinkedIn API'laridan foydalanish ularning
30
+ o'z shartlariga bo'ysunadi. Ushbu litsenziya ularni qamrab olmaydi.
31
+
32
+ Savollar: hello@socialift.uz