Update dependency photosapi_client to v0.6.0 #75
4
.gitignore
vendored
4
.gitignore
vendored
@ -153,8 +153,12 @@ cython_debug/
|
||||
#.idea/
|
||||
|
||||
# Custom
|
||||
cache/
|
||||
config.json
|
||||
|
||||
*.session
|
||||
*.session-wal
|
||||
*.session-shm
|
||||
*.session-journal
|
||||
|
||||
venv
|
||||
|
@ -179,7 +179,7 @@ class PyroClient(PyroClient):
|
||||
response = await photo_upload(
|
||||
self.config["posting"]["api"]["album"],
|
||||
client=client,
|
||||
multipart_data=BodyPhotoUpload(
|
||||
body=BodyPhotoUpload(
|
||||
File(media_bytes, filepath.name, "image/jpeg")
|
||||
),
|
||||
ignore_duplicates=self.config["submission"]["allow_duplicates"],
|
||||
@ -190,16 +190,14 @@ class PyroClient(PyroClient):
|
||||
response = await video_upload(
|
||||
self.config["posting"]["api"]["album"],
|
||||
client=client,
|
||||
multipart_data=BodyVideoUpload(
|
||||
File(media_bytes, filepath.name, "video/*")
|
||||
),
|
||||
body=BodyVideoUpload(File(media_bytes, filepath.name, "video/*")),
|
||||
caption="queue",
|
||||
)
|
||||
# elif db_entry["type"] == SubmissionType.ANIMATION.value:
|
||||
# response = await video_upload(
|
||||
# self.config["posting"]["api"]["album"],
|
||||
# client=client,
|
||||
# multipart_data=BodyVideoUpload(
|
||||
# body=BodyVideoUpload(
|
||||
# File(media_bytes, filepath.name, "video/*")
|
||||
# ),
|
||||
# caption="queue",
|
||||
|
@ -117,16 +117,14 @@ async def authorize(custom_session: Union[ClientSession, None] = None) -> str:
|
||||
|
||||
|
||||
unauthorized_client = Client(
|
||||
base_url=sync.config_get("address", "posting", "api"),
|
||||
timeout=sync.config_get("timeout", "posting", "api"),
|
||||
verify_ssl=True,
|
||||
sync.config_get("address", "posting", "api"),
|
||||
raise_on_unexpected_status=True,
|
||||
follow_redirects=False,
|
||||
timeout=sync.config_get("timeout", "posting", "api"),
|
||||
)
|
||||
|
||||
login_token = login(
|
||||
client=unauthorized_client,
|
||||
form_data=BodyLoginForAccessTokenTokenPost(
|
||||
body=BodyLoginForAccessTokenTokenPost(
|
||||
grant_type="password",
|
||||
scope="me albums.list albums.read albums.write photos.list photos.read photos.write videos.list videos.read videos.write",
|
||||
username=sync.config_get("username", "posting", "api"),
|
||||
@ -141,12 +139,10 @@ if not isinstance(login_token, Token):
|
||||
exit()
|
||||
|
||||
client = AuthenticatedClient(
|
||||
base_url=sync.config_get("address", "posting", "api"),
|
||||
timeout=sync.config_get("timeout", "posting", "api"),
|
||||
verify_ssl=True,
|
||||
raise_on_unexpected_status=True,
|
||||
sync.config_get("address", "posting", "api"),
|
||||
token=login_token.access_token,
|
||||
follow_redirects=False,
|
||||
raise_on_unexpected_status=True,
|
||||
timeout=sync.config_get("timeout", "posting", "api"),
|
||||
)
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
@ -158,7 +158,7 @@ async def cmd_import(app: PyroClient, message: Message):
|
||||
uploaded = await photo_upload(
|
||||
app.config["posting"]["api"]["album"],
|
||||
client=client,
|
||||
multipart_data=BodyPhotoUpload(
|
||||
body=BodyPhotoUpload(
|
||||
File(photo_bytes, Path(filename).name, "image/jpeg")
|
||||
),
|
||||
ignore_duplicates=app.config["submission"]["allow_duplicates"],
|
||||
|
@ -4,8 +4,8 @@ pillow~=10.2.0
|
||||
pykeyboard==0.1.7
|
||||
pytimeparse~=1.1.8
|
||||
tgcrypto==1.2.5
|
||||
uvloop==0.19.0
|
||||
#uvloop==0.19.0
|
||||
--extra-index-url https://git.end-play.xyz/api/packages/profitroll/pypi/simple
|
||||
async_pymongo==0.1.4
|
||||
libbot[speed,pyrogram]==3.0.0
|
||||
photosapi_client==0.5.0
|
||||
photosapi_client==0.6.0
|
Reference in New Issue
Block a user