update .gitignore to include additional Python and environment-related files

This commit is contained in:
2025-10-19 22:15:57 +03:00
parent 6d593b4554
commit f181f04040

View File

@ -1,16 +0,0 @@
from src.app.core.config import settings
from src.app.lib import TBankClient
async def main():
api_key = settings.TBANK_API_KEY
client = TBankClient(api_key=api_key)
data = await client.get_counterparty_excerpt_by_inn('9726096281')
print(data)
if __name__ == "__main__":
import asyncio
asyncio.run(main())