6 Commits
v1 ... v1.0.1

Author SHA1 Message Date
firedotguy
6236c5981b chore: update version 2026-02-07 18:52:10 +03:00
firedotguy
27bd528883 fix: add __init__.py in routes and models 2026-02-07 18:51:31 +03:00
firedotguy
63dfedc917 chore: remove test file 2026-02-07 18:07:02 +03:00
firedotguy
006bda53c1 chore: update version; change name in readme 2026-02-07 18:01:38 +03:00
firedotguy
201f720843 Merge pull request #6 from firedotguy/v1
Версия 1
2026-02-07 20:59:49 +06:00
firedotguy
8d03171925 chore: update version 2026-01-31 12:27:48 +03:00
8 changed files with 6 additions and 4 deletions

3
.gitignore vendored
View File

@@ -3,4 +3,5 @@ like.py
venv/
__pycache__/
dist
itd_sdk.egg-info
itd_sdk.egg-info
nowkie.gif

View File

@@ -1,4 +1,4 @@
# pyITDclient
# itd-sdk
Клиент ITD для python

View File

@@ -27,6 +27,7 @@ class ReportTargetReason(Enum):
class AttachType(Enum):
AUDIO = 'audio'
IMAGE = 'image'
VIDEO = 'video'
class PostsTab(Enum):
FOLLOWING = 'following'

0
itd/models/__init__.py Normal file
View File

0
itd/routes/__init__.py Normal file
View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 MiB

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "itd-sdk"
version = "0.2.0"
version = "1.0.1"
description = "ITD client for python"
readme = "README.md"
authors = [

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='itd-sdk',
version='0.2.0',
version='1.0.1',
packages=find_packages(),
install_requires=[
'requests', 'pydantic'