├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---documentation.md │ ├── ---feature-request.md │ ├── --questions.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ └── greetings.yml ├── .gitignore ├── AI and ML ├── 8Queen.py ├── LinearRegression.ipynb ├── NaiveBayes.ipynb ├── SupportVectorMachine.ipynb ├── Water-jug.py └── multi_layer_perceptron.py ├── Algorithms ├── Kadane's Algorithm.py ├── N-Queens II.py └── Prim's Algorithm.py ├── Arcade Module ├── Clock.py ├── Movement.py ├── Smiley.py ├── Snow.py ├── Still Imaging.py └── Timer.py ├── Basics ├── AmicablePairs.py ├── Arrays.py ├── BoolVar.py ├── CondStatements.py ├── Copy.py ├── Dictionary.py ├── Functions.py ├── Hello World.py ├── Lists.py ├── Loops.py ├── Numbers.py ├── Operators.py ├── Sets.py ├── Statements.py ├── Strings.py ├── Time.py ├── Tuples.py ├── UnitTesting.py ├── Variables.py ├── input.py ├── palindrome_number.py ├── romnum.py └── stacks.py ├── Comprehensions ├── Dictionary.py └── List.py ├── Coroutines ├── Closing.py ├── Creating.py └── Pipelining.py ├── Cryptography ├── AES.py ├── Caesar_cipher.py ├── DES.py ├── Hill_Cipher.py ├── Playfair.py ├── RSA_Algo.py ├── Rail_Fence_Cipher.py └── StringEncrypt.py ├── Databases using SQLite3 ├── Aggregate Functions.py ├── Alter Table.py ├── Creating Attributes.py ├── Creating a Database.py ├── Delete Clause.py ├── Distinct Data.py ├── Extracting Data.py ├── GLOB Operator.py ├── IN and NOT IN Clause.py ├── Inserting Records.py ├── Like Clause.py ├── Limit Clause.py ├── Order By Clause.py ├── Updating Data.py ├── Where Clause.py └── assets │ └── Student_Records.db ├── Descriptors ├── Calling a descriptors.py └── Get, Set and Del.py ├── Errors and Exceptions ├── Else Block.py ├── Finally Clause.py ├── OwnExceptions.py └── Try Except Block.py ├── File Handling ├── Append.py ├── Copying.py ├── Creating.py ├── Json.py ├── Pickle.py ├── Reading.py ├── Renaming.py ├── With Statement.py ├── Writing Dictionary.py ├── Writing.py └── assets │ ├── Json.json │ ├── Message.txt │ ├── Pickle.pkl │ └── Random.txt ├── Generators ├── Generator Expressions.py ├── Generators.py └── Yield Statement.py ├── Graphics ├── Buttons.py ├── Canvas.py ├── CheckBox.py ├── Dialogbox.py ├── Events.py ├── Frame.py ├── Images.py ├── Menus.py ├── MessageBox.py ├── RadioButtons.py ├── Simple Calculator.py ├── TextField.py ├── Widgets.py ├── Window.py ├── assets │ ├── Calculator │ │ ├── Logo.ico │ │ ├── Symbols.png │ │ ├── add.PNG │ │ ├── clear.png │ │ ├── divide.PNG │ │ ├── eight.PNG │ │ ├── equal.PNG │ │ ├── five.PNG │ │ ├── four.PNG │ │ ├── multiply.PNG │ │ ├── nine.PNG │ │ ├── one.PNG │ │ ├── seven.PNG │ │ ├── six.PNG │ │ ├── subtract.PNG │ │ ├── three.PNG │ │ ├── two.PNG │ │ └── zero.PNG │ ├── Random.PNG │ └── favicon.ico └── heart.py ├── Graphs ├── Bar Chart.py ├── Histogram Graph.py ├── Line Graph.py ├── Multiple Line Graphs.py └── Pie Chart.py ├── LICENSE ├── Linked List ├── Doubly Linked List │ ├── Creation.py │ ├── Deletion.py │ ├── DoublyLinkedList.py │ └── Insertion.py └── Single Linked List │ ├── Creation.py │ ├── Deletion.py │ ├── Insertion.py │ ├── LengthOfLinkedList.py │ ├── Reverse_LL.py │ └── SingleLinkedList.py ├── Magic Methods ├── Binary Operators.py ├── Comparison Operators.py ├── Example.py ├── Extended Assignment.py ├── Intro.py ├── Unary Operators.py └── repr method.py ├── Meta Programming ├── Decorators │ ├── Class Decorators │ │ └── Class Decorators.py │ └── Function Decorators │ │ ├── Adding new attributes.py │ │ ├── Encapsulating nested fn.py │ │ ├── Fn Inside a Fn.py │ │ ├── Fn returning Fn.py │ │ └── Passing Fn as Arg.py └── Meta Classes │ └── Meta Classes.py ├── Miscellaneous ├── Armstrong.py ├── ArticleData.py ├── Batch file rename.py ├── BulkGit.py ├── Case Swapper.py ├── Chatbot.py ├── Check_even_odd.py ├── Clipboard.py ├── Colours.py ├── Creating Presentations.py ├── Date and time.py ├── DiscordDmDelete.py ├── Discord_Automation.py ├── Excel manipulation.py ├── Face-recognition.py ├── FizzBuzz.py ├── GuessTheNo.py ├── Hangman.py ├── Happy Numbers.py ├── Hasher.py ├── Hashtags.py ├── Huffman_Coding.py ├── Image_Compressor.py ├── List appender.py ├── MatArmstrong.py ├── Matrix_multiplication.py ├── Middle_in_string.py ├── Mini-game.py ├── NeonNumber.py ├── Num_Counting.py ├── PDFMiner.py ├── Prime_Checker.py ├── ReadMe List.py ├── Relations.py ├── RequestSpammer.py ├── Requests.py ├── Secure coding.py ├── Simple_alarm.py ├── Simulate devices.py ├── SnakeWaterGun.py ├── TextBlob.py ├── Theme_Picker.py ├── URL_shortener.py ├── Urllib.py ├── Validator.py ├── VoiceAssistant.py ├── VowelDict.py ├── YouTube downloader.py ├── html2markdown.py ├── internetspeedtest.py ├── keypad_combinations.py ├── print_min_of_array.py ├── weather.py └── whtsp_spammer.py ├── Numerical Computation ├── Numpy │ ├── Array Operations.py │ ├── NumPy.ipynb │ └── Numerical Computations.py ├── Pandas │ ├── Bitcoin.ipynb │ ├── Pandas_basics.ipynb │ └── Winequality.ipynb ├── PyTorch │ └── PyTorch.ipynb └── assets │ ├── Graphs │ ├── Comparing Sin and Cos.py │ ├── Cos.py │ ├── Exponent.py │ ├── Sin.py │ ├── Square Root.py │ └── Tan.py │ ├── bitcoin.csv │ └── winequality.csv ├── OOPS ├── Abstract.py ├── ClassAtr.py ├── Constructors.py ├── DocStrings.py ├── Inheritance │ ├── Hierarchical.py │ ├── Hybrid.py │ ├── Inherit.py │ └── Multi-Level.py ├── MainFunc.py ├── MethodOverloading.py ├── Methods │ ├── Class.py │ ├── Instance.py │ └── Static.py ├── Modules │ ├── Importing.py │ ├── LibMod.py │ └── Operations.py ├── Objects.py ├── OperatorOverloading.py └── Polymorphism.py ├── README.md ├── Random Module ├── Lists.py ├── RandomFn.py ├── Range.py └── SeedFn.py ├── Regular Expressions ├── Greedy Vs Non-Greedy.py ├── Match Function.py ├── Matching Vs Searching.py ├── Modifiers.py ├── Password Validator.py └── Regular Functions.py ├── SMTP Module ├── Attachements.py ├── HTML_Emails.py ├── Mail Attachments │ └── name.txt └── SendingEmails.py ├── Socket Programming ├── Chat Room │ ├── Client Side.py │ └── Server Side.py ├── Client.py ├── Receiving Files.py ├── Sending Files.py ├── Server.py └── assets │ └── Random.txt ├── Software Patterns └── singleton.py ├── Sorting Algorithms ├── BogoSort.py ├── Bubblesort.py ├── CountingSort.py ├── HeapSort.py ├── InsertionSort.py ├── MergeSort.py ├── QuickSort.py ├── Radix Sort.py ├── RecursiveBubbleSort.py ├── SelectionSort.py ├── ShellSort.py └── TimSort.py ├── Statistics ├── BinomialProbability.py ├── CentralLimitTheorem.py ├── CoinChangeMaxPossibilities.py ├── Mean_Median_Mode.py └── NormalDistribution.py ├── Thread Programming ├── Extending Thread Class.py ├── Flight Reservation.py ├── Main Thread.py ├── Multi-Function Threading.py ├── Multi-Threading.py ├── Sleep.py ├── Synchronization With Locks.py ├── Thread using Function.py └── Without Extending Thread Class.py ├── _config.yml └── assets ├── Arcade Module.PNG ├── Calculator.PNG ├── Graphs Logo.png ├── Graphs ├── Histogram Graphs.png ├── Multi Lined Graph.png ├── Pie Chart.png └── Single Lined Graph.png ├── HackerRank Logo.PNG ├── NumPy Logo.png ├── NumPy ├── Exponent Graph.png ├── Sin And Cos.png ├── Square Root.png └── Tan.png ├── Python Logo.png └── Socket Programming.PNG /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/ISSUE_TEMPLATE/---documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/ISSUE_TEMPLATE/--questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/.gitignore -------------------------------------------------------------------------------- /AI and ML/8Queen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/8Queen.py -------------------------------------------------------------------------------- /AI and ML/LinearRegression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/LinearRegression.ipynb -------------------------------------------------------------------------------- /AI and ML/NaiveBayes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/NaiveBayes.ipynb -------------------------------------------------------------------------------- /AI and ML/SupportVectorMachine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/SupportVectorMachine.ipynb -------------------------------------------------------------------------------- /AI and ML/Water-jug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/Water-jug.py -------------------------------------------------------------------------------- /AI and ML/multi_layer_perceptron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/AI and ML/multi_layer_perceptron.py -------------------------------------------------------------------------------- /Algorithms/Kadane's Algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Algorithms/Kadane's Algorithm.py -------------------------------------------------------------------------------- /Algorithms/N-Queens II.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Algorithms/N-Queens II.py -------------------------------------------------------------------------------- /Algorithms/Prim's Algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Algorithms/Prim's Algorithm.py -------------------------------------------------------------------------------- /Arcade Module/Clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Clock.py -------------------------------------------------------------------------------- /Arcade Module/Movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Movement.py -------------------------------------------------------------------------------- /Arcade Module/Smiley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Smiley.py -------------------------------------------------------------------------------- /Arcade Module/Snow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Snow.py -------------------------------------------------------------------------------- /Arcade Module/Still Imaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Still Imaging.py -------------------------------------------------------------------------------- /Arcade Module/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Arcade Module/Timer.py -------------------------------------------------------------------------------- /Basics/AmicablePairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/AmicablePairs.py -------------------------------------------------------------------------------- /Basics/Arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Arrays.py -------------------------------------------------------------------------------- /Basics/BoolVar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/BoolVar.py -------------------------------------------------------------------------------- /Basics/CondStatements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/CondStatements.py -------------------------------------------------------------------------------- /Basics/Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Copy.py -------------------------------------------------------------------------------- /Basics/Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Dictionary.py -------------------------------------------------------------------------------- /Basics/Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Functions.py -------------------------------------------------------------------------------- /Basics/Hello World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Hello World.py -------------------------------------------------------------------------------- /Basics/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Lists.py -------------------------------------------------------------------------------- /Basics/Loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Loops.py -------------------------------------------------------------------------------- /Basics/Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Numbers.py -------------------------------------------------------------------------------- /Basics/Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Operators.py -------------------------------------------------------------------------------- /Basics/Sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Sets.py -------------------------------------------------------------------------------- /Basics/Statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Statements.py -------------------------------------------------------------------------------- /Basics/Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Strings.py -------------------------------------------------------------------------------- /Basics/Time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Time.py -------------------------------------------------------------------------------- /Basics/Tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Tuples.py -------------------------------------------------------------------------------- /Basics/UnitTesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/UnitTesting.py -------------------------------------------------------------------------------- /Basics/Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/Variables.py -------------------------------------------------------------------------------- /Basics/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/input.py -------------------------------------------------------------------------------- /Basics/palindrome_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/palindrome_number.py -------------------------------------------------------------------------------- /Basics/romnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/romnum.py -------------------------------------------------------------------------------- /Basics/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Basics/stacks.py -------------------------------------------------------------------------------- /Comprehensions/Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Comprehensions/Dictionary.py -------------------------------------------------------------------------------- /Comprehensions/List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Comprehensions/List.py -------------------------------------------------------------------------------- /Coroutines/Closing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Coroutines/Closing.py -------------------------------------------------------------------------------- /Coroutines/Creating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Coroutines/Creating.py -------------------------------------------------------------------------------- /Coroutines/Pipelining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Coroutines/Pipelining.py -------------------------------------------------------------------------------- /Cryptography/AES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/AES.py -------------------------------------------------------------------------------- /Cryptography/Caesar_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/Caesar_cipher.py -------------------------------------------------------------------------------- /Cryptography/DES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/DES.py -------------------------------------------------------------------------------- /Cryptography/Hill_Cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/Hill_Cipher.py -------------------------------------------------------------------------------- /Cryptography/Playfair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/Playfair.py -------------------------------------------------------------------------------- /Cryptography/RSA_Algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/RSA_Algo.py -------------------------------------------------------------------------------- /Cryptography/Rail_Fence_Cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/Rail_Fence_Cipher.py -------------------------------------------------------------------------------- /Cryptography/StringEncrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Cryptography/StringEncrypt.py -------------------------------------------------------------------------------- /Databases using SQLite3/Aggregate Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Aggregate Functions.py -------------------------------------------------------------------------------- /Databases using SQLite3/Alter Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Alter Table.py -------------------------------------------------------------------------------- /Databases using SQLite3/Creating Attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Creating Attributes.py -------------------------------------------------------------------------------- /Databases using SQLite3/Creating a Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Creating a Database.py -------------------------------------------------------------------------------- /Databases using SQLite3/Delete Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Delete Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/Distinct Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Distinct Data.py -------------------------------------------------------------------------------- /Databases using SQLite3/Extracting Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Extracting Data.py -------------------------------------------------------------------------------- /Databases using SQLite3/GLOB Operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/GLOB Operator.py -------------------------------------------------------------------------------- /Databases using SQLite3/IN and NOT IN Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/IN and NOT IN Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/Inserting Records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Inserting Records.py -------------------------------------------------------------------------------- /Databases using SQLite3/Like Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Like Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/Limit Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Limit Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/Order By Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Order By Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/Updating Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Updating Data.py -------------------------------------------------------------------------------- /Databases using SQLite3/Where Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/Where Clause.py -------------------------------------------------------------------------------- /Databases using SQLite3/assets/Student_Records.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Databases using SQLite3/assets/Student_Records.db -------------------------------------------------------------------------------- /Descriptors/Calling a descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Descriptors/Calling a descriptors.py -------------------------------------------------------------------------------- /Descriptors/Get, Set and Del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Descriptors/Get, Set and Del.py -------------------------------------------------------------------------------- /Errors and Exceptions/Else Block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Errors and Exceptions/Else Block.py -------------------------------------------------------------------------------- /Errors and Exceptions/Finally Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Errors and Exceptions/Finally Clause.py -------------------------------------------------------------------------------- /Errors and Exceptions/OwnExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Errors and Exceptions/OwnExceptions.py -------------------------------------------------------------------------------- /Errors and Exceptions/Try Except Block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Errors and Exceptions/Try Except Block.py -------------------------------------------------------------------------------- /File Handling/Append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Append.py -------------------------------------------------------------------------------- /File Handling/Copying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Copying.py -------------------------------------------------------------------------------- /File Handling/Creating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Creating.py -------------------------------------------------------------------------------- /File Handling/Json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Json.py -------------------------------------------------------------------------------- /File Handling/Pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Pickle.py -------------------------------------------------------------------------------- /File Handling/Reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Reading.py -------------------------------------------------------------------------------- /File Handling/Renaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Renaming.py -------------------------------------------------------------------------------- /File Handling/With Statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/With Statement.py -------------------------------------------------------------------------------- /File Handling/Writing Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Writing Dictionary.py -------------------------------------------------------------------------------- /File Handling/Writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/Writing.py -------------------------------------------------------------------------------- /File Handling/assets/Json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/assets/Json.json -------------------------------------------------------------------------------- /File Handling/assets/Message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/assets/Message.txt -------------------------------------------------------------------------------- /File Handling/assets/Pickle.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/assets/Pickle.pkl -------------------------------------------------------------------------------- /File Handling/assets/Random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/File Handling/assets/Random.txt -------------------------------------------------------------------------------- /Generators/Generator Expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Generators/Generator Expressions.py -------------------------------------------------------------------------------- /Generators/Generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Generators/Generators.py -------------------------------------------------------------------------------- /Generators/Yield Statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Generators/Yield Statement.py -------------------------------------------------------------------------------- /Graphics/Buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Buttons.py -------------------------------------------------------------------------------- /Graphics/Canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Canvas.py -------------------------------------------------------------------------------- /Graphics/CheckBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/CheckBox.py -------------------------------------------------------------------------------- /Graphics/Dialogbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Dialogbox.py -------------------------------------------------------------------------------- /Graphics/Events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Events.py -------------------------------------------------------------------------------- /Graphics/Frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Frame.py -------------------------------------------------------------------------------- /Graphics/Images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Images.py -------------------------------------------------------------------------------- /Graphics/Menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Menus.py -------------------------------------------------------------------------------- /Graphics/MessageBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/MessageBox.py -------------------------------------------------------------------------------- /Graphics/RadioButtons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/RadioButtons.py -------------------------------------------------------------------------------- /Graphics/Simple Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Simple Calculator.py -------------------------------------------------------------------------------- /Graphics/TextField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/TextField.py -------------------------------------------------------------------------------- /Graphics/Widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Widgets.py -------------------------------------------------------------------------------- /Graphics/Window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/Window.py -------------------------------------------------------------------------------- /Graphics/assets/Calculator/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/Logo.ico -------------------------------------------------------------------------------- /Graphics/assets/Calculator/Symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/Symbols.png -------------------------------------------------------------------------------- /Graphics/assets/Calculator/add.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/add.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/clear.png -------------------------------------------------------------------------------- /Graphics/assets/Calculator/divide.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/divide.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/eight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/eight.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/equal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/equal.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/five.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/five.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/four.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/four.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/multiply.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/multiply.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/nine.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/nine.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/one.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/one.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/seven.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/seven.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/six.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/six.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/subtract.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/subtract.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/three.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/three.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/two.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/two.PNG -------------------------------------------------------------------------------- /Graphics/assets/Calculator/zero.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Calculator/zero.PNG -------------------------------------------------------------------------------- /Graphics/assets/Random.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/Random.PNG -------------------------------------------------------------------------------- /Graphics/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/assets/favicon.ico -------------------------------------------------------------------------------- /Graphics/heart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphics/heart.py -------------------------------------------------------------------------------- /Graphs/Bar Chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphs/Bar Chart.py -------------------------------------------------------------------------------- /Graphs/Histogram Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphs/Histogram Graph.py -------------------------------------------------------------------------------- /Graphs/Line Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphs/Line Graph.py -------------------------------------------------------------------------------- /Graphs/Multiple Line Graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphs/Multiple Line Graphs.py -------------------------------------------------------------------------------- /Graphs/Pie Chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Graphs/Pie Chart.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/LICENSE -------------------------------------------------------------------------------- /Linked List/Doubly Linked List/Creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Doubly Linked List/Creation.py -------------------------------------------------------------------------------- /Linked List/Doubly Linked List/Deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Doubly Linked List/Deletion.py -------------------------------------------------------------------------------- /Linked List/Doubly Linked List/DoublyLinkedList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Doubly Linked List/DoublyLinkedList.py -------------------------------------------------------------------------------- /Linked List/Doubly Linked List/Insertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Doubly Linked List/Insertion.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/Creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/Creation.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/Deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/Deletion.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/Insertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/Insertion.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/LengthOfLinkedList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/LengthOfLinkedList.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/Reverse_LL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/Reverse_LL.py -------------------------------------------------------------------------------- /Linked List/Single Linked List/SingleLinkedList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Linked List/Single Linked List/SingleLinkedList.py -------------------------------------------------------------------------------- /Magic Methods/Binary Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Binary Operators.py -------------------------------------------------------------------------------- /Magic Methods/Comparison Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Comparison Operators.py -------------------------------------------------------------------------------- /Magic Methods/Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Example.py -------------------------------------------------------------------------------- /Magic Methods/Extended Assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Extended Assignment.py -------------------------------------------------------------------------------- /Magic Methods/Intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Intro.py -------------------------------------------------------------------------------- /Magic Methods/Unary Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/Unary Operators.py -------------------------------------------------------------------------------- /Magic Methods/repr method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Magic Methods/repr method.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Class Decorators/Class Decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Class Decorators/Class Decorators.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Function Decorators/Adding new attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Function Decorators/Adding new attributes.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Function Decorators/Encapsulating nested fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Function Decorators/Encapsulating nested fn.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Function Decorators/Fn Inside a Fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Function Decorators/Fn Inside a Fn.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Function Decorators/Fn returning Fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Function Decorators/Fn returning Fn.py -------------------------------------------------------------------------------- /Meta Programming/Decorators/Function Decorators/Passing Fn as Arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Decorators/Function Decorators/Passing Fn as Arg.py -------------------------------------------------------------------------------- /Meta Programming/Meta Classes/Meta Classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Meta Programming/Meta Classes/Meta Classes.py -------------------------------------------------------------------------------- /Miscellaneous/Armstrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Armstrong.py -------------------------------------------------------------------------------- /Miscellaneous/ArticleData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/ArticleData.py -------------------------------------------------------------------------------- /Miscellaneous/Batch file rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Batch file rename.py -------------------------------------------------------------------------------- /Miscellaneous/BulkGit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/BulkGit.py -------------------------------------------------------------------------------- /Miscellaneous/Case Swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Case Swapper.py -------------------------------------------------------------------------------- /Miscellaneous/Chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Chatbot.py -------------------------------------------------------------------------------- /Miscellaneous/Check_even_odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Check_even_odd.py -------------------------------------------------------------------------------- /Miscellaneous/Clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Clipboard.py -------------------------------------------------------------------------------- /Miscellaneous/Colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Colours.py -------------------------------------------------------------------------------- /Miscellaneous/Creating Presentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Creating Presentations.py -------------------------------------------------------------------------------- /Miscellaneous/Date and time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Date and time.py -------------------------------------------------------------------------------- /Miscellaneous/DiscordDmDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/DiscordDmDelete.py -------------------------------------------------------------------------------- /Miscellaneous/Discord_Automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Discord_Automation.py -------------------------------------------------------------------------------- /Miscellaneous/Excel manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Excel manipulation.py -------------------------------------------------------------------------------- /Miscellaneous/Face-recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Face-recognition.py -------------------------------------------------------------------------------- /Miscellaneous/FizzBuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/FizzBuzz.py -------------------------------------------------------------------------------- /Miscellaneous/GuessTheNo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/GuessTheNo.py -------------------------------------------------------------------------------- /Miscellaneous/Hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Hangman.py -------------------------------------------------------------------------------- /Miscellaneous/Happy Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Happy Numbers.py -------------------------------------------------------------------------------- /Miscellaneous/Hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Hasher.py -------------------------------------------------------------------------------- /Miscellaneous/Hashtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Hashtags.py -------------------------------------------------------------------------------- /Miscellaneous/Huffman_Coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Huffman_Coding.py -------------------------------------------------------------------------------- /Miscellaneous/Image_Compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Image_Compressor.py -------------------------------------------------------------------------------- /Miscellaneous/List appender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/List appender.py -------------------------------------------------------------------------------- /Miscellaneous/MatArmstrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/MatArmstrong.py -------------------------------------------------------------------------------- /Miscellaneous/Matrix_multiplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Matrix_multiplication.py -------------------------------------------------------------------------------- /Miscellaneous/Middle_in_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Middle_in_string.py -------------------------------------------------------------------------------- /Miscellaneous/Mini-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Mini-game.py -------------------------------------------------------------------------------- /Miscellaneous/NeonNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/NeonNumber.py -------------------------------------------------------------------------------- /Miscellaneous/Num_Counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Num_Counting.py -------------------------------------------------------------------------------- /Miscellaneous/PDFMiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/PDFMiner.py -------------------------------------------------------------------------------- /Miscellaneous/Prime_Checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Prime_Checker.py -------------------------------------------------------------------------------- /Miscellaneous/ReadMe List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/ReadMe List.py -------------------------------------------------------------------------------- /Miscellaneous/Relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Relations.py -------------------------------------------------------------------------------- /Miscellaneous/RequestSpammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/RequestSpammer.py -------------------------------------------------------------------------------- /Miscellaneous/Requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Requests.py -------------------------------------------------------------------------------- /Miscellaneous/Secure coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Secure coding.py -------------------------------------------------------------------------------- /Miscellaneous/Simple_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Simple_alarm.py -------------------------------------------------------------------------------- /Miscellaneous/Simulate devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Simulate devices.py -------------------------------------------------------------------------------- /Miscellaneous/SnakeWaterGun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/SnakeWaterGun.py -------------------------------------------------------------------------------- /Miscellaneous/TextBlob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/TextBlob.py -------------------------------------------------------------------------------- /Miscellaneous/Theme_Picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Theme_Picker.py -------------------------------------------------------------------------------- /Miscellaneous/URL_shortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/URL_shortener.py -------------------------------------------------------------------------------- /Miscellaneous/Urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Urllib.py -------------------------------------------------------------------------------- /Miscellaneous/Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/Validator.py -------------------------------------------------------------------------------- /Miscellaneous/VoiceAssistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/VoiceAssistant.py -------------------------------------------------------------------------------- /Miscellaneous/VowelDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/VowelDict.py -------------------------------------------------------------------------------- /Miscellaneous/YouTube downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/YouTube downloader.py -------------------------------------------------------------------------------- /Miscellaneous/html2markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/html2markdown.py -------------------------------------------------------------------------------- /Miscellaneous/internetspeedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/internetspeedtest.py -------------------------------------------------------------------------------- /Miscellaneous/keypad_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/keypad_combinations.py -------------------------------------------------------------------------------- /Miscellaneous/print_min_of_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/print_min_of_array.py -------------------------------------------------------------------------------- /Miscellaneous/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/weather.py -------------------------------------------------------------------------------- /Miscellaneous/whtsp_spammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Miscellaneous/whtsp_spammer.py -------------------------------------------------------------------------------- /Numerical Computation/Numpy/Array Operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Numpy/Array Operations.py -------------------------------------------------------------------------------- /Numerical Computation/Numpy/NumPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Numpy/NumPy.ipynb -------------------------------------------------------------------------------- /Numerical Computation/Numpy/Numerical Computations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Numpy/Numerical Computations.py -------------------------------------------------------------------------------- /Numerical Computation/Pandas/Bitcoin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Pandas/Bitcoin.ipynb -------------------------------------------------------------------------------- /Numerical Computation/Pandas/Pandas_basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Pandas/Pandas_basics.ipynb -------------------------------------------------------------------------------- /Numerical Computation/Pandas/Winequality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/Pandas/Winequality.ipynb -------------------------------------------------------------------------------- /Numerical Computation/PyTorch/PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/PyTorch/PyTorch.ipynb -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Comparing Sin and Cos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Comparing Sin and Cos.py -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Cos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Cos.py -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Exponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Exponent.py -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Sin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Sin.py -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Square Root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Square Root.py -------------------------------------------------------------------------------- /Numerical Computation/assets/Graphs/Tan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/Graphs/Tan.py -------------------------------------------------------------------------------- /Numerical Computation/assets/bitcoin.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/bitcoin.csv -------------------------------------------------------------------------------- /Numerical Computation/assets/winequality.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Numerical Computation/assets/winequality.csv -------------------------------------------------------------------------------- /OOPS/Abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Abstract.py -------------------------------------------------------------------------------- /OOPS/ClassAtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/ClassAtr.py -------------------------------------------------------------------------------- /OOPS/Constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Constructors.py -------------------------------------------------------------------------------- /OOPS/DocStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/DocStrings.py -------------------------------------------------------------------------------- /OOPS/Inheritance/Hierarchical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Inheritance/Hierarchical.py -------------------------------------------------------------------------------- /OOPS/Inheritance/Hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Inheritance/Hybrid.py -------------------------------------------------------------------------------- /OOPS/Inheritance/Inherit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Inheritance/Inherit.py -------------------------------------------------------------------------------- /OOPS/Inheritance/Multi-Level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Inheritance/Multi-Level.py -------------------------------------------------------------------------------- /OOPS/MainFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/MainFunc.py -------------------------------------------------------------------------------- /OOPS/MethodOverloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/MethodOverloading.py -------------------------------------------------------------------------------- /OOPS/Methods/Class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Methods/Class.py -------------------------------------------------------------------------------- /OOPS/Methods/Instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Methods/Instance.py -------------------------------------------------------------------------------- /OOPS/Methods/Static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Methods/Static.py -------------------------------------------------------------------------------- /OOPS/Modules/Importing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Modules/Importing.py -------------------------------------------------------------------------------- /OOPS/Modules/LibMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Modules/LibMod.py -------------------------------------------------------------------------------- /OOPS/Modules/Operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Modules/Operations.py -------------------------------------------------------------------------------- /OOPS/Objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Objects.py -------------------------------------------------------------------------------- /OOPS/OperatorOverloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/OperatorOverloading.py -------------------------------------------------------------------------------- /OOPS/Polymorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/OOPS/Polymorphism.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/README.md -------------------------------------------------------------------------------- /Random Module/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Random Module/Lists.py -------------------------------------------------------------------------------- /Random Module/RandomFn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Random Module/RandomFn.py -------------------------------------------------------------------------------- /Random Module/Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Random Module/Range.py -------------------------------------------------------------------------------- /Random Module/SeedFn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Random Module/SeedFn.py -------------------------------------------------------------------------------- /Regular Expressions/Greedy Vs Non-Greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Greedy Vs Non-Greedy.py -------------------------------------------------------------------------------- /Regular Expressions/Match Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Match Function.py -------------------------------------------------------------------------------- /Regular Expressions/Matching Vs Searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Matching Vs Searching.py -------------------------------------------------------------------------------- /Regular Expressions/Modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Modifiers.py -------------------------------------------------------------------------------- /Regular Expressions/Password Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Password Validator.py -------------------------------------------------------------------------------- /Regular Expressions/Regular Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Regular Expressions/Regular Functions.py -------------------------------------------------------------------------------- /SMTP Module/Attachements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/SMTP Module/Attachements.py -------------------------------------------------------------------------------- /SMTP Module/HTML_Emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/SMTP Module/HTML_Emails.py -------------------------------------------------------------------------------- /SMTP Module/Mail Attachments/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/SMTP Module/Mail Attachments/name.txt -------------------------------------------------------------------------------- /SMTP Module/SendingEmails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/SMTP Module/SendingEmails.py -------------------------------------------------------------------------------- /Socket Programming/Chat Room/Client Side.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Chat Room/Client Side.py -------------------------------------------------------------------------------- /Socket Programming/Chat Room/Server Side.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Chat Room/Server Side.py -------------------------------------------------------------------------------- /Socket Programming/Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Client.py -------------------------------------------------------------------------------- /Socket Programming/Receiving Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Receiving Files.py -------------------------------------------------------------------------------- /Socket Programming/Sending Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Sending Files.py -------------------------------------------------------------------------------- /Socket Programming/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/Server.py -------------------------------------------------------------------------------- /Socket Programming/assets/Random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Socket Programming/assets/Random.txt -------------------------------------------------------------------------------- /Software Patterns/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Software Patterns/singleton.py -------------------------------------------------------------------------------- /Sorting Algorithms/BogoSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/BogoSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/Bubblesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/Bubblesort.py -------------------------------------------------------------------------------- /Sorting Algorithms/CountingSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/CountingSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/HeapSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/HeapSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/InsertionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/InsertionSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/MergeSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/MergeSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/QuickSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/QuickSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/Radix Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/Radix Sort.py -------------------------------------------------------------------------------- /Sorting Algorithms/RecursiveBubbleSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/RecursiveBubbleSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/SelectionSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/ShellSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/ShellSort.py -------------------------------------------------------------------------------- /Sorting Algorithms/TimSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Sorting Algorithms/TimSort.py -------------------------------------------------------------------------------- /Statistics/BinomialProbability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Statistics/BinomialProbability.py -------------------------------------------------------------------------------- /Statistics/CentralLimitTheorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Statistics/CentralLimitTheorem.py -------------------------------------------------------------------------------- /Statistics/CoinChangeMaxPossibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Statistics/CoinChangeMaxPossibilities.py -------------------------------------------------------------------------------- /Statistics/Mean_Median_Mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Statistics/Mean_Median_Mode.py -------------------------------------------------------------------------------- /Statistics/NormalDistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Statistics/NormalDistribution.py -------------------------------------------------------------------------------- /Thread Programming/Extending Thread Class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Extending Thread Class.py -------------------------------------------------------------------------------- /Thread Programming/Flight Reservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Flight Reservation.py -------------------------------------------------------------------------------- /Thread Programming/Main Thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Main Thread.py -------------------------------------------------------------------------------- /Thread Programming/Multi-Function Threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Multi-Function Threading.py -------------------------------------------------------------------------------- /Thread Programming/Multi-Threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Multi-Threading.py -------------------------------------------------------------------------------- /Thread Programming/Sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Sleep.py -------------------------------------------------------------------------------- /Thread Programming/Synchronization With Locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Synchronization With Locks.py -------------------------------------------------------------------------------- /Thread Programming/Thread using Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Thread using Function.py -------------------------------------------------------------------------------- /Thread Programming/Without Extending Thread Class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/Thread Programming/Without Extending Thread Class.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/Arcade Module.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Arcade Module.PNG -------------------------------------------------------------------------------- /assets/Calculator.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Calculator.PNG -------------------------------------------------------------------------------- /assets/Graphs Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Graphs Logo.png -------------------------------------------------------------------------------- /assets/Graphs/Histogram Graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Graphs/Histogram Graphs.png -------------------------------------------------------------------------------- /assets/Graphs/Multi Lined Graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Graphs/Multi Lined Graph.png -------------------------------------------------------------------------------- /assets/Graphs/Pie Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Graphs/Pie Chart.png -------------------------------------------------------------------------------- /assets/Graphs/Single Lined Graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Graphs/Single Lined Graph.png -------------------------------------------------------------------------------- /assets/HackerRank Logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/HackerRank Logo.PNG -------------------------------------------------------------------------------- /assets/NumPy Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/NumPy Logo.png -------------------------------------------------------------------------------- /assets/NumPy/Exponent Graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/NumPy/Exponent Graph.png -------------------------------------------------------------------------------- /assets/NumPy/Sin And Cos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/NumPy/Sin And Cos.png -------------------------------------------------------------------------------- /assets/NumPy/Square Root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/NumPy/Square Root.png -------------------------------------------------------------------------------- /assets/NumPy/Tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/NumPy/Tan.png -------------------------------------------------------------------------------- /assets/Python Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Python Logo.png -------------------------------------------------------------------------------- /assets/Socket Programming.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVijayB/PyHub/HEAD/assets/Socket Programming.PNG --------------------------------------------------------------------------------