├── .DS_Store ├── .github └── workflows │ ├── greetings.yml │ └── pylint.yml ├── 3Sum.py ├── BMI calculator ├── BinarySearchRecursion.c ├── Bitcoin analyser ├── .DS_Store ├── css │ └── style.css ├── html │ └── index.html └── js │ ├── api.js │ ├── chart.js │ ├── dropdown.js │ ├── time.js │ └── wallet.js ├── C# Project └── HealthEase-System Project │ └── HealthEase-System-main │ ├── Assets │ └── Images │ │ ├── Customer-Section.png │ │ ├── Dashboard-Panel.png │ │ ├── Manufacturer-Details.png │ │ ├── Medicine-Cell.png │ │ └── Seller.png │ ├── HealthEaseSystem │ ├── .vs │ │ └── PharmacyManagementSystem │ │ │ ├── FileContentIndex │ │ │ ├── 0a065d25-2369-4fcc-be61-d5c05ef97cb7.vsidx │ │ │ ├── 4e26c48b-a467-4da8-b60f-483214a61de2.vsidx │ │ │ ├── 6906d2ae-0fe7-4d09-97dd-10c1dbbcdf6f.vsidx │ │ │ ├── 7fb0d17a-d1e8-46b5-8c13-b2675f5942cd.vsidx │ │ │ └── c1b51f79-179e-4b2c-9575-cd5584437f5d.vsidx │ │ │ └── v17 │ │ │ └── .suo │ ├── PharmacyManagementSystem.sln │ ├── PharmacyManagementSystem │ │ ├── .vs │ │ │ └── PharmacyManagementSystem.csproj.dtbcache.json │ │ ├── AdminLogin.Designer.cs │ │ ├── AdminLogin.cs │ │ ├── AdminLogin.resx │ │ ├── App.config │ │ ├── Customer.Designer.cs │ │ ├── Customer.cs │ │ ├── Customer.resx │ │ ├── Dashboard.Designer.cs │ │ ├── Dashboard.cs │ │ ├── Dashboard.resx │ │ ├── Login.Designer.cs │ │ ├── Login.cs │ │ ├── Login.resx │ │ ├── Manufacturer.Designer.cs │ │ ├── Manufacturer.cs │ │ ├── Manufacturer.resx │ │ ├── Medicines.Designer.cs │ │ ├── Medicines.cs │ │ ├── Medicines.resx │ │ ├── PharmacyManagementSystem.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Sellers.Designer.cs │ │ ├── Sellers.cs │ │ ├── Sellers.resx │ │ ├── Sellings.Designer.cs │ │ ├── Sellings.cs │ │ ├── Sellings.resx │ │ ├── StartingPage.Designer.cs │ │ ├── StartingPage.cs │ │ ├── StartingPage.resx │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── Bunifu.Dataviz.WinForms.dll │ │ │ │ ├── Bunifu.Dataviz.WinForms.xml │ │ │ │ ├── Bunifu.Licensing.dll │ │ │ │ ├── Bunifu.UI.WinForms.1.5.3.dll │ │ │ │ ├── Bunifu.UI.WinForms.1.5.3.xml │ │ │ │ ├── Bunifu.UI.WinForms.dll │ │ │ │ ├── Bunifu.UI.WinForms.xml │ │ │ │ ├── Bunifu.Utils.dll │ │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ │ ├── Guna.Charts.WinForms.xml │ │ │ │ ├── Guna.UI2.dll │ │ │ │ ├── PharmacyManagementSystem.exe │ │ │ │ ├── PharmacyManagementSystem.exe.config │ │ │ │ ├── PharmacyManagementSystem.pdb │ │ │ │ └── circle_progressbar.dll │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── PharmacyManagementSystem.AdminLogin.resources │ │ │ │ ├── PharmacyManagementSystem.Customer.resources │ │ │ │ ├── PharmacyManagementSystem.Dashboard.resources │ │ │ │ ├── PharmacyManagementSystem.Login.resources │ │ │ │ ├── PharmacyManagementSystem.Manufacturer.resources │ │ │ │ ├── PharmacyManagementSystem.Medicines.resources │ │ │ │ ├── PharmacyManagementSystem.Properties.Resources.resources │ │ │ │ ├── PharmacyManagementSystem.Sellers.resources │ │ │ │ ├── PharmacyManagementSystem.Sellings.resources │ │ │ │ ├── PharmacyManagementSystem.StartingPage.resources │ │ │ │ ├── PharmacyManagementSystem.csproj.AssemblyReference.cache │ │ │ │ ├── PharmacyManagementSystem.csproj.CopyComplete │ │ │ │ ├── PharmacyManagementSystem.csproj.CoreCompileInputs.cache │ │ │ │ ├── PharmacyManagementSystem.csproj.FileListAbsolute.txt │ │ │ │ ├── PharmacyManagementSystem.csproj.GenerateResource.cache │ │ │ │ ├── PharmacyManagementSystem.exe │ │ │ │ └── PharmacyManagementSystem.pdb │ │ └── packages.config │ └── packages │ │ ├── Bunifu.Dataviz.WinForms.2.2.1 │ │ ├── .signature.p7s │ │ ├── Bunifu.Dataviz.WinForms.2.2.1.nupkg │ │ └── lib │ │ │ ├── Assets │ │ │ ├── CHANGELOG.txt │ │ │ ├── Icon.png │ │ │ └── LICENSE.txt │ │ │ ├── Bunifu.Dataviz.WinForms.dll │ │ │ ├── Bunifu.Dataviz.WinForms.xml │ │ │ └── Bunifu.Licensing.dll │ │ ├── Bunifu.UI.WinForms.1.5.3.2.0.0 │ │ ├── .signature.p7s │ │ ├── Bunifu.UI.WinForms.1.5.3.2.0.0.nupkg │ │ ├── Icon.png │ │ └── lib │ │ │ └── net452 │ │ │ ├── Bunifu.UI.WinForms.1.5.3.dll │ │ │ └── Bunifu.UI.WinForms.1.5.3.xml │ │ ├── Bunifu.UI.WinForms.6.3.0 │ │ ├── .signature.p7s │ │ ├── Bunifu.UI.WinForms.6.3.0.nupkg │ │ ├── Icon.png │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── lib │ │ │ └── net452 │ │ │ ├── Bunifu.Licensing.dll │ │ │ ├── Bunifu.UI.WinForms.dll │ │ │ └── Bunifu.UI.WinForms.xml │ │ ├── Bunifu.Utils.1.0.5 │ │ ├── .signature.p7s │ │ ├── Bunifu.Utils.1.0.5.nupkg │ │ └── lib │ │ │ ├── Assets │ │ │ └── icon.png │ │ │ └── net45 │ │ │ └── Bunifu.Utils.dll │ │ ├── CircleProgressBar.1.0.1 │ │ ├── .signature.p7s │ │ ├── CircleProgressBar.1.0.1.nupkg │ │ └── lib │ │ │ └── circle_progressbar.dll │ │ ├── Guna.Charts.WinForms.1.0.9 │ │ ├── .signature.p7s │ │ ├── Guna.Charts.WinForms.1.0.9.nupkg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── icon.png │ │ └── lib │ │ │ ├── net40 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net45 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net461 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net472 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net48 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net6.0-windows7.0 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ ├── net7.0-windows7.0 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ │ └── netcoreapp3.1 │ │ │ ├── Guna.Charts.WinForms.dll │ │ │ └── Guna.Charts.WinForms.xml │ │ └── Guna.UI2.WinForms.2.0.4.6 │ │ ├── .signature.p7s │ │ ├── Guna.UI2.WinForms.2.0.4.6.nupkg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── icon.png │ │ └── lib │ │ ├── net40 │ │ └── Guna.UI2.dll │ │ ├── net45 │ │ └── Guna.UI2.dll │ │ ├── net461 │ │ └── Guna.UI2.dll │ │ ├── net472 │ │ └── Guna.UI2.dll │ │ ├── net48 │ │ └── Guna.UI2.dll │ │ ├── net6.0-windows7.0 │ │ └── Guna.UI2.dll │ │ ├── net7.0-windows7.0 │ │ └── Guna.UI2.dll │ │ └── netcoreapp3.1 │ │ └── Guna.UI2.dll │ └── README.md ├── C++_Problems ├── 2ndMax.c++ ├── 2ndMin.c++ ├── Book_Allocation.cpp ├── BuubleSort.c++ ├── InsertionSort.c++ ├── MaxMinArray.c++ ├── MergeSort.cpp ├── Moore_voting_algo.cpp ├── Remove Duplicates from Sorted Array.cpp ├── ReverseArray.c++ ├── SelectionSort.c++ ├── Ternary_search.cpp ├── TwoSum.c++ ├── a.exe ├── binarySearch.c++ ├── linearSearch.c++ └── quick_sort.cpp ├── CALCULATORGUI.PY ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CircleAreaCalculator.java ├── ContainerWithMostWater.java ├── CrossPix ├── .DS_Store ├── README.md ├── css │ ├── picross.css │ └── reset.css ├── images │ └── rainbow.gif ├── index.html └── js │ ├── backbone.js │ ├── jquery-1.8.3.js │ ├── picross.js │ ├── seedrandom.js │ └── underscore.js ├── Dijkstra_Implementation └── SourceCode.cpp ├── Encrypt_Decrypt_Text └── encryption_decryption.py ├── FileSizeConverter.java ├── Flashcard_Quiz.py ├── GraphAlgorithms ├── README.md ├── a_star.cpp ├── a_star.exe ├── bellman_ford.cpp ├── bellman_ford.exe ├── bfs.cpp ├── bfs.exe ├── dfs.cpp ├── dfs.exe ├── dijkstra.cpp ├── dijkstra.exe ├── floyd_warshall.cpp ├── floyd_warshall.exe ├── kruskal.cpp ├── kruskal.exe ├── prims.cpp └── prims.exe ├── Habbit tracker └── Habbit_tracker.py ├── Hangman.py ├── HeapSort.java ├── Java └── MedianOfTwoSortedArrays.java ├── LEETCODE PROBLEM 200.md ├── Medianof2sortedArrays.py ├── Multiply Two Floating-Point Numbers ├── Password_Generator.py ├── Password_Generator ├── Password_Generator.py └── README.md ├── Python Program to Calculate the Area of a Triangle ├── QUEUE ├── DEQUE.cpp ├── Deque.png ├── Priority Queue.png ├── Priority_Queue.cpp ├── Using Array.png ├── Using Linked List.png ├── using_array.cpp └── using_linkedlist.cpp ├── README.md ├── Rajasthan Chatbot ├── chatbot3.ipynb └── dataset3.json ├── Real-Time Stock Price Tracker Using Binary Search Trees.py ├── Rock-Paper-Scissors.py ├── STACK ├── Dynamicarray.png ├── Linkedlist.png ├── USING_ARRAY ├── USING_ARRAY.cpp ├── array.png ├── tempCodeRunnerFile.cpp ├── tempCodeRunnerFile.exe ├── using_DYN_array.cpp └── using_Linked_list.cpp ├── Segment.cpp ├── Story-adventure.py ├── SudokuSolver.java ├── Sum of nodes.java ├── SymmetricTree.py ├── TernarySearch.java ├── Text-To-Image-main ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── images │ │ └── bg.png │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ └── ImageGen.jsx │ ├── index.css │ └── index.js └── tailwind.config.js ├── Text_Compression.py ├── TicTacToe.py ├── Todo_list.py ├── University_Management_System ├── ums.cpp └── university.txt ├── WeatherApp_Python ├── .gitignore ├── __pycache__ │ └── app.cpython-312.pyc ├── app.py ├── requirements.txt ├── static │ ├── README.md │ ├── Untitled.png │ ├── app.py │ ├── hum_icon.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_5.png │ ├── img_6.png │ ├── img_cloud.png │ ├── img_prec.png │ ├── img_pres.png │ ├── index.html │ ├── min_temp.png │ ├── style.css │ ├── sunrise.png │ ├── sunset.png │ ├── temp_icon.png │ └── wind_icon.png ├── templates │ └── index.html └── venv │ ├── Lib │ └── site-packages │ │ ├── MarkupSafe-2.1.5.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── PyJWT-2.9.0.dist-info │ │ ├── AUTHORS.rst │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── blinker-1.8.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── blinker │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _utilities.cpython-312.pyc │ │ │ └── base.cpython-312.pyc │ │ ├── _utilities.py │ │ ├── base.py │ │ └── py.typed │ │ ├── certifi-2024.7.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ └── core.cpython-312.pyc │ │ ├── cacert.pem │ │ ├── core.py │ │ └── py.typed │ │ ├── charset_normalizer-3.3.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── charset_normalizer │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── api.cpython-312.pyc │ │ │ ├── cd.cpython-312.pyc │ │ │ ├── constant.cpython-312.pyc │ │ │ ├── legacy.cpython-312.pyc │ │ │ ├── md.cpython-312.pyc │ │ │ ├── models.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── version.cpython-312.pyc │ │ ├── api.py │ │ ├── cd.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── __main__.cpython-312.pyc │ │ ├── constant.py │ │ ├── legacy.py │ │ ├── md.cp312-win_amd64.pyd │ │ ├── md.py │ │ ├── md__mypyc.cp312-win_amd64.pyd │ │ ├── models.py │ │ ├── py.typed │ │ ├── utils.py │ │ └── version.py │ │ ├── click-8.1.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── click │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _compat.cpython-312.pyc │ │ │ ├── _termui_impl.cpython-312.pyc │ │ │ ├── _textwrap.cpython-312.pyc │ │ │ ├── _winconsole.cpython-312.pyc │ │ │ ├── core.cpython-312.pyc │ │ │ ├── decorators.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── formatting.cpython-312.pyc │ │ │ ├── globals.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── shell_completion.cpython-312.pyc │ │ │ ├── termui.cpython-312.pyc │ │ │ ├── testing.cpython-312.pyc │ │ │ ├── types.cpython-312.pyc │ │ │ └── utils.cpython-312.pyc │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── shell_completion.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ │ ├── colorama-0.4.6.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE.txt │ │ ├── colorama │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── ansi.cpython-312.pyc │ │ │ ├── ansitowin32.cpython-312.pyc │ │ │ ├── initialise.cpython-312.pyc │ │ │ ├── win32.cpython-312.pyc │ │ │ └── winterm.cpython-312.pyc │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── ansi_test.cpython-312.pyc │ │ │ │ ├── ansitowin32_test.cpython-312.pyc │ │ │ │ ├── initialise_test.cpython-312.pyc │ │ │ │ ├── isatty_test.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ └── winterm_test.cpython-312.pyc │ │ │ ├── ansi_test.py │ │ │ ├── ansitowin32_test.py │ │ │ ├── initialise_test.py │ │ │ ├── isatty_test.py │ │ │ ├── utils.py │ │ │ └── winterm_test.py │ │ ├── win32.py │ │ └── winterm.py │ │ ├── dotenv │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── cli.cpython-312.pyc │ │ │ ├── ipython.cpython-312.pyc │ │ │ ├── main.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── variables.cpython-312.pyc │ │ │ └── version.cpython-312.pyc │ │ ├── cli.py │ │ ├── ipython.py │ │ ├── main.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── variables.py │ │ └── version.py │ │ ├── flask-3.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── flask │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── app.cpython-312.pyc │ │ │ ├── blueprints.cpython-312.pyc │ │ │ ├── cli.cpython-312.pyc │ │ │ ├── config.cpython-312.pyc │ │ │ ├── ctx.cpython-312.pyc │ │ │ ├── debughelpers.cpython-312.pyc │ │ │ ├── globals.cpython-312.pyc │ │ │ ├── helpers.cpython-312.pyc │ │ │ ├── logging.cpython-312.pyc │ │ │ ├── sessions.cpython-312.pyc │ │ │ ├── signals.cpython-312.pyc │ │ │ ├── templating.cpython-312.pyc │ │ │ ├── testing.cpython-312.pyc │ │ │ ├── typing.cpython-312.pyc │ │ │ ├── views.cpython-312.pyc │ │ │ └── wrappers.cpython-312.pyc │ │ ├── app.py │ │ ├── blueprints.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── ctx.py │ │ ├── debughelpers.py │ │ ├── globals.py │ │ ├── helpers.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── provider.cpython-312.pyc │ │ │ │ └── tag.cpython-312.pyc │ │ │ ├── provider.py │ │ │ └── tag.py │ │ ├── logging.py │ │ ├── py.typed │ │ ├── sansio │ │ │ ├── README.md │ │ │ ├── __pycache__ │ │ │ │ ├── app.cpython-312.pyc │ │ │ │ ├── blueprints.cpython-312.pyc │ │ │ │ └── scaffold.cpython-312.pyc │ │ │ ├── app.py │ │ │ ├── blueprints.py │ │ │ └── scaffold.py │ │ ├── sessions.py │ │ ├── signals.py │ │ ├── templating.py │ │ ├── testing.py │ │ ├── typing.py │ │ ├── views.py │ │ └── wrappers.py │ │ ├── gunicorn-23.0.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── gunicorn │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── arbiter.cpython-312.pyc │ │ │ ├── config.cpython-312.pyc │ │ │ ├── debug.cpython-312.pyc │ │ │ ├── errors.cpython-312.pyc │ │ │ ├── glogging.cpython-312.pyc │ │ │ ├── pidfile.cpython-312.pyc │ │ │ ├── reloader.cpython-312.pyc │ │ │ ├── sock.cpython-312.pyc │ │ │ ├── systemd.cpython-312.pyc │ │ │ └── util.cpython-312.pyc │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── pasterapp.cpython-312.pyc │ │ │ │ └── wsgiapp.cpython-312.pyc │ │ │ ├── base.py │ │ │ ├── pasterapp.py │ │ │ └── wsgiapp.py │ │ ├── arbiter.py │ │ ├── config.py │ │ ├── debug.py │ │ ├── errors.py │ │ ├── glogging.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── body.cpython-312.pyc │ │ │ │ ├── errors.cpython-312.pyc │ │ │ │ ├── message.cpython-312.pyc │ │ │ │ ├── parser.cpython-312.pyc │ │ │ │ ├── unreader.cpython-312.pyc │ │ │ │ └── wsgi.cpython-312.pyc │ │ │ ├── body.py │ │ │ ├── errors.py │ │ │ ├── message.py │ │ │ ├── parser.py │ │ │ ├── unreader.py │ │ │ └── wsgi.py │ │ ├── instrument │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── statsd.cpython-312.pyc │ │ │ └── statsd.py │ │ ├── pidfile.py │ │ ├── reloader.py │ │ ├── sock.py │ │ ├── systemd.py │ │ ├── util.py │ │ └── workers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── base.cpython-312.pyc │ │ │ ├── base_async.cpython-312.pyc │ │ │ ├── geventlet.cpython-312.pyc │ │ │ ├── ggevent.cpython-312.pyc │ │ │ ├── gthread.cpython-312.pyc │ │ │ ├── gtornado.cpython-312.pyc │ │ │ ├── sync.cpython-312.pyc │ │ │ └── workertmp.cpython-312.pyc │ │ │ ├── base.py │ │ │ ├── base_async.py │ │ │ ├── geventlet.py │ │ │ ├── ggevent.py │ │ │ ├── gthread.py │ │ │ ├── gtornado.py │ │ │ ├── sync.py │ │ │ └── workertmp.py │ │ ├── idna-3.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ └── WHEEL │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── codec.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── core.cpython-312.pyc │ │ │ ├── idnadata.cpython-312.pyc │ │ │ ├── intranges.cpython-312.pyc │ │ │ ├── package_data.cpython-312.pyc │ │ │ └── uts46data.cpython-312.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ │ ├── itsdangerous-2.2.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── itsdangerous │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _json.cpython-312.pyc │ │ │ ├── encoding.cpython-312.pyc │ │ │ ├── exc.cpython-312.pyc │ │ │ ├── serializer.cpython-312.pyc │ │ │ ├── signer.cpython-312.pyc │ │ │ ├── timed.cpython-312.pyc │ │ │ └── url_safe.cpython-312.pyc │ │ ├── _json.py │ │ ├── encoding.py │ │ ├── exc.py │ │ ├── py.typed │ │ ├── serializer.py │ │ ├── signer.py │ │ ├── timed.py │ │ └── url_safe.py │ │ ├── jinja2-3.1.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── jinja2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _identifier.cpython-312.pyc │ │ │ ├── async_utils.cpython-312.pyc │ │ │ ├── bccache.cpython-312.pyc │ │ │ ├── compiler.cpython-312.pyc │ │ │ ├── constants.cpython-312.pyc │ │ │ ├── debug.cpython-312.pyc │ │ │ ├── defaults.cpython-312.pyc │ │ │ ├── environment.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── ext.cpython-312.pyc │ │ │ ├── filters.cpython-312.pyc │ │ │ ├── idtracking.cpython-312.pyc │ │ │ ├── lexer.cpython-312.pyc │ │ │ ├── loaders.cpython-312.pyc │ │ │ ├── meta.cpython-312.pyc │ │ │ ├── nativetypes.cpython-312.pyc │ │ │ ├── nodes.cpython-312.pyc │ │ │ ├── optimizer.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── runtime.cpython-312.pyc │ │ │ ├── sandbox.cpython-312.pyc │ │ │ ├── tests.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── visitor.cpython-312.pyc │ │ ├── _identifier.py │ │ ├── async_utils.py │ │ ├── bccache.py │ │ ├── compiler.py │ │ ├── constants.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── environment.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── idtracking.py │ │ ├── lexer.py │ │ ├── loaders.py │ │ ├── meta.py │ │ ├── nativetypes.py │ │ ├── nodes.py │ │ ├── optimizer.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── runtime.py │ │ ├── sandbox.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── visitor.py │ │ ├── jwt │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── algorithms.cpython-312.pyc │ │ │ ├── api_jwk.cpython-312.pyc │ │ │ ├── api_jws.cpython-312.pyc │ │ │ ├── api_jwt.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── help.cpython-312.pyc │ │ │ ├── jwk_set_cache.cpython-312.pyc │ │ │ ├── jwks_client.cpython-312.pyc │ │ │ ├── types.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── warnings.cpython-312.pyc │ │ ├── algorithms.py │ │ ├── api_jwk.py │ │ ├── api_jws.py │ │ ├── api_jwt.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── jwk_set_cache.py │ │ ├── jwks_client.py │ │ ├── py.typed │ │ ├── types.py │ │ ├── utils.py │ │ └── warnings.py │ │ ├── markupsafe │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── _native.cpython-312.pyc │ │ ├── _native.py │ │ ├── _speedups.c │ │ ├── _speedups.cp312-win_amd64.pyd │ │ ├── _speedups.pyi │ │ └── py.typed │ │ ├── packaging-24.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── LICENSE.APACHE │ │ ├── LICENSE.BSD │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── packaging │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _elffile.cpython-312.pyc │ │ │ ├── _manylinux.cpython-312.pyc │ │ │ ├── _musllinux.cpython-312.pyc │ │ │ ├── _parser.cpython-312.pyc │ │ │ ├── _structures.cpython-312.pyc │ │ │ ├── _tokenizer.cpython-312.pyc │ │ │ ├── markers.cpython-312.pyc │ │ │ ├── metadata.cpython-312.pyc │ │ │ ├── requirements.cpython-312.pyc │ │ │ ├── specifiers.cpython-312.pyc │ │ │ ├── tags.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── version.cpython-312.pyc │ │ ├── _elffile.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _parser.py │ │ ├── _structures.py │ │ ├── _tokenizer.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── py.typed │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pip-23.2.1.dist-info │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pip-runner__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ └── __pip-runner__.cpython-312.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── build_env.cpython-312.pyc │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ ├── configuration.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ ├── pyproject.cpython-312.pyc │ │ │ │ ├── self_outdated_check.cpython-312.pyc │ │ │ │ └── wheel_builder.cpython-312.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── autocompletion.cpython-312.pyc │ │ │ │ │ ├── base_command.cpython-312.pyc │ │ │ │ │ ├── cmdoptions.cpython-312.pyc │ │ │ │ │ ├── command_context.cpython-312.pyc │ │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ │ ├── main_parser.cpython-312.pyc │ │ │ │ │ ├── parser.cpython-312.pyc │ │ │ │ │ ├── progress_bars.cpython-312.pyc │ │ │ │ │ ├── req_command.cpython-312.pyc │ │ │ │ │ ├── spinners.cpython-312.pyc │ │ │ │ │ └── status_codes.cpython-312.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── progress_bars.py │ │ │ │ ├── req_command.py │ │ │ │ ├── spinners.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ │ ├── check.cpython-312.pyc │ │ │ │ │ ├── completion.cpython-312.pyc │ │ │ │ │ ├── configuration.cpython-312.pyc │ │ │ │ │ ├── debug.cpython-312.pyc │ │ │ │ │ ├── download.cpython-312.pyc │ │ │ │ │ ├── freeze.cpython-312.pyc │ │ │ │ │ ├── hash.cpython-312.pyc │ │ │ │ │ ├── help.cpython-312.pyc │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── inspect.cpython-312.pyc │ │ │ │ │ ├── install.cpython-312.pyc │ │ │ │ │ ├── list.cpython-312.pyc │ │ │ │ │ ├── search.cpython-312.pyc │ │ │ │ │ ├── show.cpython-312.pyc │ │ │ │ │ ├── uninstall.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── index.py │ │ │ │ ├── inspect.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ │ ├── installed.cpython-312.pyc │ │ │ │ │ ├── sdist.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── collector.cpython-312.pyc │ │ │ │ │ ├── package_finder.cpython-312.pyc │ │ │ │ │ └── sources.cpython-312.pyc │ │ │ │ ├── collector.py │ │ │ │ ├── package_finder.py │ │ │ │ └── sources.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _distutils.cpython-312.pyc │ │ │ │ │ ├── _sysconfig.cpython-312.pyc │ │ │ │ │ └── base.cpython-312.pyc │ │ │ │ ├── _distutils.py │ │ │ │ ├── _sysconfig.py │ │ │ │ └── base.py │ │ │ ├── main.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _json.cpython-312.pyc │ │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ │ └── pkg_resources.cpython-312.pyc │ │ │ │ ├── _json.py │ │ │ │ ├── base.py │ │ │ │ ├── importlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── _compat.cpython-312.pyc │ │ │ │ │ │ ├── _dists.cpython-312.pyc │ │ │ │ │ │ └── _envs.cpython-312.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _dists.py │ │ │ │ │ └── _envs.py │ │ │ │ └── pkg_resources.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── candidate.cpython-312.pyc │ │ │ │ │ ├── direct_url.cpython-312.pyc │ │ │ │ │ ├── format_control.cpython-312.pyc │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── installation_report.cpython-312.pyc │ │ │ │ │ ├── link.cpython-312.pyc │ │ │ │ │ ├── scheme.cpython-312.pyc │ │ │ │ │ ├── search_scope.cpython-312.pyc │ │ │ │ │ ├── selection_prefs.cpython-312.pyc │ │ │ │ │ ├── target_python.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── direct_url.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── installation_report.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ │ ├── download.cpython-312.pyc │ │ │ │ │ ├── lazy_wheel.cpython-312.pyc │ │ │ │ │ ├── session.cpython-312.pyc │ │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ │ └── xmlrpc.cpython-312.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── check.cpython-312.pyc │ │ │ │ │ ├── freeze.cpython-312.pyc │ │ │ │ │ └── prepare.cpython-312.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── build_tracker.cpython-312.pyc │ │ │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ │ │ ├── metadata_editable.cpython-312.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-312.pyc │ │ │ │ │ │ ├── wheel.cpython-312.pyc │ │ │ │ │ │ ├── wheel_editable.cpython-312.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-312.pyc │ │ │ │ │ ├── build_tracker.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_editable.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ ├── wheel_editable.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-312.pyc │ │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── constructors.cpython-312.pyc │ │ │ │ │ ├── req_file.cpython-312.pyc │ │ │ │ │ ├── req_install.cpython-312.pyc │ │ │ │ │ ├── req_set.cpython-312.pyc │ │ │ │ │ └── req_uninstall.cpython-312.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── base.cpython-312.pyc │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── resolver.cpython-312.pyc │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ │ ├── candidates.cpython-312.pyc │ │ │ │ │ ├── factory.cpython-312.pyc │ │ │ │ │ ├── found_candidates.cpython-312.pyc │ │ │ │ │ ├── provider.cpython-312.pyc │ │ │ │ │ ├── reporter.cpython-312.pyc │ │ │ │ │ ├── requirements.cpython-312.pyc │ │ │ │ │ └── resolver.cpython-312.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── reporter.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _jaraco_text.cpython-312.pyc │ │ │ │ │ ├── _log.cpython-312.pyc │ │ │ │ │ ├── appdirs.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── compatibility_tags.cpython-312.pyc │ │ │ │ │ ├── datetime.cpython-312.pyc │ │ │ │ │ ├── deprecation.cpython-312.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-312.pyc │ │ │ │ │ ├── egg_link.cpython-312.pyc │ │ │ │ │ ├── encoding.cpython-312.pyc │ │ │ │ │ ├── entrypoints.cpython-312.pyc │ │ │ │ │ ├── filesystem.cpython-312.pyc │ │ │ │ │ ├── filetypes.cpython-312.pyc │ │ │ │ │ ├── glibc.cpython-312.pyc │ │ │ │ │ ├── hashes.cpython-312.pyc │ │ │ │ │ ├── inject_securetransport.cpython-312.pyc │ │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ │ ├── misc.cpython-312.pyc │ │ │ │ │ ├── models.cpython-312.pyc │ │ │ │ │ ├── packaging.cpython-312.pyc │ │ │ │ │ ├── setuptools_build.cpython-312.pyc │ │ │ │ │ ├── subprocess.cpython-312.pyc │ │ │ │ │ ├── temp_dir.cpython-312.pyc │ │ │ │ │ ├── unpacking.cpython-312.pyc │ │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ │ ├── virtualenv.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── _jaraco_text.py │ │ │ │ ├── _log.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── compatibility_tags.py │ │ │ │ ├── datetime.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── direct_url_helpers.py │ │ │ │ ├── egg_link.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── bazaar.cpython-312.pyc │ │ │ │ │ ├── git.cpython-312.pyc │ │ │ │ │ ├── mercurial.cpython-312.pyc │ │ │ │ │ ├── subversion.cpython-312.pyc │ │ │ │ │ └── versioncontrol.cpython-312.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── six.cpython-312.pyc │ │ │ │ └── typing_extensions.cpython-312.pyc │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _cmd.cpython-312.pyc │ │ │ │ │ ├── adapter.cpython-312.pyc │ │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── controller.cpython-312.pyc │ │ │ │ │ ├── filewrapper.cpython-312.pyc │ │ │ │ │ ├── heuristics.cpython-312.pyc │ │ │ │ │ ├── serialize.cpython-312.pyc │ │ │ │ │ └── wrapper.cpython-312.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── file_cache.cpython-312.pyc │ │ │ │ │ │ └── redis_cache.cpython-312.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ └── core.cpython-312.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── big5freq.cpython-312.pyc │ │ │ │ │ ├── big5prober.cpython-312.pyc │ │ │ │ │ ├── chardistribution.cpython-312.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-312.pyc │ │ │ │ │ ├── charsetprober.cpython-312.pyc │ │ │ │ │ ├── codingstatemachine.cpython-312.pyc │ │ │ │ │ ├── codingstatemachinedict.cpython-312.pyc │ │ │ │ │ ├── cp949prober.cpython-312.pyc │ │ │ │ │ ├── enums.cpython-312.pyc │ │ │ │ │ ├── escprober.cpython-312.pyc │ │ │ │ │ ├── escsm.cpython-312.pyc │ │ │ │ │ ├── eucjpprober.cpython-312.pyc │ │ │ │ │ ├── euckrfreq.cpython-312.pyc │ │ │ │ │ ├── euckrprober.cpython-312.pyc │ │ │ │ │ ├── euctwfreq.cpython-312.pyc │ │ │ │ │ ├── euctwprober.cpython-312.pyc │ │ │ │ │ ├── gb2312freq.cpython-312.pyc │ │ │ │ │ ├── gb2312prober.cpython-312.pyc │ │ │ │ │ ├── hebrewprober.cpython-312.pyc │ │ │ │ │ ├── jisfreq.cpython-312.pyc │ │ │ │ │ ├── johabfreq.cpython-312.pyc │ │ │ │ │ ├── johabprober.cpython-312.pyc │ │ │ │ │ ├── jpcntx.cpython-312.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-312.pyc │ │ │ │ │ ├── langgreekmodel.cpython-312.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-312.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-312.pyc │ │ │ │ │ ├── langrussianmodel.cpython-312.pyc │ │ │ │ │ ├── langthaimodel.cpython-312.pyc │ │ │ │ │ ├── langturkishmodel.cpython-312.pyc │ │ │ │ │ ├── latin1prober.cpython-312.pyc │ │ │ │ │ ├── macromanprober.cpython-312.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-312.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-312.pyc │ │ │ │ │ ├── mbcssm.cpython-312.pyc │ │ │ │ │ ├── resultdict.cpython-312.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-312.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-312.pyc │ │ │ │ │ ├── sjisprober.cpython-312.pyc │ │ │ │ │ ├── universaldetector.cpython-312.pyc │ │ │ │ │ ├── utf1632prober.cpython-312.pyc │ │ │ │ │ ├── utf8prober.cpython-312.pyc │ │ │ │ │ └── version.cpython-312.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── chardetect.cpython-312.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── codingstatemachinedict.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── johabfreq.py │ │ │ │ ├── johabprober.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langrussianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── macromanprober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── languages.cpython-312.pyc │ │ │ │ │ └── languages.py │ │ │ │ ├── resultdict.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf1632prober.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── ansi.cpython-312.pyc │ │ │ │ │ ├── ansitowin32.cpython-312.pyc │ │ │ │ │ ├── initialise.cpython-312.pyc │ │ │ │ │ ├── win32.cpython-312.pyc │ │ │ │ │ └── winterm.cpython-312.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── ansi_test.cpython-312.pyc │ │ │ │ │ │ ├── ansitowin32_test.cpython-312.pyc │ │ │ │ │ │ ├── initialise_test.cpython-312.pyc │ │ │ │ │ │ ├── isatty_test.cpython-312.pyc │ │ │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ │ │ └── winterm_test.cpython-312.pyc │ │ │ │ │ ├── ansi_test.py │ │ │ │ │ ├── ansitowin32_test.py │ │ │ │ │ ├── initialise_test.py │ │ │ │ │ ├── isatty_test.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── winterm_test.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── database.cpython-312.pyc │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── locators.cpython-312.pyc │ │ │ │ │ ├── manifest.cpython-312.pyc │ │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ │ ├── resources.cpython-312.pyc │ │ │ │ │ ├── scripts.cpython-312.pyc │ │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ │ ├── version.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64-arm.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64-arm.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ ├── distro │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ └── distro.cpython-312.pyc │ │ │ │ └── distro.py │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── codec.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ │ ├── idnadata.cpython-312.pyc │ │ │ │ │ ├── intranges.cpython-312.pyc │ │ │ │ │ ├── package_data.cpython-312.pyc │ │ │ │ │ └── uts46data.cpython-312.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ │ ├── ext.cpython-312.pyc │ │ │ │ │ └── fallback.cpython-312.pyc │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _manylinux.cpython-312.pyc │ │ │ │ │ ├── _musllinux.cpython-312.pyc │ │ │ │ │ ├── _structures.cpython-312.pyc │ │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ │ ├── requirements.cpython-312.pyc │ │ │ │ │ ├── specifiers.cpython-312.pyc │ │ │ │ │ ├── tags.cpython-312.pyc │ │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ │ └── version.cpython-312.pyc │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── platformdirs │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ ├── android.cpython-312.pyc │ │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ │ ├── macos.cpython-312.pyc │ │ │ │ │ ├── unix.cpython-312.pyc │ │ │ │ │ ├── version.cpython-312.pyc │ │ │ │ │ └── windows.cpython-312.pyc │ │ │ │ ├── android.py │ │ │ │ ├── api.py │ │ │ │ ├── macos.py │ │ │ │ ├── unix.py │ │ │ │ ├── version.py │ │ │ │ └── windows.py │ │ │ ├── pygments │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ ├── cmdline.cpython-312.pyc │ │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ │ ├── filter.cpython-312.pyc │ │ │ │ │ ├── formatter.cpython-312.pyc │ │ │ │ │ ├── lexer.cpython-312.pyc │ │ │ │ │ ├── modeline.cpython-312.pyc │ │ │ │ │ ├── plugin.cpython-312.pyc │ │ │ │ │ ├── regexopt.cpython-312.pyc │ │ │ │ │ ├── scanner.cpython-312.pyc │ │ │ │ │ ├── sphinxext.cpython-312.pyc │ │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ │ ├── token.cpython-312.pyc │ │ │ │ │ ├── unistring.cpython-312.pyc │ │ │ │ │ └── util.cpython-312.pyc │ │ │ │ ├── cmdline.py │ │ │ │ ├── console.py │ │ │ │ ├── filter.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── formatter.py │ │ │ │ ├── formatters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ │ │ ├── bbcode.cpython-312.pyc │ │ │ │ │ │ ├── groff.cpython-312.pyc │ │ │ │ │ │ ├── html.cpython-312.pyc │ │ │ │ │ │ ├── img.cpython-312.pyc │ │ │ │ │ │ ├── irc.cpython-312.pyc │ │ │ │ │ │ ├── latex.cpython-312.pyc │ │ │ │ │ │ ├── other.cpython-312.pyc │ │ │ │ │ │ ├── pangomarkup.cpython-312.pyc │ │ │ │ │ │ ├── rtf.cpython-312.pyc │ │ │ │ │ │ ├── svg.cpython-312.pyc │ │ │ │ │ │ ├── terminal.cpython-312.pyc │ │ │ │ │ │ └── terminal256.cpython-312.pyc │ │ │ │ │ ├── _mapping.py │ │ │ │ │ ├── bbcode.py │ │ │ │ │ ├── groff.py │ │ │ │ │ ├── html.py │ │ │ │ │ ├── img.py │ │ │ │ │ ├── irc.py │ │ │ │ │ ├── latex.py │ │ │ │ │ ├── other.py │ │ │ │ │ ├── pangomarkup.py │ │ │ │ │ ├── rtf.py │ │ │ │ │ ├── svg.py │ │ │ │ │ ├── terminal.py │ │ │ │ │ └── terminal256.py │ │ │ │ ├── lexer.py │ │ │ │ ├── lexers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ │ │ └── python.cpython-312.pyc │ │ │ │ │ ├── _mapping.py │ │ │ │ │ └── python.py │ │ │ │ ├── modeline.py │ │ │ │ ├── plugin.py │ │ │ │ ├── regexopt.py │ │ │ │ ├── scanner.py │ │ │ │ ├── sphinxext.py │ │ │ │ ├── style.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── token.py │ │ │ │ ├── unistring.py │ │ │ │ └── util.py │ │ │ ├── pyparsing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── actions.cpython-312.pyc │ │ │ │ │ ├── common.cpython-312.pyc │ │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ │ ├── helpers.cpython-312.pyc │ │ │ │ │ ├── results.cpython-312.pyc │ │ │ │ │ ├── testing.cpython-312.pyc │ │ │ │ │ ├── unicode.cpython-312.pyc │ │ │ │ │ └── util.cpython-312.pyc │ │ │ │ ├── actions.py │ │ │ │ ├── common.py │ │ │ │ ├── core.py │ │ │ │ ├── diagram │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── exceptions.py │ │ │ │ ├── helpers.py │ │ │ │ ├── results.py │ │ │ │ ├── testing.py │ │ │ │ ├── unicode.py │ │ │ │ └── util.py │ │ │ ├── pyproject_hooks │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _compat.cpython-312.pyc │ │ │ │ │ └── _impl.cpython-312.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _impl.py │ │ │ │ └── _in_process │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── _in_process.cpython-312.pyc │ │ │ │ │ └── _in_process.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __version__.cpython-312.pyc │ │ │ │ │ ├── _internal_utils.cpython-312.pyc │ │ │ │ │ ├── adapters.cpython-312.pyc │ │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ │ ├── certs.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── cookies.cpython-312.pyc │ │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ │ ├── help.cpython-312.pyc │ │ │ │ │ ├── hooks.cpython-312.pyc │ │ │ │ │ ├── models.cpython-312.pyc │ │ │ │ │ ├── packages.cpython-312.pyc │ │ │ │ │ ├── sessions.cpython-312.pyc │ │ │ │ │ ├── status_codes.cpython-312.pyc │ │ │ │ │ ├── structures.cpython-312.pyc │ │ │ │ │ └── utils.cpython-312.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── providers.cpython-312.pyc │ │ │ │ │ ├── reporters.cpython-312.pyc │ │ │ │ │ ├── resolvers.cpython-312.pyc │ │ │ │ │ └── structs.cpython-312.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── collections_abc.cpython-312.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ ├── rich │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ ├── _cell_widths.cpython-312.pyc │ │ │ │ │ ├── _emoji_codes.cpython-312.pyc │ │ │ │ │ ├── _emoji_replace.cpython-312.pyc │ │ │ │ │ ├── _export_format.cpython-312.pyc │ │ │ │ │ ├── _extension.cpython-312.pyc │ │ │ │ │ ├── _fileno.cpython-312.pyc │ │ │ │ │ ├── _inspect.cpython-312.pyc │ │ │ │ │ ├── _log_render.cpython-312.pyc │ │ │ │ │ ├── _loop.cpython-312.pyc │ │ │ │ │ ├── _null_file.cpython-312.pyc │ │ │ │ │ ├── _palettes.cpython-312.pyc │ │ │ │ │ ├── _pick.cpython-312.pyc │ │ │ │ │ ├── _ratio.cpython-312.pyc │ │ │ │ │ ├── _spinners.cpython-312.pyc │ │ │ │ │ ├── _stack.cpython-312.pyc │ │ │ │ │ ├── _timer.cpython-312.pyc │ │ │ │ │ ├── _win32_console.cpython-312.pyc │ │ │ │ │ ├── _windows.cpython-312.pyc │ │ │ │ │ ├── _windows_renderer.cpython-312.pyc │ │ │ │ │ ├── _wrap.cpython-312.pyc │ │ │ │ │ ├── abc.cpython-312.pyc │ │ │ │ │ ├── align.cpython-312.pyc │ │ │ │ │ ├── ansi.cpython-312.pyc │ │ │ │ │ ├── bar.cpython-312.pyc │ │ │ │ │ ├── box.cpython-312.pyc │ │ │ │ │ ├── cells.cpython-312.pyc │ │ │ │ │ ├── color.cpython-312.pyc │ │ │ │ │ ├── color_triplet.cpython-312.pyc │ │ │ │ │ ├── columns.cpython-312.pyc │ │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ │ ├── constrain.cpython-312.pyc │ │ │ │ │ ├── containers.cpython-312.pyc │ │ │ │ │ ├── control.cpython-312.pyc │ │ │ │ │ ├── default_styles.cpython-312.pyc │ │ │ │ │ ├── diagnose.cpython-312.pyc │ │ │ │ │ ├── emoji.cpython-312.pyc │ │ │ │ │ ├── errors.cpython-312.pyc │ │ │ │ │ ├── file_proxy.cpython-312.pyc │ │ │ │ │ ├── filesize.cpython-312.pyc │ │ │ │ │ ├── highlighter.cpython-312.pyc │ │ │ │ │ ├── json.cpython-312.pyc │ │ │ │ │ ├── jupyter.cpython-312.pyc │ │ │ │ │ ├── layout.cpython-312.pyc │ │ │ │ │ ├── live.cpython-312.pyc │ │ │ │ │ ├── live_render.cpython-312.pyc │ │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ │ ├── markup.cpython-312.pyc │ │ │ │ │ ├── measure.cpython-312.pyc │ │ │ │ │ ├── padding.cpython-312.pyc │ │ │ │ │ ├── pager.cpython-312.pyc │ │ │ │ │ ├── palette.cpython-312.pyc │ │ │ │ │ ├── panel.cpython-312.pyc │ │ │ │ │ ├── pretty.cpython-312.pyc │ │ │ │ │ ├── progress.cpython-312.pyc │ │ │ │ │ ├── progress_bar.cpython-312.pyc │ │ │ │ │ ├── prompt.cpython-312.pyc │ │ │ │ │ ├── protocol.cpython-312.pyc │ │ │ │ │ ├── region.cpython-312.pyc │ │ │ │ │ ├── repr.cpython-312.pyc │ │ │ │ │ ├── rule.cpython-312.pyc │ │ │ │ │ ├── scope.cpython-312.pyc │ │ │ │ │ ├── screen.cpython-312.pyc │ │ │ │ │ ├── segment.cpython-312.pyc │ │ │ │ │ ├── spinner.cpython-312.pyc │ │ │ │ │ ├── status.cpython-312.pyc │ │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ │ ├── styled.cpython-312.pyc │ │ │ │ │ ├── syntax.cpython-312.pyc │ │ │ │ │ ├── table.cpython-312.pyc │ │ │ │ │ ├── terminal_theme.cpython-312.pyc │ │ │ │ │ ├── text.cpython-312.pyc │ │ │ │ │ ├── theme.cpython-312.pyc │ │ │ │ │ ├── themes.cpython-312.pyc │ │ │ │ │ ├── traceback.cpython-312.pyc │ │ │ │ │ └── tree.cpython-312.pyc │ │ │ │ ├── _cell_widths.py │ │ │ │ ├── _emoji_codes.py │ │ │ │ ├── _emoji_replace.py │ │ │ │ ├── _export_format.py │ │ │ │ ├── _extension.py │ │ │ │ ├── _fileno.py │ │ │ │ ├── _inspect.py │ │ │ │ ├── _log_render.py │ │ │ │ ├── _loop.py │ │ │ │ ├── _null_file.py │ │ │ │ ├── _palettes.py │ │ │ │ ├── _pick.py │ │ │ │ ├── _ratio.py │ │ │ │ ├── _spinners.py │ │ │ │ ├── _stack.py │ │ │ │ ├── _timer.py │ │ │ │ ├── _win32_console.py │ │ │ │ ├── _windows.py │ │ │ │ ├── _windows_renderer.py │ │ │ │ ├── _wrap.py │ │ │ │ ├── abc.py │ │ │ │ ├── align.py │ │ │ │ ├── ansi.py │ │ │ │ ├── bar.py │ │ │ │ ├── box.py │ │ │ │ ├── cells.py │ │ │ │ ├── color.py │ │ │ │ ├── color_triplet.py │ │ │ │ ├── columns.py │ │ │ │ ├── console.py │ │ │ │ ├── constrain.py │ │ │ │ ├── containers.py │ │ │ │ ├── control.py │ │ │ │ ├── default_styles.py │ │ │ │ ├── diagnose.py │ │ │ │ ├── emoji.py │ │ │ │ ├── errors.py │ │ │ │ ├── file_proxy.py │ │ │ │ ├── filesize.py │ │ │ │ ├── highlighter.py │ │ │ │ ├── json.py │ │ │ │ ├── jupyter.py │ │ │ │ ├── layout.py │ │ │ │ ├── live.py │ │ │ │ ├── live_render.py │ │ │ │ ├── logging.py │ │ │ │ ├── markup.py │ │ │ │ ├── measure.py │ │ │ │ ├── padding.py │ │ │ │ ├── pager.py │ │ │ │ ├── palette.py │ │ │ │ ├── panel.py │ │ │ │ ├── pretty.py │ │ │ │ ├── progress.py │ │ │ │ ├── progress_bar.py │ │ │ │ ├── prompt.py │ │ │ │ ├── protocol.py │ │ │ │ ├── region.py │ │ │ │ ├── repr.py │ │ │ │ ├── rule.py │ │ │ │ ├── scope.py │ │ │ │ ├── screen.py │ │ │ │ ├── segment.py │ │ │ │ ├── spinner.py │ │ │ │ ├── status.py │ │ │ │ ├── style.py │ │ │ │ ├── styled.py │ │ │ │ ├── syntax.py │ │ │ │ ├── table.py │ │ │ │ ├── terminal_theme.py │ │ │ │ ├── text.py │ │ │ │ ├── theme.py │ │ │ │ ├── themes.py │ │ │ │ ├── traceback.py │ │ │ │ └── tree.py │ │ │ ├── six.py │ │ │ ├── tenacity │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _asyncio.cpython-312.pyc │ │ │ │ │ ├── _utils.cpython-312.pyc │ │ │ │ │ ├── after.cpython-312.pyc │ │ │ │ │ ├── before.cpython-312.pyc │ │ │ │ │ ├── before_sleep.cpython-312.pyc │ │ │ │ │ ├── nap.cpython-312.pyc │ │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ │ ├── stop.cpython-312.pyc │ │ │ │ │ ├── tornadoweb.cpython-312.pyc │ │ │ │ │ └── wait.cpython-312.pyc │ │ │ │ ├── _asyncio.py │ │ │ │ ├── _utils.py │ │ │ │ ├── after.py │ │ │ │ ├── before.py │ │ │ │ ├── before_sleep.py │ │ │ │ ├── nap.py │ │ │ │ ├── retry.py │ │ │ │ ├── stop.py │ │ │ │ ├── tornadoweb.py │ │ │ │ └── wait.py │ │ │ ├── tomli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ │ ├── _re.cpython-312.pyc │ │ │ │ │ └── _types.cpython-312.pyc │ │ │ │ ├── _parser.py │ │ │ │ ├── _re.py │ │ │ │ └── _types.py │ │ │ ├── typing_extensions.py │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _collections.cpython-312.pyc │ │ │ │ │ ├── _version.cpython-312.pyc │ │ │ │ │ ├── connection.cpython-312.pyc │ │ │ │ │ ├── connectionpool.cpython-312.pyc │ │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ │ ├── fields.cpython-312.pyc │ │ │ │ │ ├── filepost.cpython-312.pyc │ │ │ │ │ ├── poolmanager.cpython-312.pyc │ │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ │ └── response.cpython-312.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── _version.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-312.pyc │ │ │ │ │ │ ├── appengine.cpython-312.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-312.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-312.pyc │ │ │ │ │ │ ├── securetransport.cpython-312.pyc │ │ │ │ │ │ └── socks.cpython-312.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── bindings.cpython-312.pyc │ │ │ │ │ │ │ └── low_level.cpython-312.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── six.cpython-312.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── makefile.cpython-312.pyc │ │ │ │ │ │ │ └── weakref_finalize.cpython-312.pyc │ │ │ │ │ │ ├── makefile.py │ │ │ │ │ │ └── weakref_finalize.py │ │ │ │ │ └── six.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── connection.cpython-312.pyc │ │ │ │ │ ├── proxy.cpython-312.pyc │ │ │ │ │ ├── queue.cpython-312.pyc │ │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ │ ├── response.cpython-312.pyc │ │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ │ ├── ssl_.cpython-312.pyc │ │ │ │ │ ├── ssl_match_hostname.cpython-312.pyc │ │ │ │ │ ├── ssltransport.cpython-312.pyc │ │ │ │ │ ├── timeout.cpython-312.pyc │ │ │ │ │ ├── url.cpython-312.pyc │ │ │ │ │ └── wait.cpython-312.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ ├── vendor.txt │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── labels.cpython-312.pyc │ │ │ │ ├── mklabels.cpython-312.pyc │ │ │ │ ├── tests.cpython-312.pyc │ │ │ │ └── x_user_defined.cpython-312.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ └── py.typed │ │ ├── python_dotenv-1.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pytz-2024.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── pytz │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── lazy.cpython-312.pyc │ │ │ ├── reference.cpython-312.pyc │ │ │ ├── tzfile.cpython-312.pyc │ │ │ └── tzinfo.cpython-312.pyc │ │ ├── exceptions.py │ │ ├── lazy.py │ │ ├── reference.py │ │ ├── tzfile.py │ │ ├── tzinfo.py │ │ └── zoneinfo │ │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Ciudad_Juarez │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Nelson │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Nuuk │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Punta_Arenas │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Famagusta │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qostanay │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Astrakhan │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Kyiv │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Saratov │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Ulyanovsk │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ │ ├── Factory │ │ │ ├── GB │ │ │ ├── GB-Eire │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kanton │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ │ ├── Poland │ │ │ ├── Portugal │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ ├── Zulu │ │ │ ├── iso3166.tab │ │ │ ├── leapseconds │ │ │ ├── tzdata.zi │ │ │ ├── zone.tab │ │ │ ├── zone1970.tab │ │ │ └── zonenow.tab │ │ ├── requests-2.32.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __version__.cpython-312.pyc │ │ │ ├── _internal_utils.cpython-312.pyc │ │ │ ├── adapters.cpython-312.pyc │ │ │ ├── api.cpython-312.pyc │ │ │ ├── auth.cpython-312.pyc │ │ │ ├── certs.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── cookies.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── help.cpython-312.pyc │ │ │ ├── hooks.cpython-312.pyc │ │ │ ├── models.cpython-312.pyc │ │ │ ├── packages.cpython-312.pyc │ │ │ ├── sessions.cpython-312.pyc │ │ │ ├── status_codes.cpython-312.pyc │ │ │ ├── structures.cpython-312.pyc │ │ │ └── utils.cpython-312.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── twilio-7.16.0.dist-info │ │ ├── AUTHORS.md │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── twilio │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── request_validator.cpython-312.pyc │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── deserialize.cpython-312.pyc │ │ │ │ ├── domain.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── instance_context.cpython-312.pyc │ │ │ │ ├── instance_resource.cpython-312.pyc │ │ │ │ ├── list_resource.cpython-312.pyc │ │ │ │ ├── obsolete.cpython-312.pyc │ │ │ │ ├── page.cpython-312.pyc │ │ │ │ ├── serialize.cpython-312.pyc │ │ │ │ ├── values.cpython-312.pyc │ │ │ │ └── version.cpython-312.pyc │ │ │ ├── deserialize.py │ │ │ ├── domain.py │ │ │ ├── exceptions.py │ │ │ ├── instance_context.py │ │ │ ├── instance_resource.py │ │ │ ├── list_resource.py │ │ │ ├── obsolete.py │ │ │ ├── page.py │ │ │ ├── serialize.py │ │ │ ├── values.py │ │ │ └── version.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── http_client.cpython-312.pyc │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ ├── response.cpython-312.pyc │ │ │ │ └── validation_client.cpython-312.pyc │ │ │ ├── http_client.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── validation_client.py │ │ ├── jwt │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── access_token │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── grants.cpython-312.pyc │ │ │ │ └── grants.py │ │ │ ├── client │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── taskrouter │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── capabilities.cpython-312.pyc │ │ │ │ └── capabilities.py │ │ │ └── validation │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── request_validator.py │ │ ├── rest │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── auth_token_promotion.cpython-312.pyc │ │ │ │ │ └── secondary_auth_token.cpython-312.pyc │ │ │ │ │ ├── auth_token_promotion.py │ │ │ │ │ ├── credential │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── aws.cpython-312.pyc │ │ │ │ │ │ └── public_key.cpython-312.pyc │ │ │ │ │ ├── aws.py │ │ │ │ │ └── public_key.py │ │ │ │ │ └── secondary_auth_token.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v2010 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── account │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── application.cpython-312.pyc │ │ │ │ │ ├── authorized_connect_app.cpython-312.pyc │ │ │ │ │ ├── balance.cpython-312.pyc │ │ │ │ │ ├── connect_app.cpython-312.pyc │ │ │ │ │ ├── key.cpython-312.pyc │ │ │ │ │ ├── new_key.cpython-312.pyc │ │ │ │ │ ├── new_signing_key.cpython-312.pyc │ │ │ │ │ ├── notification.cpython-312.pyc │ │ │ │ │ ├── outgoing_caller_id.cpython-312.pyc │ │ │ │ │ ├── short_code.cpython-312.pyc │ │ │ │ │ ├── signing_key.cpython-312.pyc │ │ │ │ │ ├── token.cpython-312.pyc │ │ │ │ │ ├── transcription.cpython-312.pyc │ │ │ │ │ └── validation_request.cpython-312.pyc │ │ │ │ │ ├── address │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── dependent_phone_number.cpython-312.pyc │ │ │ │ │ └── dependent_phone_number.py │ │ │ │ │ ├── application.py │ │ │ │ │ ├── authorized_connect_app.py │ │ │ │ │ ├── available_phone_number │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── local.cpython-312.pyc │ │ │ │ │ │ ├── machine_to_machine.cpython-312.pyc │ │ │ │ │ │ ├── mobile.cpython-312.pyc │ │ │ │ │ │ ├── national.cpython-312.pyc │ │ │ │ │ │ ├── shared_cost.cpython-312.pyc │ │ │ │ │ │ ├── toll_free.cpython-312.pyc │ │ │ │ │ │ └── voip.cpython-312.pyc │ │ │ │ │ ├── local.py │ │ │ │ │ ├── machine_to_machine.py │ │ │ │ │ ├── mobile.py │ │ │ │ │ ├── national.py │ │ │ │ │ ├── shared_cost.py │ │ │ │ │ ├── toll_free.py │ │ │ │ │ └── voip.py │ │ │ │ │ ├── balance.py │ │ │ │ │ ├── call │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── event.cpython-312.pyc │ │ │ │ │ │ ├── feedback.cpython-312.pyc │ │ │ │ │ │ ├── feedback_summary.cpython-312.pyc │ │ │ │ │ │ ├── notification.cpython-312.pyc │ │ │ │ │ │ ├── payment.cpython-312.pyc │ │ │ │ │ │ ├── recording.cpython-312.pyc │ │ │ │ │ │ ├── siprec.cpython-312.pyc │ │ │ │ │ │ ├── stream.cpython-312.pyc │ │ │ │ │ │ ├── user_defined_message.cpython-312.pyc │ │ │ │ │ │ └── user_defined_message_subscription.cpython-312.pyc │ │ │ │ │ ├── event.py │ │ │ │ │ ├── feedback.py │ │ │ │ │ ├── feedback_summary.py │ │ │ │ │ ├── notification.py │ │ │ │ │ ├── payment.py │ │ │ │ │ ├── recording.py │ │ │ │ │ ├── siprec.py │ │ │ │ │ ├── stream.py │ │ │ │ │ ├── user_defined_message.py │ │ │ │ │ └── user_defined_message_subscription.py │ │ │ │ │ ├── conference │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── participant.cpython-312.pyc │ │ │ │ │ │ └── recording.cpython-312.pyc │ │ │ │ │ ├── participant.py │ │ │ │ │ └── recording.py │ │ │ │ │ ├── connect_app.py │ │ │ │ │ ├── incoming_phone_number │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── local.cpython-312.pyc │ │ │ │ │ │ ├── mobile.cpython-312.pyc │ │ │ │ │ │ └── toll_free.cpython-312.pyc │ │ │ │ │ ├── assigned_add_on │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── assigned_add_on_extension.cpython-312.pyc │ │ │ │ │ │ └── assigned_add_on_extension.py │ │ │ │ │ ├── local.py │ │ │ │ │ ├── mobile.py │ │ │ │ │ └── toll_free.py │ │ │ │ │ ├── key.py │ │ │ │ │ ├── message │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── feedback.cpython-312.pyc │ │ │ │ │ │ └── media.cpython-312.pyc │ │ │ │ │ ├── feedback.py │ │ │ │ │ └── media.py │ │ │ │ │ ├── new_key.py │ │ │ │ │ ├── new_signing_key.py │ │ │ │ │ ├── notification.py │ │ │ │ │ ├── outgoing_caller_id.py │ │ │ │ │ ├── queue │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── member.cpython-312.pyc │ │ │ │ │ └── member.py │ │ │ │ │ ├── recording │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── transcription.cpython-312.pyc │ │ │ │ │ ├── add_on_result │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ └── payload │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── transcription.py │ │ │ │ │ ├── short_code.py │ │ │ │ │ ├── signing_key.py │ │ │ │ │ ├── sip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── credential_list │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ │ └── credential.py │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── credential_list_mapping.cpython-312.pyc │ │ │ │ │ │ │ └── ip_access_control_list_mapping.cpython-312.pyc │ │ │ │ │ │ ├── auth_types │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── auth_calls_mapping │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ │ │ └── auth_calls_credential_list_mapping.cpython-312.pyc │ │ │ │ │ │ │ │ ├── auth_calls_credential_list_mapping.py │ │ │ │ │ │ │ │ └── auth_calls_ip_access_control_list_mapping.py │ │ │ │ │ │ │ └── auth_registrations_mapping │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ │ │ └── auth_registrations_credential_list_mapping.py │ │ │ │ │ │ ├── credential_list_mapping.py │ │ │ │ │ │ └── ip_access_control_list_mapping.py │ │ │ │ │ └── ip_access_control_list │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── ip_address.cpython-312.pyc │ │ │ │ │ │ └── ip_address.py │ │ │ │ │ ├── token.py │ │ │ │ │ ├── transcription.py │ │ │ │ │ ├── usage │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── trigger.cpython-312.pyc │ │ │ │ │ ├── record │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── all_time.cpython-312.pyc │ │ │ │ │ │ │ ├── daily.cpython-312.pyc │ │ │ │ │ │ │ ├── last_month.cpython-312.pyc │ │ │ │ │ │ │ ├── monthly.cpython-312.pyc │ │ │ │ │ │ │ ├── this_month.cpython-312.pyc │ │ │ │ │ │ │ ├── today.cpython-312.pyc │ │ │ │ │ │ │ ├── yearly.cpython-312.pyc │ │ │ │ │ │ │ └── yesterday.cpython-312.pyc │ │ │ │ │ │ ├── all_time.py │ │ │ │ │ │ ├── daily.py │ │ │ │ │ │ ├── last_month.py │ │ │ │ │ │ ├── monthly.py │ │ │ │ │ │ ├── this_month.py │ │ │ │ │ │ ├── today.py │ │ │ │ │ │ ├── yearly.py │ │ │ │ │ │ └── yesterday.py │ │ │ │ │ └── trigger.py │ │ │ │ │ └── validation_request.py │ │ │ ├── autopilot │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── restore_assistant.cpython-312.pyc │ │ │ │ │ ├── assistant │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── defaults.cpython-312.pyc │ │ │ │ │ │ ├── dialogue.cpython-312.pyc │ │ │ │ │ │ ├── model_build.cpython-312.pyc │ │ │ │ │ │ ├── query.cpython-312.pyc │ │ │ │ │ │ ├── style_sheet.cpython-312.pyc │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ ├── defaults.py │ │ │ │ │ ├── dialogue.py │ │ │ │ │ ├── field_type │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── field_value.cpython-312.pyc │ │ │ │ │ │ └── field_value.py │ │ │ │ │ ├── model_build.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── style_sheet.py │ │ │ │ │ ├── task │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── field.cpython-312.pyc │ │ │ │ │ │ │ ├── sample.cpython-312.pyc │ │ │ │ │ │ │ ├── task_actions.cpython-312.pyc │ │ │ │ │ │ │ └── task_statistics.cpython-312.pyc │ │ │ │ │ │ ├── field.py │ │ │ │ │ │ ├── sample.py │ │ │ │ │ │ ├── task_actions.py │ │ │ │ │ │ └── task_statistics.py │ │ │ │ │ └── webhook.py │ │ │ │ │ └── restore_assistant.py │ │ │ ├── bulkexports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── export_configuration.cpython-312.pyc │ │ │ │ │ ├── export │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── day.cpython-312.pyc │ │ │ │ │ │ ├── export_custom_job.cpython-312.pyc │ │ │ │ │ │ └── job.cpython-312.pyc │ │ │ │ │ ├── day.py │ │ │ │ │ ├── export_custom_job.py │ │ │ │ │ └── job.py │ │ │ │ │ └── export_configuration.py │ │ │ ├── chat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ ├── credential.py │ │ │ │ │ └── service │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── invite.cpython-312.pyc │ │ │ │ │ │ │ ├── member.cpython-312.pyc │ │ │ │ │ │ │ └── message.cpython-312.pyc │ │ │ │ │ │ ├── invite.py │ │ │ │ │ │ ├── member.py │ │ │ │ │ │ └── message.py │ │ │ │ │ │ ├── role.py │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── user_channel.cpython-312.pyc │ │ │ │ │ │ └── user_channel.py │ │ │ │ ├── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ ├── credential.py │ │ │ │ │ └── service │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── binding.cpython-312.pyc │ │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ │ ├── binding.py │ │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── invite.cpython-312.pyc │ │ │ │ │ │ │ ├── member.cpython-312.pyc │ │ │ │ │ │ │ ├── message.cpython-312.pyc │ │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ │ ├── invite.py │ │ │ │ │ │ ├── member.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ └── webhook.py │ │ │ │ │ │ ├── role.py │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── user_binding.cpython-312.pyc │ │ │ │ │ │ └── user_channel.cpython-312.pyc │ │ │ │ │ │ ├── user_binding.py │ │ │ │ │ │ └── user_channel.py │ │ │ │ └── v3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── channel.cpython-312.pyc │ │ │ │ │ └── channel.py │ │ │ ├── content │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── content │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── approval_fetch.cpython-312.pyc │ │ │ │ │ └── approval_fetch.py │ │ │ ├── conversations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── address_configuration.cpython-312.pyc │ │ │ │ │ ├── credential.cpython-312.pyc │ │ │ │ │ ├── participant_conversation.cpython-312.pyc │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ ├── address_configuration.py │ │ │ │ │ ├── configuration │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── conversation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── participant.cpython-312.pyc │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ ├── message │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── delivery_receipt.cpython-312.pyc │ │ │ │ │ │ └── delivery_receipt.py │ │ │ │ │ ├── participant.py │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── credential.py │ │ │ │ │ ├── participant_conversation.py │ │ │ │ │ ├── role.py │ │ │ │ │ ├── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── binding.cpython-312.pyc │ │ │ │ │ │ ├── participant_conversation.cpython-312.pyc │ │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ ├── binding.py │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── notification.cpython-312.pyc │ │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ │ ├── notification.py │ │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── conversation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── participant.cpython-312.pyc │ │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ │ └── delivery_receipt.cpython-312.pyc │ │ │ │ │ │ │ └── delivery_receipt.py │ │ │ │ │ │ ├── participant.py │ │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── participant_conversation.py │ │ │ │ │ ├── role.py │ │ │ │ │ └── user │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── user_conversation.cpython-312.pyc │ │ │ │ │ │ └── user_conversation.py │ │ │ │ │ └── user │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── user_conversation.cpython-312.pyc │ │ │ │ │ └── user_conversation.py │ │ │ ├── events │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── event_type.cpython-312.pyc │ │ │ │ │ ├── event_type.py │ │ │ │ │ ├── schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── version.cpython-312.pyc │ │ │ │ │ └── version.py │ │ │ │ │ ├── sink │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── sink_test.cpython-312.pyc │ │ │ │ │ │ └── sink_validate.cpython-312.pyc │ │ │ │ │ ├── sink_test.py │ │ │ │ │ └── sink_validate.py │ │ │ │ │ └── subscription │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── subscribed_event.cpython-312.pyc │ │ │ │ │ └── subscribed_event.py │ │ │ ├── flex_api │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── assessments.cpython-312.pyc │ │ │ │ │ │ ├── channel.cpython-312.pyc │ │ │ │ │ │ ├── configuration.cpython-312.pyc │ │ │ │ │ │ ├── flex_flow.cpython-312.pyc │ │ │ │ │ │ ├── good_data.cpython-312.pyc │ │ │ │ │ │ ├── user_roles.cpython-312.pyc │ │ │ │ │ │ └── web_channel.cpython-312.pyc │ │ │ │ │ ├── assessments.py │ │ │ │ │ ├── channel.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── flex_flow.py │ │ │ │ │ ├── good_data.py │ │ │ │ │ ├── interaction │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ └── interaction_channel │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── interaction_channel_invite.cpython-312.pyc │ │ │ │ │ │ │ └── interaction_channel_participant.cpython-312.pyc │ │ │ │ │ │ │ ├── interaction_channel_invite.py │ │ │ │ │ │ │ └── interaction_channel_participant.py │ │ │ │ │ ├── user_roles.py │ │ │ │ │ └── web_channel.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── web_channels.cpython-312.pyc │ │ │ │ │ └── web_channels.py │ │ │ ├── frontline_api │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── user.cpython-312.pyc │ │ │ │ │ └── user.py │ │ │ ├── insights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── call_summaries.cpython-312.pyc │ │ │ │ │ └── setting.cpython-312.pyc │ │ │ │ │ ├── call │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── annotation.cpython-312.pyc │ │ │ │ │ │ ├── event.cpython-312.pyc │ │ │ │ │ │ ├── metric.cpython-312.pyc │ │ │ │ │ │ └── summary.cpython-312.pyc │ │ │ │ │ ├── annotation.py │ │ │ │ │ ├── event.py │ │ │ │ │ ├── metric.py │ │ │ │ │ └── summary.py │ │ │ │ │ ├── call_summaries.py │ │ │ │ │ ├── conference │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── conference_participant.cpython-312.pyc │ │ │ │ │ └── conference_participant.py │ │ │ │ │ ├── room │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── participant.cpython-312.pyc │ │ │ │ │ └── participant.py │ │ │ │ │ └── setting.py │ │ │ ├── ip_messaging │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ ├── credential.py │ │ │ │ │ └── service │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── invite.cpython-312.pyc │ │ │ │ │ │ │ ├── member.cpython-312.pyc │ │ │ │ │ │ │ └── message.cpython-312.pyc │ │ │ │ │ │ ├── invite.py │ │ │ │ │ │ ├── member.py │ │ │ │ │ │ └── message.py │ │ │ │ │ │ ├── role.py │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── user_channel.cpython-312.pyc │ │ │ │ │ │ └── user_channel.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ ├── credential.py │ │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── binding.cpython-312.pyc │ │ │ │ │ └── role.cpython-312.pyc │ │ │ │ │ ├── binding.py │ │ │ │ │ ├── channel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── invite.cpython-312.pyc │ │ │ │ │ │ ├── member.cpython-312.pyc │ │ │ │ │ │ ├── message.cpython-312.pyc │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ ├── invite.py │ │ │ │ │ ├── member.py │ │ │ │ │ ├── message.py │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── role.py │ │ │ │ │ └── user │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── user_binding.cpython-312.pyc │ │ │ │ │ └── user_channel.cpython-312.pyc │ │ │ │ │ ├── user_binding.py │ │ │ │ │ └── user_channel.py │ │ │ ├── lookups │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── phone_number.cpython-312.pyc │ │ │ │ │ └── phone_number.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── phone_number.cpython-312.pyc │ │ │ │ │ └── phone_number.py │ │ │ ├── media │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── media_processor.cpython-312.pyc │ │ │ │ │ ├── media_processor.py │ │ │ │ │ ├── media_recording │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── player_streamer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── playback_grant.cpython-312.pyc │ │ │ │ │ └── playback_grant.py │ │ │ ├── messaging │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── deactivation.cpython-312.pyc │ │ │ │ │ ├── domain_cert.cpython-312.pyc │ │ │ │ │ ├── domain_config.cpython-312.pyc │ │ │ │ │ ├── external_campaign.cpython-312.pyc │ │ │ │ │ ├── tollfree_verification.cpython-312.pyc │ │ │ │ │ └── usecase.cpython-312.pyc │ │ │ │ │ ├── brand_registration │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── brand_vetting.cpython-312.pyc │ │ │ │ │ └── brand_vetting.py │ │ │ │ │ ├── deactivation.py │ │ │ │ │ ├── domain_cert.py │ │ │ │ │ ├── domain_config.py │ │ │ │ │ ├── external_campaign.py │ │ │ │ │ ├── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── alpha_sender.cpython-312.pyc │ │ │ │ │ │ ├── phone_number.cpython-312.pyc │ │ │ │ │ │ ├── short_code.cpython-312.pyc │ │ │ │ │ │ ├── us_app_to_person.cpython-312.pyc │ │ │ │ │ │ └── us_app_to_person_usecase.cpython-312.pyc │ │ │ │ │ ├── alpha_sender.py │ │ │ │ │ ├── phone_number.py │ │ │ │ │ ├── short_code.py │ │ │ │ │ ├── us_app_to_person.py │ │ │ │ │ └── us_app_to_person_usecase.py │ │ │ │ │ ├── tollfree_verification.py │ │ │ │ │ └── usecase.py │ │ │ ├── microvisor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── app.cpython-312.pyc │ │ │ │ │ ├── app.py │ │ │ │ │ └── device │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── monitor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── alert.cpython-312.pyc │ │ │ │ │ └── event.cpython-312.pyc │ │ │ │ │ ├── alert.py │ │ │ │ │ └── event.py │ │ │ ├── notify │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── credential.cpython-312.pyc │ │ │ │ │ ├── credential.py │ │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── binding.cpython-312.pyc │ │ │ │ │ └── notification.cpython-312.pyc │ │ │ │ │ ├── binding.py │ │ │ │ │ └── notification.py │ │ │ ├── numbers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── regulatory_compliance │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── end_user.cpython-312.pyc │ │ │ │ │ ├── end_user_type.cpython-312.pyc │ │ │ │ │ ├── regulation.cpython-312.pyc │ │ │ │ │ ├── supporting_document.cpython-312.pyc │ │ │ │ │ └── supporting_document_type.cpython-312.pyc │ │ │ │ │ ├── bundle │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── bundle_copy.cpython-312.pyc │ │ │ │ │ │ ├── evaluation.cpython-312.pyc │ │ │ │ │ │ ├── item_assignment.cpython-312.pyc │ │ │ │ │ │ └── replace_items.cpython-312.pyc │ │ │ │ │ ├── bundle_copy.py │ │ │ │ │ ├── evaluation.py │ │ │ │ │ ├── item_assignment.py │ │ │ │ │ └── replace_items.py │ │ │ │ │ ├── end_user.py │ │ │ │ │ ├── end_user_type.py │ │ │ │ │ ├── regulation.py │ │ │ │ │ ├── supporting_document.py │ │ │ │ │ └── supporting_document_type.py │ │ │ ├── oauth │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── device_code.cpython-312.pyc │ │ │ │ │ ├── oauth.cpython-312.pyc │ │ │ │ │ ├── openid_discovery.cpython-312.pyc │ │ │ │ │ ├── token.cpython-312.pyc │ │ │ │ │ └── user_info.cpython-312.pyc │ │ │ │ │ ├── device_code.py │ │ │ │ │ ├── oauth.py │ │ │ │ │ ├── openid_discovery.py │ │ │ │ │ ├── token.py │ │ │ │ │ └── user_info.py │ │ │ ├── preview │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── deployed_devices │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── fleet │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── certificate.cpython-312.pyc │ │ │ │ │ │ ├── deployment.cpython-312.pyc │ │ │ │ │ │ ├── device.cpython-312.pyc │ │ │ │ │ │ └── key.cpython-312.pyc │ │ │ │ │ │ ├── certificate.py │ │ │ │ │ │ ├── deployment.py │ │ │ │ │ │ ├── device.py │ │ │ │ │ │ └── key.py │ │ │ │ ├── hosted_numbers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── hosted_number_order.cpython-312.pyc │ │ │ │ │ ├── authorization_document │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── dependent_hosted_number_order.cpython-312.pyc │ │ │ │ │ │ └── dependent_hosted_number_order.py │ │ │ │ │ └── hosted_number_order.py │ │ │ │ ├── marketplace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── available_add_on │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── available_add_on_extension.cpython-312.pyc │ │ │ │ │ │ └── available_add_on_extension.py │ │ │ │ │ └── installed_add_on │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── installed_add_on_extension.cpython-312.pyc │ │ │ │ │ │ └── installed_add_on_extension.py │ │ │ │ ├── sync │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── service │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ ├── document │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── document_permission.cpython-312.pyc │ │ │ │ │ │ └── document_permission.py │ │ │ │ │ │ ├── sync_list │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── sync_list_item.cpython-312.pyc │ │ │ │ │ │ │ └── sync_list_permission.cpython-312.pyc │ │ │ │ │ │ ├── sync_list_item.py │ │ │ │ │ │ └── sync_list_permission.py │ │ │ │ │ │ └── sync_map │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── sync_map_item.cpython-312.pyc │ │ │ │ │ │ └── sync_map_permission.cpython-312.pyc │ │ │ │ │ │ ├── sync_map_item.py │ │ │ │ │ │ └── sync_map_permission.py │ │ │ │ ├── understand │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── assistant │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── assistant_fallback_actions.cpython-312.pyc │ │ │ │ │ │ ├── assistant_initiation_actions.cpython-312.pyc │ │ │ │ │ │ ├── dialogue.cpython-312.pyc │ │ │ │ │ │ ├── model_build.cpython-312.pyc │ │ │ │ │ │ ├── query.cpython-312.pyc │ │ │ │ │ │ └── style_sheet.cpython-312.pyc │ │ │ │ │ │ ├── assistant_fallback_actions.py │ │ │ │ │ │ ├── assistant_initiation_actions.py │ │ │ │ │ │ ├── dialogue.py │ │ │ │ │ │ ├── field_type │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── field_value.cpython-312.pyc │ │ │ │ │ │ └── field_value.py │ │ │ │ │ │ ├── model_build.py │ │ │ │ │ │ ├── query.py │ │ │ │ │ │ ├── style_sheet.py │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── field.cpython-312.pyc │ │ │ │ │ │ ├── sample.cpython-312.pyc │ │ │ │ │ │ ├── task_actions.cpython-312.pyc │ │ │ │ │ │ └── task_statistics.cpython-312.pyc │ │ │ │ │ │ ├── field.py │ │ │ │ │ │ ├── sample.py │ │ │ │ │ │ ├── task_actions.py │ │ │ │ │ │ └── task_statistics.py │ │ │ │ └── wireless │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── command.cpython-312.pyc │ │ │ │ │ └── rate_plan.cpython-312.pyc │ │ │ │ │ ├── command.py │ │ │ │ │ ├── rate_plan.py │ │ │ │ │ └── sim │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── usage.cpython-312.pyc │ │ │ │ │ └── usage.py │ │ │ ├── pricing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── messaging │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── country.cpython-312.pyc │ │ │ │ │ │ └── country.py │ │ │ │ │ ├── phone_number │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── country.cpython-312.pyc │ │ │ │ │ │ └── country.py │ │ │ │ │ └── voice │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── country.cpython-312.pyc │ │ │ │ │ │ └── number.cpython-312.pyc │ │ │ │ │ │ ├── country.py │ │ │ │ │ │ └── number.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── country.cpython-312.pyc │ │ │ │ │ └── number.cpython-312.pyc │ │ │ │ │ ├── country.py │ │ │ │ │ ├── number.py │ │ │ │ │ └── voice │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── country.cpython-312.pyc │ │ │ │ │ └── number.cpython-312.pyc │ │ │ │ │ ├── country.py │ │ │ │ │ └── number.py │ │ │ ├── proxy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── phone_number.cpython-312.pyc │ │ │ │ │ └── short_code.cpython-312.pyc │ │ │ │ │ ├── phone_number.py │ │ │ │ │ ├── session │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── interaction.cpython-312.pyc │ │ │ │ │ ├── interaction.py │ │ │ │ │ └── participant │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── message_interaction.cpython-312.pyc │ │ │ │ │ │ └── message_interaction.py │ │ │ │ │ └── short_code.py │ │ │ ├── routes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── phone_number.cpython-312.pyc │ │ │ │ │ ├── sip_domain.cpython-312.pyc │ │ │ │ │ └── trunk.cpython-312.pyc │ │ │ │ │ ├── phone_number.py │ │ │ │ │ ├── sip_domain.py │ │ │ │ │ └── trunk.py │ │ │ ├── serverless │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── asset │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── asset_version.cpython-312.pyc │ │ │ │ │ └── asset_version.py │ │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── build_status.cpython-312.pyc │ │ │ │ │ └── build_status.py │ │ │ │ │ ├── environment │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── deployment.cpython-312.pyc │ │ │ │ │ │ ├── log.cpython-312.pyc │ │ │ │ │ │ └── variable.cpython-312.pyc │ │ │ │ │ ├── deployment.py │ │ │ │ │ ├── log.py │ │ │ │ │ └── variable.py │ │ │ │ │ └── function │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── function_version │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── function_version_content.cpython-312.pyc │ │ │ │ │ └── function_version_content.py │ │ │ ├── studio │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── flow │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ │ ├── engagement │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── engagement_context.cpython-312.pyc │ │ │ │ │ │ ├── engagement_context.py │ │ │ │ │ │ └── step │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── step_context.cpython-312.pyc │ │ │ │ │ │ │ └── step_context.py │ │ │ │ │ │ └── execution │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── execution_context.cpython-312.pyc │ │ │ │ │ │ ├── execution_context.py │ │ │ │ │ │ └── execution_step │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── execution_step_context.cpython-312.pyc │ │ │ │ │ │ └── execution_step_context.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── flow_validate.cpython-312.pyc │ │ │ │ │ ├── flow │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── flow_revision.cpython-312.pyc │ │ │ │ │ │ └── test_user.cpython-312.pyc │ │ │ │ │ ├── execution │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── execution_context.cpython-312.pyc │ │ │ │ │ │ ├── execution_context.py │ │ │ │ │ │ └── execution_step │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── execution_step_context.cpython-312.pyc │ │ │ │ │ │ │ └── execution_step_context.py │ │ │ │ │ ├── flow_revision.py │ │ │ │ │ └── test_user.py │ │ │ │ │ └── flow_validate.py │ │ │ ├── supersim │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── esim_profile.cpython-312.pyc │ │ │ │ │ ├── fleet.cpython-312.pyc │ │ │ │ │ ├── ip_command.cpython-312.pyc │ │ │ │ │ ├── network.cpython-312.pyc │ │ │ │ │ ├── settings_update.cpython-312.pyc │ │ │ │ │ ├── sms_command.cpython-312.pyc │ │ │ │ │ └── usage_record.cpython-312.pyc │ │ │ │ │ ├── esim_profile.py │ │ │ │ │ ├── fleet.py │ │ │ │ │ ├── ip_command.py │ │ │ │ │ ├── network.py │ │ │ │ │ ├── network_access_profile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── network_access_profile_network.cpython-312.pyc │ │ │ │ │ └── network_access_profile_network.py │ │ │ │ │ ├── settings_update.py │ │ │ │ │ ├── sim │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── billing_period.cpython-312.pyc │ │ │ │ │ │ └── sim_ip_address.cpython-312.pyc │ │ │ │ │ ├── billing_period.py │ │ │ │ │ └── sim_ip_address.py │ │ │ │ │ ├── sms_command.py │ │ │ │ │ └── usage_record.py │ │ │ ├── sync │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── document │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── document_permission.cpython-312.pyc │ │ │ │ │ └── document_permission.py │ │ │ │ │ ├── sync_list │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── sync_list_item.cpython-312.pyc │ │ │ │ │ │ └── sync_list_permission.cpython-312.pyc │ │ │ │ │ ├── sync_list_item.py │ │ │ │ │ └── sync_list_permission.py │ │ │ │ │ ├── sync_map │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── sync_map_item.cpython-312.pyc │ │ │ │ │ │ └── sync_map_permission.cpython-312.pyc │ │ │ │ │ ├── sync_map_item.py │ │ │ │ │ └── sync_map_permission.py │ │ │ │ │ └── sync_stream │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── stream_message.cpython-312.pyc │ │ │ │ │ └── stream_message.py │ │ │ ├── taskrouter │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── workspace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── activity.cpython-312.pyc │ │ │ │ │ ├── event.cpython-312.pyc │ │ │ │ │ ├── task_channel.cpython-312.pyc │ │ │ │ │ ├── workspace_cumulative_statistics.cpython-312.pyc │ │ │ │ │ ├── workspace_real_time_statistics.cpython-312.pyc │ │ │ │ │ └── workspace_statistics.cpython-312.pyc │ │ │ │ │ ├── activity.py │ │ │ │ │ ├── event.py │ │ │ │ │ ├── task │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── reservation.cpython-312.pyc │ │ │ │ │ └── reservation.py │ │ │ │ │ ├── task_channel.py │ │ │ │ │ ├── task_queue │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── task_queue_cumulative_statistics.cpython-312.pyc │ │ │ │ │ │ ├── task_queue_real_time_statistics.cpython-312.pyc │ │ │ │ │ │ ├── task_queue_statistics.cpython-312.pyc │ │ │ │ │ │ └── task_queues_statistics.cpython-312.pyc │ │ │ │ │ ├── task_queue_cumulative_statistics.py │ │ │ │ │ ├── task_queue_real_time_statistics.py │ │ │ │ │ ├── task_queue_statistics.py │ │ │ │ │ └── task_queues_statistics.py │ │ │ │ │ ├── worker │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── reservation.cpython-312.pyc │ │ │ │ │ │ ├── worker_channel.cpython-312.pyc │ │ │ │ │ │ ├── worker_statistics.cpython-312.pyc │ │ │ │ │ │ ├── workers_cumulative_statistics.cpython-312.pyc │ │ │ │ │ │ ├── workers_real_time_statistics.cpython-312.pyc │ │ │ │ │ │ └── workers_statistics.cpython-312.pyc │ │ │ │ │ ├── reservation.py │ │ │ │ │ ├── worker_channel.py │ │ │ │ │ ├── worker_statistics.py │ │ │ │ │ ├── workers_cumulative_statistics.py │ │ │ │ │ ├── workers_real_time_statistics.py │ │ │ │ │ └── workers_statistics.py │ │ │ │ │ ├── workflow │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── workflow_cumulative_statistics.cpython-312.pyc │ │ │ │ │ │ ├── workflow_real_time_statistics.cpython-312.pyc │ │ │ │ │ │ └── workflow_statistics.cpython-312.pyc │ │ │ │ │ ├── workflow_cumulative_statistics.py │ │ │ │ │ ├── workflow_real_time_statistics.py │ │ │ │ │ └── workflow_statistics.py │ │ │ │ │ ├── workspace_cumulative_statistics.py │ │ │ │ │ ├── workspace_real_time_statistics.py │ │ │ │ │ └── workspace_statistics.py │ │ │ ├── trunking │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ └── trunk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── credential_list.cpython-312.pyc │ │ │ │ │ ├── ip_access_control_list.cpython-312.pyc │ │ │ │ │ ├── origination_url.cpython-312.pyc │ │ │ │ │ ├── phone_number.cpython-312.pyc │ │ │ │ │ └── recording.cpython-312.pyc │ │ │ │ │ ├── credential_list.py │ │ │ │ │ ├── ip_access_control_list.py │ │ │ │ │ ├── origination_url.py │ │ │ │ │ ├── phone_number.py │ │ │ │ │ └── recording.py │ │ │ ├── trusthub │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── end_user.cpython-312.pyc │ │ │ │ │ ├── end_user_type.cpython-312.pyc │ │ │ │ │ ├── policies.cpython-312.pyc │ │ │ │ │ ├── supporting_document.cpython-312.pyc │ │ │ │ │ └── supporting_document_type.cpython-312.pyc │ │ │ │ │ ├── customer_profiles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── customer_profiles_channel_endpoint_assignment.cpython-312.pyc │ │ │ │ │ │ ├── customer_profiles_entity_assignments.cpython-312.pyc │ │ │ │ │ │ └── customer_profiles_evaluations.cpython-312.pyc │ │ │ │ │ ├── customer_profiles_channel_endpoint_assignment.py │ │ │ │ │ ├── customer_profiles_entity_assignments.py │ │ │ │ │ └── customer_profiles_evaluations.py │ │ │ │ │ ├── end_user.py │ │ │ │ │ ├── end_user_type.py │ │ │ │ │ ├── policies.py │ │ │ │ │ ├── supporting_document.py │ │ │ │ │ ├── supporting_document_type.py │ │ │ │ │ └── trust_products │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── trust_products_channel_endpoint_assignment.cpython-312.pyc │ │ │ │ │ ├── trust_products_entity_assignments.cpython-312.pyc │ │ │ │ │ └── trust_products_evaluations.cpython-312.pyc │ │ │ │ │ ├── trust_products_channel_endpoint_assignment.py │ │ │ │ │ ├── trust_products_entity_assignments.py │ │ │ │ │ └── trust_products_evaluations.py │ │ │ ├── verify │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── form.cpython-312.pyc │ │ │ │ │ ├── safelist.cpython-312.pyc │ │ │ │ │ ├── template.cpython-312.pyc │ │ │ │ │ ├── verification_attempt.cpython-312.pyc │ │ │ │ │ └── verification_attempts_summary.cpython-312.pyc │ │ │ │ │ ├── form.py │ │ │ │ │ ├── safelist.py │ │ │ │ │ ├── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── access_token.cpython-312.pyc │ │ │ │ │ │ ├── messaging_configuration.cpython-312.pyc │ │ │ │ │ │ ├── verification.cpython-312.pyc │ │ │ │ │ │ ├── verification_check.cpython-312.pyc │ │ │ │ │ │ └── webhook.cpython-312.pyc │ │ │ │ │ ├── access_token.py │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ ├── factor.cpython-312.pyc │ │ │ │ │ │ │ └── new_factor.cpython-312.pyc │ │ │ │ │ │ ├── challenge │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ │ └── notification.cpython-312.pyc │ │ │ │ │ │ │ └── notification.py │ │ │ │ │ │ ├── factor.py │ │ │ │ │ │ └── new_factor.py │ │ │ │ │ ├── messaging_configuration.py │ │ │ │ │ ├── rate_limit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── bucket.cpython-312.pyc │ │ │ │ │ │ └── bucket.py │ │ │ │ │ ├── verification.py │ │ │ │ │ ├── verification_check.py │ │ │ │ │ └── webhook.py │ │ │ │ │ ├── template.py │ │ │ │ │ ├── verification_attempt.py │ │ │ │ │ └── verification_attempts_summary.py │ │ │ ├── video │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── composition_hook.cpython-312.pyc │ │ │ │ │ ├── composition_settings.cpython-312.pyc │ │ │ │ │ └── recording_settings.cpython-312.pyc │ │ │ │ │ ├── composition │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── composition_hook.py │ │ │ │ │ ├── composition_settings.py │ │ │ │ │ ├── recording │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── recording_settings.py │ │ │ │ │ └── room │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── room_recording_rule.cpython-312.pyc │ │ │ │ │ ├── recording │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ │ ├── room_participant │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── room_participant_anonymize.cpython-312.pyc │ │ │ │ │ │ ├── room_participant_published_track.cpython-312.pyc │ │ │ │ │ │ ├── room_participant_subscribe_rule.cpython-312.pyc │ │ │ │ │ │ └── room_participant_subscribed_track.cpython-312.pyc │ │ │ │ │ ├── room_participant_anonymize.py │ │ │ │ │ ├── room_participant_published_track.py │ │ │ │ │ ├── room_participant_subscribe_rule.py │ │ │ │ │ └── room_participant_subscribed_track.py │ │ │ │ │ └── room_recording_rule.py │ │ │ ├── voice │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── archived_call.cpython-312.pyc │ │ │ │ │ ├── byoc_trunk.cpython-312.pyc │ │ │ │ │ ├── ip_record.cpython-312.pyc │ │ │ │ │ └── source_ip_mapping.cpython-312.pyc │ │ │ │ │ ├── archived_call.py │ │ │ │ │ ├── byoc_trunk.py │ │ │ │ │ ├── connection_policy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ └── connection_policy_target.cpython-312.pyc │ │ │ │ │ └── connection_policy_target.py │ │ │ │ │ ├── dialing_permissions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── bulk_country_update.cpython-312.pyc │ │ │ │ │ │ └── settings.cpython-312.pyc │ │ │ │ │ ├── bulk_country_update.py │ │ │ │ │ ├── country │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ │ └── highrisk_special_prefix.cpython-312.pyc │ │ │ │ │ │ └── highrisk_special_prefix.py │ │ │ │ │ └── settings.py │ │ │ │ │ ├── ip_record.py │ │ │ │ │ └── source_ip_mapping.py │ │ │ └── wireless │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── command.cpython-312.pyc │ │ │ │ ├── rate_plan.cpython-312.pyc │ │ │ │ └── usage_record.cpython-312.pyc │ │ │ │ ├── command.py │ │ │ │ ├── rate_plan.py │ │ │ │ ├── sim │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── data_session.cpython-312.pyc │ │ │ │ │ └── usage_record.cpython-312.pyc │ │ │ │ ├── data_session.py │ │ │ │ └── usage_record.py │ │ │ │ └── usage_record.py │ │ └── twiml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── fax_response.cpython-312.pyc │ │ │ ├── messaging_response.cpython-312.pyc │ │ │ └── voice_response.cpython-312.pyc │ │ │ ├── fax_response.py │ │ │ ├── messaging_response.py │ │ │ └── voice_response.py │ │ ├── urllib3-2.2.2.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE.txt │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _base_connection.cpython-312.pyc │ │ │ ├── _collections.cpython-312.pyc │ │ │ ├── _request_methods.cpython-312.pyc │ │ │ ├── _version.cpython-312.pyc │ │ │ ├── connection.cpython-312.pyc │ │ │ ├── connectionpool.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── fields.cpython-312.pyc │ │ │ ├── filepost.cpython-312.pyc │ │ │ ├── http2.cpython-312.pyc │ │ │ ├── poolmanager.cpython-312.pyc │ │ │ └── response.cpython-312.pyc │ │ ├── _base_connection.py │ │ ├── _collections.py │ │ ├── _request_methods.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── pyopenssl.cpython-312.pyc │ │ │ │ └── socks.cpython-312.pyc │ │ │ ├── emscripten │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── connection.cpython-312.pyc │ │ │ │ │ ├── fetch.cpython-312.pyc │ │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ │ └── response.cpython-312.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── emscripten_fetch_worker.js │ │ │ │ ├── fetch.py │ │ │ │ ├── request.py │ │ │ │ └── response.py │ │ │ ├── pyopenssl.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── http2.py │ │ ├── poolmanager.py │ │ ├── py.typed │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── connection.cpython-312.pyc │ │ │ ├── proxy.cpython-312.pyc │ │ │ ├── request.cpython-312.pyc │ │ │ ├── response.cpython-312.pyc │ │ │ ├── retry.cpython-312.pyc │ │ │ ├── ssl_.cpython-312.pyc │ │ │ ├── ssl_match_hostname.cpython-312.pyc │ │ │ ├── ssltransport.cpython-312.pyc │ │ │ ├── timeout.cpython-312.pyc │ │ │ ├── url.cpython-312.pyc │ │ │ ├── util.cpython-312.pyc │ │ │ └── wait.cpython-312.pyc │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ ├── util.py │ │ │ └── wait.py │ │ ├── werkzeug-3.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ └── WHEEL │ │ └── werkzeug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── _internal.cpython-312.pyc │ │ ├── _reloader.cpython-312.pyc │ │ ├── exceptions.cpython-312.pyc │ │ ├── formparser.cpython-312.pyc │ │ ├── http.cpython-312.pyc │ │ ├── local.cpython-312.pyc │ │ ├── security.cpython-312.pyc │ │ ├── serving.cpython-312.pyc │ │ ├── test.cpython-312.pyc │ │ ├── testapp.cpython-312.pyc │ │ ├── urls.cpython-312.pyc │ │ ├── user_agent.cpython-312.pyc │ │ ├── utils.cpython-312.pyc │ │ └── wsgi.cpython-312.pyc │ │ ├── _internal.py │ │ ├── _reloader.py │ │ ├── datastructures │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── accept.cpython-312.pyc │ │ │ ├── auth.cpython-312.pyc │ │ │ ├── cache_control.cpython-312.pyc │ │ │ ├── csp.cpython-312.pyc │ │ │ ├── etag.cpython-312.pyc │ │ │ ├── file_storage.cpython-312.pyc │ │ │ ├── headers.cpython-312.pyc │ │ │ ├── mixins.cpython-312.pyc │ │ │ ├── range.cpython-312.pyc │ │ │ └── structures.cpython-312.pyc │ │ ├── accept.py │ │ ├── accept.pyi │ │ ├── auth.py │ │ ├── cache_control.py │ │ ├── cache_control.pyi │ │ ├── csp.py │ │ ├── csp.pyi │ │ ├── etag.py │ │ ├── etag.pyi │ │ ├── file_storage.py │ │ ├── file_storage.pyi │ │ ├── headers.py │ │ ├── headers.pyi │ │ ├── mixins.py │ │ ├── mixins.pyi │ │ ├── range.py │ │ ├── range.pyi │ │ ├── structures.py │ │ └── structures.pyi │ │ ├── debug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── console.cpython-312.pyc │ │ │ ├── repr.cpython-312.pyc │ │ │ └── tbtools.cpython-312.pyc │ │ ├── console.py │ │ ├── repr.py │ │ ├── shared │ │ │ ├── ICON_LICENSE.md │ │ │ ├── console.png │ │ │ ├── debugger.js │ │ │ ├── less.png │ │ │ ├── more.png │ │ │ └── style.css │ │ └── tbtools.py │ │ ├── exceptions.py │ │ ├── formparser.py │ │ ├── http.py │ │ ├── local.py │ │ ├── middleware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── dispatcher.cpython-312.pyc │ │ │ ├── http_proxy.cpython-312.pyc │ │ │ ├── lint.cpython-312.pyc │ │ │ ├── profiler.cpython-312.pyc │ │ │ ├── proxy_fix.cpython-312.pyc │ │ │ └── shared_data.cpython-312.pyc │ │ ├── dispatcher.py │ │ ├── http_proxy.py │ │ ├── lint.py │ │ ├── profiler.py │ │ ├── proxy_fix.py │ │ └── shared_data.py │ │ ├── py.typed │ │ ├── routing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── converters.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── map.cpython-312.pyc │ │ │ ├── matcher.cpython-312.pyc │ │ │ └── rules.cpython-312.pyc │ │ ├── converters.py │ │ ├── exceptions.py │ │ ├── map.py │ │ ├── matcher.py │ │ └── rules.py │ │ ├── sansio │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── http.cpython-312.pyc │ │ │ ├── multipart.cpython-312.pyc │ │ │ ├── request.cpython-312.pyc │ │ │ ├── response.cpython-312.pyc │ │ │ └── utils.cpython-312.pyc │ │ ├── http.py │ │ ├── multipart.py │ │ ├── request.py │ │ ├── response.py │ │ └── utils.py │ │ ├── security.py │ │ ├── serving.py │ │ ├── test.py │ │ ├── testapp.py │ │ ├── urls.py │ │ ├── user_agent.py │ │ ├── utils.py │ │ ├── wrappers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── request.cpython-312.pyc │ │ │ └── response.cpython-312.pyc │ │ ├── request.py │ │ └── response.py │ │ └── wsgi.py │ ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── deactivate.bat │ ├── dotenv.exe │ ├── flask.exe │ ├── gunicorn.exe │ ├── normalizer.exe │ ├── pip.exe │ ├── pip3.12.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── alarm_clock ├── alarm_clock.py ├── alarm_clock_ss.png └── alarm_sound.mp3 ├── armstrongNumber.c ├── caesar ├── README.md └── caesar.c ├── check_Palindrome.py ├── deque_implementation.cpp ├── dictionary web app ├── index.html ├── index.js └── style.css ├── donut.cpp ├── employeemanagement.py ├── gcd_methods.cpp ├── largestRowOrColumn.cpp ├── morse_code_decoder_encoder.py ├── n_queens_problem.rb ├── non_repating_word.js ├── pattern program.java ├── registerpage.py ├── snakewatergun.py └── trappingrainwater.cpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /3Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/3Sum.py -------------------------------------------------------------------------------- /BMI calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/BMI calculator -------------------------------------------------------------------------------- /BinarySearchRecursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/BinarySearchRecursion.c -------------------------------------------------------------------------------- /Bitcoin analyser/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/.DS_Store -------------------------------------------------------------------------------- /Bitcoin analyser/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/css/style.css -------------------------------------------------------------------------------- /Bitcoin analyser/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/html/index.html -------------------------------------------------------------------------------- /Bitcoin analyser/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/js/api.js -------------------------------------------------------------------------------- /Bitcoin analyser/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/js/chart.js -------------------------------------------------------------------------------- /Bitcoin analyser/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/js/dropdown.js -------------------------------------------------------------------------------- /Bitcoin analyser/js/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/js/time.js -------------------------------------------------------------------------------- /Bitcoin analyser/js/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Bitcoin analyser/js/wallet.js -------------------------------------------------------------------------------- /C# Project/HealthEase-System Project/HealthEase-System-main/HealthEaseSystem/PharmacyManagementSystem/obj/Debug/PharmacyManagementSystem.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++_Problems/2ndMax.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/2ndMax.c++ -------------------------------------------------------------------------------- /C++_Problems/2ndMin.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/2ndMin.c++ -------------------------------------------------------------------------------- /C++_Problems/Book_Allocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/Book_Allocation.cpp -------------------------------------------------------------------------------- /C++_Problems/BuubleSort.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/BuubleSort.c++ -------------------------------------------------------------------------------- /C++_Problems/InsertionSort.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/InsertionSort.c++ -------------------------------------------------------------------------------- /C++_Problems/MaxMinArray.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/MaxMinArray.c++ -------------------------------------------------------------------------------- /C++_Problems/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/MergeSort.cpp -------------------------------------------------------------------------------- /C++_Problems/Moore_voting_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/Moore_voting_algo.cpp -------------------------------------------------------------------------------- /C++_Problems/Remove Duplicates from Sorted Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/Remove Duplicates from Sorted Array.cpp -------------------------------------------------------------------------------- /C++_Problems/ReverseArray.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/ReverseArray.c++ -------------------------------------------------------------------------------- /C++_Problems/SelectionSort.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/SelectionSort.c++ -------------------------------------------------------------------------------- /C++_Problems/Ternary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/Ternary_search.cpp -------------------------------------------------------------------------------- /C++_Problems/TwoSum.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/TwoSum.c++ -------------------------------------------------------------------------------- /C++_Problems/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/a.exe -------------------------------------------------------------------------------- /C++_Problems/binarySearch.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/binarySearch.c++ -------------------------------------------------------------------------------- /C++_Problems/linearSearch.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/linearSearch.c++ -------------------------------------------------------------------------------- /C++_Problems/quick_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/C++_Problems/quick_sort.cpp -------------------------------------------------------------------------------- /CALCULATORGUI.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CALCULATORGUI.PY -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CircleAreaCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CircleAreaCalculator.java -------------------------------------------------------------------------------- /ContainerWithMostWater.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CrossPix/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/.DS_Store -------------------------------------------------------------------------------- /CrossPix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/README.md -------------------------------------------------------------------------------- /CrossPix/css/picross.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/css/picross.css -------------------------------------------------------------------------------- /CrossPix/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/css/reset.css -------------------------------------------------------------------------------- /CrossPix/images/rainbow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/images/rainbow.gif -------------------------------------------------------------------------------- /CrossPix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/index.html -------------------------------------------------------------------------------- /CrossPix/js/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/js/backbone.js -------------------------------------------------------------------------------- /CrossPix/js/jquery-1.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/js/jquery-1.8.3.js -------------------------------------------------------------------------------- /CrossPix/js/picross.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/js/picross.js -------------------------------------------------------------------------------- /CrossPix/js/seedrandom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/js/seedrandom.js -------------------------------------------------------------------------------- /CrossPix/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/CrossPix/js/underscore.js -------------------------------------------------------------------------------- /Dijkstra_Implementation/SourceCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Dijkstra_Implementation/SourceCode.cpp -------------------------------------------------------------------------------- /Encrypt_Decrypt_Text/encryption_decryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Encrypt_Decrypt_Text/encryption_decryption.py -------------------------------------------------------------------------------- /FileSizeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/FileSizeConverter.java -------------------------------------------------------------------------------- /Flashcard_Quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Flashcard_Quiz.py -------------------------------------------------------------------------------- /GraphAlgorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/README.md -------------------------------------------------------------------------------- /GraphAlgorithms/a_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/a_star.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/a_star.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/a_star.exe -------------------------------------------------------------------------------- /GraphAlgorithms/bellman_ford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/bellman_ford.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/bellman_ford.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/bellman_ford.exe -------------------------------------------------------------------------------- /GraphAlgorithms/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/bfs.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/bfs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/bfs.exe -------------------------------------------------------------------------------- /GraphAlgorithms/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/dfs.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/dfs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/dfs.exe -------------------------------------------------------------------------------- /GraphAlgorithms/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/dijkstra.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/dijkstra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/dijkstra.exe -------------------------------------------------------------------------------- /GraphAlgorithms/floyd_warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/floyd_warshall.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/floyd_warshall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/floyd_warshall.exe -------------------------------------------------------------------------------- /GraphAlgorithms/kruskal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/kruskal.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/kruskal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/kruskal.exe -------------------------------------------------------------------------------- /GraphAlgorithms/prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/prims.cpp -------------------------------------------------------------------------------- /GraphAlgorithms/prims.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/GraphAlgorithms/prims.exe -------------------------------------------------------------------------------- /Habbit tracker/Habbit_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Habbit tracker/Habbit_tracker.py -------------------------------------------------------------------------------- /Hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Hangman.py -------------------------------------------------------------------------------- /HeapSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/HeapSort.java -------------------------------------------------------------------------------- /Java/MedianOfTwoSortedArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Java/MedianOfTwoSortedArrays.java -------------------------------------------------------------------------------- /LEETCODE PROBLEM 200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/LEETCODE PROBLEM 200.md -------------------------------------------------------------------------------- /Medianof2sortedArrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Medianof2sortedArrays.py -------------------------------------------------------------------------------- /Multiply Two Floating-Point Numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Multiply Two Floating-Point Numbers -------------------------------------------------------------------------------- /Password_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Password_Generator.py -------------------------------------------------------------------------------- /Password_Generator/Password_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Password_Generator/Password_Generator.py -------------------------------------------------------------------------------- /Password_Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Password_Generator/README.md -------------------------------------------------------------------------------- /Python Program to Calculate the Area of a Triangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Python Program to Calculate the Area of a Triangle -------------------------------------------------------------------------------- /QUEUE/DEQUE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/DEQUE.cpp -------------------------------------------------------------------------------- /QUEUE/Deque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/Deque.png -------------------------------------------------------------------------------- /QUEUE/Priority Queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/Priority Queue.png -------------------------------------------------------------------------------- /QUEUE/Priority_Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/Priority_Queue.cpp -------------------------------------------------------------------------------- /QUEUE/Using Array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/Using Array.png -------------------------------------------------------------------------------- /QUEUE/Using Linked List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/Using Linked List.png -------------------------------------------------------------------------------- /QUEUE/using_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/using_array.cpp -------------------------------------------------------------------------------- /QUEUE/using_linkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/QUEUE/using_linkedlist.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/README.md -------------------------------------------------------------------------------- /Rajasthan Chatbot/chatbot3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Rajasthan Chatbot/chatbot3.ipynb -------------------------------------------------------------------------------- /Rajasthan Chatbot/dataset3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Rajasthan Chatbot/dataset3.json -------------------------------------------------------------------------------- /Real-Time Stock Price Tracker Using Binary Search Trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Real-Time Stock Price Tracker Using Binary Search Trees.py -------------------------------------------------------------------------------- /Rock-Paper-Scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Rock-Paper-Scissors.py -------------------------------------------------------------------------------- /STACK/Dynamicarray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/Dynamicarray.png -------------------------------------------------------------------------------- /STACK/Linkedlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/Linkedlist.png -------------------------------------------------------------------------------- /STACK/USING_ARRAY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/USING_ARRAY -------------------------------------------------------------------------------- /STACK/USING_ARRAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/USING_ARRAY.cpp -------------------------------------------------------------------------------- /STACK/array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/array.png -------------------------------------------------------------------------------- /STACK/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/tempCodeRunnerFile.cpp -------------------------------------------------------------------------------- /STACK/tempCodeRunnerFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/tempCodeRunnerFile.exe -------------------------------------------------------------------------------- /STACK/using_DYN_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/using_DYN_array.cpp -------------------------------------------------------------------------------- /STACK/using_Linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/STACK/using_Linked_list.cpp -------------------------------------------------------------------------------- /Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Segment.cpp -------------------------------------------------------------------------------- /Story-adventure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Story-adventure.py -------------------------------------------------------------------------------- /SudokuSolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/SudokuSolver.java -------------------------------------------------------------------------------- /Sum of nodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Sum of nodes.java -------------------------------------------------------------------------------- /SymmetricTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/SymmetricTree.py -------------------------------------------------------------------------------- /TernarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/TernarySearch.java -------------------------------------------------------------------------------- /Text-To-Image-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/.gitignore -------------------------------------------------------------------------------- /Text-To-Image-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/README.md -------------------------------------------------------------------------------- /Text-To-Image-main/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/package-lock.json -------------------------------------------------------------------------------- /Text-To-Image-main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/package.json -------------------------------------------------------------------------------- /Text-To-Image-main/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/public/favicon.png -------------------------------------------------------------------------------- /Text-To-Image-main/public/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/public/images/bg.png -------------------------------------------------------------------------------- /Text-To-Image-main/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/public/index.html -------------------------------------------------------------------------------- /Text-To-Image-main/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/public/manifest.json -------------------------------------------------------------------------------- /Text-To-Image-main/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/src/App.js -------------------------------------------------------------------------------- /Text-To-Image-main/src/components/ImageGen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/src/components/ImageGen.jsx -------------------------------------------------------------------------------- /Text-To-Image-main/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/src/index.css -------------------------------------------------------------------------------- /Text-To-Image-main/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/src/index.js -------------------------------------------------------------------------------- /Text-To-Image-main/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text-To-Image-main/tailwind.config.js -------------------------------------------------------------------------------- /Text_Compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Text_Compression.py -------------------------------------------------------------------------------- /TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/TicTacToe.py -------------------------------------------------------------------------------- /Todo_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/Todo_list.py -------------------------------------------------------------------------------- /University_Management_System/ums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/University_Management_System/ums.cpp -------------------------------------------------------------------------------- /University_Management_System/university.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/University_Management_System/university.txt -------------------------------------------------------------------------------- /WeatherApp_Python/.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | .env -------------------------------------------------------------------------------- /WeatherApp_Python/__pycache__/app.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/__pycache__/app.cpython-312.pyc -------------------------------------------------------------------------------- /WeatherApp_Python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/app.py -------------------------------------------------------------------------------- /WeatherApp_Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/requirements.txt -------------------------------------------------------------------------------- /WeatherApp_Python/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/README.md -------------------------------------------------------------------------------- /WeatherApp_Python/static/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/Untitled.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/app.py -------------------------------------------------------------------------------- /WeatherApp_Python/static/hum_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/hum_icon.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_1.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_2.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_3.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_5.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_6.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_cloud.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_prec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_prec.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/img_pres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/img_pres.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/index.html -------------------------------------------------------------------------------- /WeatherApp_Python/static/min_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/min_temp.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/style.css -------------------------------------------------------------------------------- /WeatherApp_Python/static/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/sunrise.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/sunset.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/temp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/temp_icon.png -------------------------------------------------------------------------------- /WeatherApp_Python/static/wind_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/static/wind_icon.png -------------------------------------------------------------------------------- /WeatherApp_Python/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/templates/index.html -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/MarkupSafe-2.1.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/MarkupSafe-2.1.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/PyJWT-2.9.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/PyJWT-2.9.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (72.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/PyJWT-2.9.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jwt 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker-1.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker-1.8.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/blinker/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker/_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/blinker/_utilities.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/blinker/base.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/blinker/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi-2024.7.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi-2024.7.4.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi-2024.7.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (70.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi-2024.7.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/certifi/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/certifi/core.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer-3.3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer-3.3.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer-3.3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/api.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/cd.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/md.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click-8.1.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click-8.1.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.41.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click-8.1.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/decorators.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/formatting.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/shell_completion.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/ansi.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/ansitowin32.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/initialise.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/tests/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/win32.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/colorama/winterm.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/__main__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/ipython.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/dotenv/variables.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.1" 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask-3.0.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/__main__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/app.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/blueprints.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/cli.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/config.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/ctx.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/debughelpers.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/globals.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/helpers.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/json/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/json/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/json/provider.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/json/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/json/tag.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/logging.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/sansio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/sansio/README.md -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/sansio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/sansio/app.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/sansio/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/sansio/blueprints.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/sansio/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/sansio/scaffold.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/sessions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/signals.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/templating.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/testing.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/typing.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/views.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/flask/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/flask/wrappers.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn-23.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn-23.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn-23.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (72.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn-23.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/__main__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/base.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/pasterapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/pasterapp.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/wsgiapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/app/wsgiapp.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/arbiter.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/config.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/debug.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/errors.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/glogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/glogging.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/body.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/errors.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/message.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/parser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/unreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/unreader.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/http/wsgi.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/instrument/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/pidfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/pidfile.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/reloader.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/sock.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/systemd.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/util.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/workers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/workers/base.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/gunicorn/workers/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/gunicorn/workers/sync.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna-3.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna-3.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna-3.7.dist-info/RECORD -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna-3.7.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna-3.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/codec.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/compat.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/core.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous-2.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous-2.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/_json.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/encoding.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/exc.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/serializer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/signer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/timed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/timed.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/itsdangerous/url_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/itsdangerous/url_safe.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2-3.1.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2-3.1.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/_identifier.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/async_utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/bccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/bccache.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/compiler.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/constants.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/debug.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/defaults.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/environment.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/ext.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/filters.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/idtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/idtracking.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/lexer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/loaders.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/meta.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/nativetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/nativetypes.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/nodes.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/optimizer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/parser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/runtime.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/sandbox.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/tests.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jinja2/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jinja2/visitor.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/algorithms.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/api_jwk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/api_jwk.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/api_jws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/api_jws.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/api_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/api_jwt.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/help.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/jwk_set_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/jwk_set_cache.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/jwks_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/jwks_client.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/types.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/jwt/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/jwt/warnings.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/markupsafe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/markupsafe/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/markupsafe/_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/markupsafe/_native.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/markupsafe/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/markupsafe/_speedups.c -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/markupsafe/_speedups.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/markupsafe/_speedups.pyi -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/markupsafe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging-24.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging-24.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_elffile.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_manylinux.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_musllinux.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_parser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_structures.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/_tokenizer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/markers.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/metadata.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/requirements.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/specifiers.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/tags.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/packaging/version.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip-23.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip-23.2.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip-23.2.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip-23.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/__pip-runner__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/__pip-runner__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.16" 3 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pip/py.typed -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz-2024.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz-2024.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz-2024.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/lazy.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/reference.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/tzfile.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/tzinfo.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Adak -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Atka -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Lima -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Nome -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-1 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-2 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-3 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-4 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-5 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-6 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-7 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/UCT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/UTC -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Etc/Zulu -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kyiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kyiv -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Factory -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT+0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT-0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/GMT0 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Greenwich -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/UCT -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Central -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/UTC -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Universal -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/Zulu -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/tzdata.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/tzdata.zi -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/pytz/zoneinfo/zone.tab -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests-2.32.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests-2.32.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests-2.32.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests-2.32.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/api.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/auth.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/certs.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/compat.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/help.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/models.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/packages.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/structures.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/requests/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio-7.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio-7.16.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio-7.16.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twilio 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/base/domain.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/obsolete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/base/obsolete.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/base/page.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/base/values.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/base/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/base/version.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/http/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/http/request.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/http/response.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/jwt/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/twilio/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/twilio/rest/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3-2.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3-2.2.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/_version.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/http2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/http2.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/py.typed -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/util.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug-3.0.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/__init__.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/_internal.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/_reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/_reloader.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/debug/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/debug/repr.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/exceptions.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/formparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/formparser.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/http.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/local.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/routing/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/routing/map.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/sansio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/sansio/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/sansio/http.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/security.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/serving.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/test.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/testapp.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/urls.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/user_agent.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/utils.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Lib/site-packages/werkzeug/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Lib/site-packages/werkzeug/wsgi.py -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/activate -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/flask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/flask.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/gunicorn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/gunicorn.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/normalizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/normalizer.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/pip3.12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/pip3.12.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/python.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /WeatherApp_Python/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/WeatherApp_Python/venv/pyvenv.cfg -------------------------------------------------------------------------------- /alarm_clock/alarm_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/alarm_clock/alarm_clock.py -------------------------------------------------------------------------------- /alarm_clock/alarm_clock_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/alarm_clock/alarm_clock_ss.png -------------------------------------------------------------------------------- /alarm_clock/alarm_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/alarm_clock/alarm_sound.mp3 -------------------------------------------------------------------------------- /armstrongNumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/armstrongNumber.c -------------------------------------------------------------------------------- /caesar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/caesar/README.md -------------------------------------------------------------------------------- /caesar/caesar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/caesar/caesar.c -------------------------------------------------------------------------------- /check_Palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/check_Palindrome.py -------------------------------------------------------------------------------- /deque_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/deque_implementation.cpp -------------------------------------------------------------------------------- /dictionary web app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/dictionary web app/index.html -------------------------------------------------------------------------------- /dictionary web app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/dictionary web app/index.js -------------------------------------------------------------------------------- /dictionary web app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/dictionary web app/style.css -------------------------------------------------------------------------------- /donut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/donut.cpp -------------------------------------------------------------------------------- /employeemanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/employeemanagement.py -------------------------------------------------------------------------------- /gcd_methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/gcd_methods.cpp -------------------------------------------------------------------------------- /largestRowOrColumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/largestRowOrColumn.cpp -------------------------------------------------------------------------------- /morse_code_decoder_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/morse_code_decoder_encoder.py -------------------------------------------------------------------------------- /n_queens_problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/n_queens_problem.rb -------------------------------------------------------------------------------- /non_repating_word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/non_repating_word.js -------------------------------------------------------------------------------- /pattern program.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/pattern program.java -------------------------------------------------------------------------------- /registerpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/registerpage.py -------------------------------------------------------------------------------- /snakewatergun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/snakewatergun.py -------------------------------------------------------------------------------- /trappingrainwater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest2024-1/HEAD/trappingrainwater.cpp --------------------------------------------------------------------------------