├── Course Description.pdf ├── LICENSE ├── Part 1 ├── Codes │ ├── BS4 │ │ ├── Lec 11-17.py │ │ ├── Lec 18-21.py │ │ ├── Lec 4-6.py │ │ └── Lec 9-10.py │ ├── Quizes │ │ ├── BS4 │ │ │ ├── Quiz 2 (07-Quiz(Extracting Author Names)).py │ │ │ ├── Quiz 3 (12-Quiz(Getting the Rattings,Year,Name of the Movie)).py │ │ │ ├── quiz2solution.csv │ │ │ └── quiz3solution.csv │ │ ├── CSS Selectors │ │ │ ├── Quiz 1 (03-Quiz(Tags)).html │ │ │ ├── Quiz 10 (28-Quiz(Last Child)).html │ │ │ ├── Quiz 11 (31-Quiz(Negation)).html │ │ │ ├── Quiz 12 (34-Quiz(Attributes Values)).html │ │ │ ├── Quiz 2 (06-Quiz(Descendants)).html │ │ │ ├── Quiz 3 (08-Quiz(ID)).html │ │ │ ├── Quiz 4 (13-Quiz(Class with Tag)).html │ │ │ ├── Quiz 5 (16-Quiz(Combining Two Selectors)).html │ │ │ ├── Quiz 6 (19-Quiz(Adjacent Sibling)).html │ │ │ ├── Quiz 7 (21-Quiz(General Sibling)).html │ │ │ ├── Quiz 8 (24-Quiz(First Child)).html │ │ │ └── Quiz 9 (26-Quiz(Only Child)).html │ │ ├── Requests │ │ │ ├── Quiz 1 (04-Quiz(Extracting Authors)).py │ │ │ ├── Quiz 2 (07-Quiz(Extracting Author and Quotes)).py │ │ │ ├── Quiz 3 (13-Quiz(Extracting Top Stats from Cricinfo)).py │ │ │ ├── quiz1solution.txt │ │ │ ├── quiz2solution.csv │ │ │ └── quiz3solution.csv │ │ ├── Scrapy │ │ │ ├── Quiz 1 (24-Quiz(Get The Tags)).py │ │ │ ├── Quiz 2 (33-Quiz(Extracting the Year)).py │ │ │ ├── quiz1solution.csv │ │ │ └── quiz2solution.csv │ │ └── Selenium │ │ │ ├── Quiz 1 (06-Quiz(Extracting Quotes)).py │ │ │ └── Quiz 2 (12-Quiz(Log in and Extract Quote)).py │ ├── Requests │ │ ├── Lec 10-12.py │ │ └── Lec 2-6.py │ ├── SCRAPY │ │ ├── BOSS │ │ │ ├── BOSS │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── settings.cpython-37.pyc │ │ │ │ ├── items.py │ │ │ │ ├── middlewares.py │ │ │ │ ├── pipelines.py │ │ │ │ ├── settings.py │ │ │ │ └── spiders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── main.cpython-37.pyc │ │ │ │ │ └── main.py │ │ │ ├── products.csv │ │ │ └── scrapy.cfg │ │ ├── IMDB │ │ │ ├── IMDB │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── settings.cpython-37.pyc │ │ │ │ ├── items.py │ │ │ │ ├── middlewares.py │ │ │ │ ├── pipelines.py │ │ │ │ ├── settings.py │ │ │ │ └── spiders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── Quiz2.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── main.cpython-37.pyc │ │ │ │ │ └── main.py │ │ │ ├── imdb.csv │ │ │ └── scrapy.cfg │ │ ├── ProjQuotes │ │ │ ├── ProjQuotes │ │ │ │ ├── __init__.py │ │ │ │ ├── items.py │ │ │ │ ├── middlewares.py │ │ │ │ ├── pipelines.py │ │ │ │ ├── settings.py │ │ │ │ └── spiders │ │ │ │ │ └── __init__.py │ │ │ └── scrapy.cfg │ │ └── ScratchQuotes │ │ │ ├── ScratchQuotes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── settings.cpython-37.pyc │ │ │ ├── items.py │ │ │ ├── middlewares.py │ │ │ ├── pipelines.py │ │ │ ├── settings.py │ │ │ └── spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── Quiz1.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── main.cpython-37.pyc │ │ │ │ └── main.py │ │ │ ├── quotes.csv │ │ │ └── scrapy.cfg │ └── Selenium │ │ ├── DeepL Script.py │ │ ├── Selenium Different Lectures Scripts │ │ ├── lec 11.py │ │ ├── lec 4.py │ │ ├── lec 5.py │ │ └── lec 9-10.py │ │ ├── chromedriver.exe │ │ ├── chromedriver_win32.zip │ │ └── input.txt └── PPTs │ └── Slides.pptx ├── Part 2 ├── Codes │ ├── 01-Overview │ │ ├── 02-Scala Installation.docx │ │ ├── 06-Strings Basics.scala │ │ ├── 08-Solution (Arithmatic Operations).scala │ │ ├── 10-Solution (Strings).scala │ │ ├── 11-Type Casting.scala │ │ ├── 12-Taking input from User.scala │ │ └── 14-Solution (User Input and Type Casting).scala │ ├── 02-Control Statements │ │ ├── 11-Solution (Logical operators).scala │ │ ├── 12-If else if.scala │ │ ├── 14-Solution(if else if).scala │ │ ├── 16-Overview of While Loop.scala │ │ ├── 17-While Loop.scala │ │ ├── 19-Solution 1 (while loop).scala │ │ ├── 2-If else statements.scala │ │ ├── 20-Solution 2 (while loop).scala │ │ ├── 21-Do While Loop.scala │ │ ├── 22-For Loop.scala │ │ ├── 24-Solution (For Loop).scala │ │ ├── 26-Solution(For Loop).scala │ │ ├── 27-Break.scala │ │ ├── 28-Break Fix.scala │ │ ├── 3-Conditions in If.scala │ │ ├── 30-Project Solution Code 1.scala │ │ ├── 31-Project Solution Code 2.scala │ │ ├── 32-Project Solution Code 3.scala │ │ ├── 33-Project Solution Code 4.scala │ │ ├── 5-Solution (if statement).scala │ │ ├── 6-Nested if else.scala │ │ ├── 8-Solution (nested if else).scala │ │ └── 9-Logical operators.scala │ ├── 03-Functions │ │ ├── 02-Writing addition function.scala │ │ ├── 04-Solution (Basic Function).scala │ │ ├── 06-Strings basics.scala │ │ ├── 08-Solution (String Concatination Function).scala │ │ ├── 10-Solution (Dividing Code in Functions).scala │ │ ├── 11-Default Arguments.scala │ │ ├── 13-Solution(Default Arguments).scala │ │ ├── 14-Anonymous Functions.scala │ │ ├── 16-Solution(Anonymous Functions).scala │ │ ├── 17-Scopes.scala │ │ ├── 19- Project Structure.scala │ │ ├── 20-Prompting the menu.scala │ │ ├── 21-Baisc Functions.scala │ │ ├── 22-Breaking code in more functions.scala │ │ └── 23-Final Run.scala │ ├── 04-Classes │ │ ├── 02-Creating Class.scala │ │ ├── 03-Class Constructor.scala │ │ ├── 04-Functions and Classes.scala │ │ ├── 06-Basic Strucuture.scala │ │ └── 07-FInal Run.scala │ ├── 05-Data Structures │ │ ├── 02-Lists introduction.scala │ │ ├── 03-Lists Create and Delete Elements.scala │ │ ├── 04-Lists Take.scala │ │ ├── 05-ListBuffer Introduction.scala │ │ ├── 06-Add data in ListBuffer.scala │ │ ├── 07-Remove data from ListBuffer.scala │ │ ├── 08-Take data from ListBuffer.scala │ │ ├── 10-Project Architecture Implementation.scala │ │ ├── 11-User Input for Objects.scala │ │ ├── 12-Implementing the control flow.scala │ │ ├── 13-Creating Required Functions inside Class.scala │ │ ├── 15-Creating Maps.scala │ │ ├── 16-Check Key in Map.scala │ │ ├── 17-Update Value in Map.scala │ │ ├── 18-Add and Remove items from Maps.scala │ │ ├── 19-Iterating on Maps.scala │ │ ├── 22-Project Structure Code.scala │ │ ├── 23-Using Maps for word count.scala │ │ ├── 24-Final Run.scala │ │ ├── 25-Sets Overview.scala │ │ ├── 26-Add and Remove Item from the Set.scala │ │ ├── 29-Push and Pop in Stack.scala │ │ ├── 30-Stack Attributes.scala │ │ ├── 33-Project Architecture Code.scala │ │ └── 34-Extra Starting Bracket Use Case.scala │ └── 06-Project │ │ ├── 11-Spark RDDs (textFile, collect).scala │ │ ├── 13-Understanding Map.scala │ │ ├── 14-Understanding Flat Map.scala │ │ ├── 16-Word Count Example.scala │ │ ├── 17-data - Spark DFs.csv │ │ ├── 18-Spark DF Read Data.scala │ │ ├── 19-Spark Print Schema, Select.scala │ │ ├── 20-Spark GroupBy.scala │ │ ├── 21-Spark DF Write.scala │ │ ├── data.csv │ │ ├── postgresql-42.2.18.jar │ │ ├── rdschecker.scala │ │ ├── s3-rds-etl.scala │ │ └── sample_text_data.txt └── PPTs │ └── Slides.pptx ├── Part 3 ├── Code │ ├── 02-Spark RDDs │ │ ├── 02-Creating Spark RDD.py │ │ ├── 04 , 05-MAP.py │ │ ├── 07-Solution 1 (Map).py │ │ ├── 08-Solution 2 (Map).py │ │ ├── 09-RDD FlatMap.py │ │ ├── 10-RDD Filter.py │ │ ├── 12-Solution (Filter).py │ │ ├── 13-RDD Distinct.py │ │ ├── 14-RDD GroupByKey.py │ │ ├── 15-RDD ReduceByKey.py │ │ ├── 17-Solution (Word Count).py │ │ ├── 18-RDD (Count and CountByValue).py │ │ ├── 19-RDD (saveAsTextFile).py │ │ ├── 20-RDD (Partition).py │ │ ├── 22-Finding Average-2.py │ │ ├── 24-Solution (Average).py │ │ ├── 25-Finding Min and Max.py │ │ ├── 27-Solution (Min and Max).py │ │ ├── 28-36 Project Code.py │ │ ├── StudentData.csv │ │ ├── average_quiz_sample.csv │ │ └── movie_ratings.csv │ ├── 03-Spark DFs │ │ ├── 02-Creating Spark DFs.py │ │ ├── 03-Spark Infer Schema.py │ │ ├── 04-Spark Provide Schema.py │ │ ├── 05-Create DF from Rdd.py │ │ ├── 06-Rectifying the Error.py │ │ ├── 07-Select DF Colums.py │ │ ├── 08-Spark DF withColumn.py │ │ ├── 09-Spark DF withColumnRenamed and Alias.py │ │ ├── 10-Spark DF Filter rows.py │ │ ├── 12-Solution (select, withColumn, filter).py │ │ ├── 13-Spark DF (Count, Distinct, Duplicate).py │ │ ├── 15-Solution (Distinct, Duplicate).py │ │ ├── 16-Spark DF (sort, orderBy).py │ │ ├── 18-Solution (sort, orderBy).py │ │ ├── 19-Spark DF (Group By).py │ │ ├── 20-Spark DF (Group By - Multiple Rows and Aggregations).py │ │ ├── 22-Spark DF (Group By - Filtering).py │ │ ├── 24-Solution (Group By).py │ │ ├── 26-Solution (Word Count).py │ │ ├── 27-Spark DF (UDFs).py │ │ ├── 29-Solution (UDFs).py │ │ ├── 30-Solution (Cache and Presist).py │ │ ├── 31-Spark DF (DF to RDD).py │ │ ├── 32-Spark DF (Spark SQL).py │ │ ├── 33-Spark DF (Write DF).py │ │ ├── 34-39 Project.py │ │ ├── OfficeData.csv │ │ ├── OfficeDataProject.csv │ │ ├── StudentData.csv │ │ └── WordData.txt │ ├── 04-Collaborative filtering │ │ ├── Collaborative filtering.py │ │ └── Data Set │ │ │ └── Colaborative Filtering Dataset │ │ │ ├── movies.csv │ │ │ └── ratings.csv │ ├── 05-Spark Streaming │ │ ├── 2-6 Spark Streaming RDD.py │ │ ├── 7-9 Spark Streaming DF.py │ │ └── WordData.txt │ ├── 06-ETL │ │ ├── 1-13 ETL.py │ │ └── WordData.txt │ └── 07-Project (CDC) │ │ ├── Dump │ │ ├── Glue.py │ │ └── lambda_function.py └── PPT │ └── Slides.pptx ├── Part 4 ├── 01-PPTs │ └── Slides.pptx └── Codes │ ├── $ operator.txt │ ├── $addToSet operator.txt │ ├── $all operator.txt │ ├── $all quiz.txt │ ├── $and operator.txt │ ├── $and quiz.txt │ ├── $currentDate operator.txt │ ├── $delete quiz.txt │ ├── $each operator.txt │ ├── $elemMatch operator.txt │ ├── $elemMatch quiz.txt │ ├── $eq operator.txt │ ├── $eq quiz.txt │ ├── $exists operator.txt │ ├── $exists quiz.txt │ ├── $expr operator.txt │ ├── $expr quiz.txt │ ├── $gt operator.txt │ ├── $gt quiz.txt │ ├── $gte quiz.txt │ ├── $in operator.txt │ ├── $in quiz.txt │ ├── $inc operator.txt │ ├── $lt operator.txt │ ├── $lt quiz.txt │ ├── $lte quiz.txt │ ├── $max operator.txt │ ├── $min operator.txt │ ├── $mod operator.txt │ ├── $mod quiz.txt │ ├── $mul operator.txt │ ├── $ne operator.txt │ ├── $ne quiz.txt │ ├── $nin operator.txt │ ├── $nin quiz.txt │ ├── $not operator.txt │ ├── $not quiz.txt │ ├── $or operator.txt │ ├── $or quiz.txt │ ├── $pop operator.txt │ ├── $position operator.txt │ ├── $pull operator.txt │ ├── $read quiz.txt │ ├── $rename operator.txt │ ├── $set operator.txt │ ├── $size operator.txt │ ├── $size quiz.txt │ ├── $slice operator.txt │ ├── $sort operator.txt │ ├── $text operator.txt │ ├── $text quiz.txt │ ├── $type operator.txt │ ├── $unset operator.txt │ ├── $update quiz 1.txt │ ├── $update quiz 2.txt │ ├── CRUDWithMongo.rar │ ├── CRUDWithMongo │ ├── CRUDWithMongo │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── settings.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── wsgi.cpython-39.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── DjangoCRUDApp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── db.sqlite3 │ └── manage.py │ ├── DjangoWithMongo.rar │ ├── DjangoWithMongo │ ├── .idea │ │ ├── .gitignore │ │ ├── DjangoWithMongo.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── CRUDWithMongo │ │ ├── CRUDWithMongo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── settings.cpython-39.pyc │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ └── wsgi.cpython-39.pyc │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── DjangoCRUDApp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ └── views.cpython-39.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── db.sqlite3 │ │ └── manage.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── Django-3.2.6.dist-info │ │ │ ├── AUTHORS │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── LICENSE.python │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── _distutils_hack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── override.cpython-39.pyc │ │ │ └── override.py │ │ │ ├── asgiref-3.4.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── asgiref │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _pep562.cpython-39.pyc │ │ │ │ ├── compatibility.cpython-39.pyc │ │ │ │ ├── current_thread_executor.cpython-39.pyc │ │ │ │ ├── local.cpython-39.pyc │ │ │ │ ├── server.cpython-39.pyc │ │ │ │ ├── sync.cpython-39.pyc │ │ │ │ ├── testing.cpython-39.pyc │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ ├── typing.cpython-39.pyc │ │ │ │ └── wsgi.cpython-39.pyc │ │ │ ├── _pep562.py │ │ │ ├── compatibility.py │ │ │ ├── current_thread_executor.py │ │ │ ├── local.py │ │ │ ├── py.typed │ │ │ ├── server.py │ │ │ ├── sync.py │ │ │ ├── testing.py │ │ │ ├── timeout.py │ │ │ ├── typing.py │ │ │ └── wsgi.py │ │ │ ├── bson │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── binary.cpython-39.pyc │ │ │ │ ├── code.cpython-39.pyc │ │ │ │ ├── codec_options.cpython-39.pyc │ │ │ │ ├── dbref.cpython-39.pyc │ │ │ │ ├── decimal128.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── int64.cpython-39.pyc │ │ │ │ ├── json_util.cpython-39.pyc │ │ │ │ ├── max_key.cpython-39.pyc │ │ │ │ ├── min_key.cpython-39.pyc │ │ │ │ ├── objectid.cpython-39.pyc │ │ │ │ ├── py3compat.cpython-39.pyc │ │ │ │ ├── raw_bson.cpython-39.pyc │ │ │ │ ├── regex.cpython-39.pyc │ │ │ │ ├── son.cpython-39.pyc │ │ │ │ ├── timestamp.cpython-39.pyc │ │ │ │ └── tz_util.cpython-39.pyc │ │ │ ├── _cbson.cp39-win_amd64.pyd │ │ │ ├── binary.py │ │ │ ├── code.py │ │ │ ├── codec_options.py │ │ │ ├── dbref.py │ │ │ ├── decimal128.py │ │ │ ├── errors.py │ │ │ ├── int64.py │ │ │ ├── json_util.py │ │ │ ├── max_key.py │ │ │ ├── min_key.py │ │ │ ├── objectid.py │ │ │ ├── py3compat.py │ │ │ ├── raw_bson.py │ │ │ ├── regex.py │ │ │ ├── son.py │ │ │ ├── timestamp.py │ │ │ └── tz_util.py │ │ │ ├── distutils-precedence.pth │ │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ └── shortcuts.cpython-39.pyc │ │ │ ├── apps │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ └── registry.cpython-39.pyc │ │ │ │ ├── config.py │ │ │ │ └── registry.py │ │ │ ├── bin │ │ │ │ ├── __pycache__ │ │ │ │ │ └── django-admin.cpython-39.pyc │ │ │ │ └── django-admin.py │ │ │ ├── conf │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── global_settings.cpython-39.pyc │ │ │ │ ├── app_template │ │ │ │ │ ├── __init__.py-tpl │ │ │ │ │ ├── admin.py-tpl │ │ │ │ │ ├── apps.py-tpl │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── __init__.py-tpl │ │ │ │ │ ├── models.py-tpl │ │ │ │ │ ├── tests.py-tpl │ │ │ │ │ └── views.py-tpl │ │ │ │ ├── global_settings.py │ │ │ │ ├── locale │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── af │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ar │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ast │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── az │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── be │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── bn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── br │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── da │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de_CH │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── dsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── el │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_AU │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_GB │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eo │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_AR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_CO │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_MX │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_NI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_PR │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_VE │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── et │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fa │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ga │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gd │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── he │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── hu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hy │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ig │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── io │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── it │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ka │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── kab │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── kn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ky │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── lt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ml │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── my │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nb │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ne │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── nn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── os │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pa │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ro │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sq │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sw │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ta │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── te │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tg │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── th │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tt │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── udm │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ur │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uz │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── vi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── formats.cpython-39.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ ├── project_template │ │ │ │ │ ├── manage.py-tpl │ │ │ │ │ └── project_name │ │ │ │ │ │ ├── __init__.py-tpl │ │ │ │ │ │ ├── asgi.py-tpl │ │ │ │ │ │ ├── settings.py-tpl │ │ │ │ │ │ ├── urls.py-tpl │ │ │ │ │ │ └── wsgi.py-tpl │ │ │ │ └── urls │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── i18n.cpython-39.pyc │ │ │ │ │ └── static.cpython-39.pyc │ │ │ │ │ ├── i18n.py │ │ │ │ │ └── static.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── admin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── actions.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── checks.cpython-39.pyc │ │ │ │ │ │ ├── decorators.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── filters.cpython-39.pyc │ │ │ │ │ │ ├── forms.cpython-39.pyc │ │ │ │ │ │ ├── helpers.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── options.cpython-39.pyc │ │ │ │ │ │ ├── sites.cpython-39.pyc │ │ │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── widgets.cpython-39.pyc │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── filters.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── am │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_logentry_remove_auto_add.py │ │ │ │ │ │ ├── 0003_logentry_add_action_flag_choices.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ ├── 0002_logentry_remove_auto_add.cpython-39.pyc │ │ │ │ │ │ │ ├── 0003_logentry_add_action_flag_choices.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── options.py │ │ │ │ │ ├── sites.py │ │ │ │ │ ├── static │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ │ ├── changelists.css │ │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ │ ├── fonts.css │ │ │ │ │ │ │ ├── forms.css │ │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ │ ├── nav_sidebar.css │ │ │ │ │ │ │ ├── responsive.css │ │ │ │ │ │ │ ├── responsive_rtl.css │ │ │ │ │ │ │ ├── rtl.css │ │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ │ └── select2 │ │ │ │ │ │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ │ │ │ └── select2.min.css │ │ │ │ │ │ │ └── widgets.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ │ │ │ │ ├── Roboto-Light-webfont.woff │ │ │ │ │ │ │ └── Roboto-Regular-webfont.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── calendar-icons.svg │ │ │ │ │ │ │ ├── gis │ │ │ │ │ │ │ │ ├── move_vertex_off.svg │ │ │ │ │ │ │ │ └── move_vertex_on.svg │ │ │ │ │ │ │ ├── icon-addlink.svg │ │ │ │ │ │ │ ├── icon-alert.svg │ │ │ │ │ │ │ ├── icon-calendar.svg │ │ │ │ │ │ │ ├── icon-changelink.svg │ │ │ │ │ │ │ ├── icon-clock.svg │ │ │ │ │ │ │ ├── icon-deletelink.svg │ │ │ │ │ │ │ ├── icon-no.svg │ │ │ │ │ │ │ ├── icon-unknown-alt.svg │ │ │ │ │ │ │ ├── icon-unknown.svg │ │ │ │ │ │ │ ├── icon-viewlink.svg │ │ │ │ │ │ │ ├── icon-yes.svg │ │ │ │ │ │ │ ├── inline-delete.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── selector-icons.svg │ │ │ │ │ │ │ ├── sorting-icons.svg │ │ │ │ │ │ │ ├── tooltag-add.svg │ │ │ │ │ │ │ └── tooltag-arrowright.svg │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── SelectBox.js │ │ │ │ │ │ │ ├── SelectFilter2.js │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ │ │ │ └── RelatedObjectLookups.js │ │ │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ │ │ ├── calendar.js │ │ │ │ │ │ │ ├── cancel.js │ │ │ │ │ │ │ ├── change_form.js │ │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ │ ├── inlines.js │ │ │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ │ │ ├── nav_sidebar.js │ │ │ │ │ │ │ ├── popup_response.js │ │ │ │ │ │ │ ├── prepopulate.js │ │ │ │ │ │ │ ├── prepopulate_init.js │ │ │ │ │ │ │ ├── urlify.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ │ ├── select2 │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── dsb.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── ne.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── ps.js │ │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tk.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ │ ├── select2.full.js │ │ │ │ │ │ │ └── select2.full.min.js │ │ │ │ │ │ │ └── xregexp │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── xregexp.js │ │ │ │ │ │ │ └── xregexp.min.js │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── 500.html │ │ │ │ │ │ │ ├── actions.html │ │ │ │ │ │ │ ├── app_index.html │ │ │ │ │ │ │ ├── app_list.html │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ │ ├── add_form.html │ │ │ │ │ │ │ │ │ └── change_password.html │ │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ │ ├── base_site.html │ │ │ │ │ │ │ ├── change_form.html │ │ │ │ │ │ │ ├── change_form_object_tools.html │ │ │ │ │ │ │ ├── change_list.html │ │ │ │ │ │ │ ├── change_list_object_tools.html │ │ │ │ │ │ │ ├── change_list_results.html │ │ │ │ │ │ │ ├── date_hierarchy.html │ │ │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ │ │ ├── delete_selected_confirmation.html │ │ │ │ │ │ │ ├── edit_inline │ │ │ │ │ │ │ │ ├── stacked.html │ │ │ │ │ │ │ │ └── tabular.html │ │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ │ ├── includes │ │ │ │ │ │ │ │ ├── fieldset.html │ │ │ │ │ │ │ │ └── object_delete_summary.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── invalid_setup.html │ │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ │ ├── nav_sidebar.html │ │ │ │ │ │ │ ├── object_history.html │ │ │ │ │ │ │ ├── pagination.html │ │ │ │ │ │ │ ├── popup_response.html │ │ │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ │ │ ├── search_form.html │ │ │ │ │ │ │ ├── submit_line.html │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ │ │ ├── foreign_key_raw_id.html │ │ │ │ │ │ │ │ ├── many_to_many_raw_id.html │ │ │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ │ │ ├── related_widget_wrapper.html │ │ │ │ │ │ │ │ ├── split_datetime.html │ │ │ │ │ │ │ │ └── url.html │ │ │ │ │ │ └── registration │ │ │ │ │ │ │ ├── logged_out.html │ │ │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ │ │ └── password_reset_form.html │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── admin_list.cpython-39.pyc │ │ │ │ │ │ │ ├── admin_modify.cpython-39.pyc │ │ │ │ │ │ │ ├── admin_urls.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ └── log.cpython-39.pyc │ │ │ │ │ │ ├── admin_list.py │ │ │ │ │ │ ├── admin_modify.py │ │ │ │ │ │ ├── admin_urls.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── log.py │ │ │ │ │ ├── tests.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── views │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── autocomplete.cpython-39.pyc │ │ │ │ │ │ │ ├── decorators.cpython-39.pyc │ │ │ │ │ │ │ └── main.cpython-39.pyc │ │ │ │ │ │ ├── autocomplete.py │ │ │ │ │ │ ├── decorators.py │ │ │ │ │ │ └── main.py │ │ │ │ │ └── widgets.py │ │ │ │ ├── admindocs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── admin_doc │ │ │ │ │ │ │ ├── bookmarklets.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── missing_docutils.html │ │ │ │ │ │ │ ├── model_detail.html │ │ │ │ │ │ │ ├── model_index.html │ │ │ │ │ │ │ ├── template_detail.html │ │ │ │ │ │ │ ├── template_filter_index.html │ │ │ │ │ │ │ ├── template_tag_index.html │ │ │ │ │ │ │ ├── view_detail.html │ │ │ │ │ │ │ └── view_index.html │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── auth │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── backends.cpython-39.pyc │ │ │ │ │ │ ├── base_user.cpython-39.pyc │ │ │ │ │ │ ├── checks.cpython-39.pyc │ │ │ │ │ │ ├── context_processors.cpython-39.pyc │ │ │ │ │ │ ├── decorators.cpython-39.pyc │ │ │ │ │ │ ├── forms.cpython-39.pyc │ │ │ │ │ │ ├── hashers.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── mixins.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── password_validation.cpython-39.pyc │ │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ │ ├── tokens.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ ├── validators.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── backends.py │ │ │ │ │ ├── base_user.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── common-passwords.txt.gz │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── modwsgi.cpython-39.pyc │ │ │ │ │ │ └── modwsgi.py │ │ │ │ │ ├── hashers.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── changepassword.cpython-39.pyc │ │ │ │ │ │ │ └── createsuperuser.cpython-39.pyc │ │ │ │ │ │ │ ├── changepassword.py │ │ │ │ │ │ │ └── createsuperuser.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_permission_name_max_length.py │ │ │ │ │ │ ├── 0003_alter_user_email_max_length.py │ │ │ │ │ │ ├── 0004_alter_user_username_opts.py │ │ │ │ │ │ ├── 0005_alter_user_last_login_null.py │ │ │ │ │ │ ├── 0006_require_contenttypes_0002.py │ │ │ │ │ │ ├── 0007_alter_validators_add_error_messages.py │ │ │ │ │ │ ├── 0008_alter_user_username_max_length.py │ │ │ │ │ │ ├── 0009_alter_user_last_name_max_length.py │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.py │ │ │ │ │ │ ├── 0011_update_proxy_permissions.py │ │ │ │ │ │ ├── 0012_alter_user_first_name_max_length.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ ├── 0002_alter_permission_name_max_length.cpython-39.pyc │ │ │ │ │ │ │ ├── 0003_alter_user_email_max_length.cpython-39.pyc │ │ │ │ │ │ │ ├── 0004_alter_user_username_opts.cpython-39.pyc │ │ │ │ │ │ │ ├── 0005_alter_user_last_login_null.cpython-39.pyc │ │ │ │ │ │ │ ├── 0006_require_contenttypes_0002.cpython-39.pyc │ │ │ │ │ │ │ ├── 0007_alter_validators_add_error_messages.cpython-39.pyc │ │ │ │ │ │ │ ├── 0008_alter_user_username_max_length.cpython-39.pyc │ │ │ │ │ │ │ ├── 0009_alter_user_last_name_max_length.cpython-39.pyc │ │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.cpython-39.pyc │ │ │ │ │ │ │ ├── 0011_update_proxy_permissions.cpython-39.pyc │ │ │ │ │ │ │ ├── 0012_alter_user_first_name_max_length.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── mixins.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── password_validation.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ └── read_only_password_hash.html │ │ │ │ │ │ └── registration │ │ │ │ │ │ │ └── password_reset_subject.txt │ │ │ │ │ ├── tokens.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── validators.py │ │ │ │ │ └── views.py │ │ │ │ ├── contenttypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── checks.cpython-39.pyc │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ ├── forms.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── remove_stale_contenttypes.cpython-39.pyc │ │ │ │ │ │ │ └── remove_stale_contenttypes.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_remove_content_type_name.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ ├── 0002_remove_content_type_name.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── views.py │ │ │ │ ├── flatpages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── forms.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── sitemaps.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── sitemaps.py │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── flatpages.cpython-39.pyc │ │ │ │ │ │ └── flatpages.py │ │ │ │ │ ├── urls.py │ │ │ │ │ └── views.py │ │ │ │ ├── gis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── feeds.cpython-39.pyc │ │ │ │ │ │ ├── geometry.cpython-39.pyc │ │ │ │ │ │ ├── measure.cpython-39.pyc │ │ │ │ │ │ ├── ptr.cpython-39.pyc │ │ │ │ │ │ ├── shortcuts.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── options.cpython-39.pyc │ │ │ │ │ │ │ └── widgets.cpython-39.pyc │ │ │ │ │ │ ├── options.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── db │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ │ │ └── operations.cpython-39.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── postgis │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── const.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── pgraster.cpython-39.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ ├── pgraster.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── spatialite │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── aggregates.cpython-39.pyc │ │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ │ ├── functions.cpython-39.pyc │ │ │ │ │ │ │ ├── lookups.cpython-39.pyc │ │ │ │ │ │ │ └── proxy.cpython-39.pyc │ │ │ │ │ │ │ ├── aggregates.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ │ ├── lookups.py │ │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── conversion.cpython-39.pyc │ │ │ │ │ │ │ └── conversion.py │ │ │ │ │ ├── feeds.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ │ └── widgets.cpython-39.pyc │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── gdal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── datasource.cpython-39.pyc │ │ │ │ │ │ │ ├── driver.cpython-39.pyc │ │ │ │ │ │ │ ├── envelope.cpython-39.pyc │ │ │ │ │ │ │ ├── error.cpython-39.pyc │ │ │ │ │ │ │ ├── feature.cpython-39.pyc │ │ │ │ │ │ │ ├── field.cpython-39.pyc │ │ │ │ │ │ │ ├── geometries.cpython-39.pyc │ │ │ │ │ │ │ ├── geomtype.cpython-39.pyc │ │ │ │ │ │ │ ├── layer.cpython-39.pyc │ │ │ │ │ │ │ ├── libgdal.cpython-39.pyc │ │ │ │ │ │ │ └── srs.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── datasource.py │ │ │ │ │ │ ├── driver.py │ │ │ │ │ │ ├── envelope.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── feature.py │ │ │ │ │ │ ├── field.py │ │ │ │ │ │ ├── geometries.py │ │ │ │ │ │ ├── geomtype.py │ │ │ │ │ │ ├── layer.py │ │ │ │ │ │ ├── libgdal.py │ │ │ │ │ │ ├── prototypes │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── ds.cpython-39.pyc │ │ │ │ │ │ │ │ ├── errcheck.cpython-39.pyc │ │ │ │ │ │ │ │ ├── generation.cpython-39.pyc │ │ │ │ │ │ │ │ ├── geom.cpython-39.pyc │ │ │ │ │ │ │ │ ├── raster.cpython-39.pyc │ │ │ │ │ │ │ │ └── srs.cpython-39.pyc │ │ │ │ │ │ │ ├── ds.py │ │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ │ ├── generation.py │ │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ │ ├── raster.py │ │ │ │ │ │ │ └── srs.py │ │ │ │ │ │ ├── raster │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── band.cpython-39.pyc │ │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ │ ├── const.cpython-39.pyc │ │ │ │ │ │ │ │ └── source.cpython-39.pyc │ │ │ │ │ │ │ ├── band.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ └── source.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ ├── geoip2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ └── resources.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── resources.py │ │ │ │ │ ├── geometry.py │ │ │ │ │ ├── geos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── collections.cpython-39.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-39.pyc │ │ │ │ │ │ │ ├── error.cpython-39.pyc │ │ │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ │ │ ├── geometry.cpython-39.pyc │ │ │ │ │ │ │ ├── io.cpython-39.pyc │ │ │ │ │ │ │ ├── libgeos.cpython-39.pyc │ │ │ │ │ │ │ ├── linestring.cpython-39.pyc │ │ │ │ │ │ │ ├── mutable_list.cpython-39.pyc │ │ │ │ │ │ │ ├── point.cpython-39.pyc │ │ │ │ │ │ │ ├── polygon.cpython-39.pyc │ │ │ │ │ │ │ └── prepared.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── collections.py │ │ │ │ │ │ ├── coordseq.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── geometry.py │ │ │ │ │ │ ├── io.py │ │ │ │ │ │ ├── libgeos.py │ │ │ │ │ │ ├── linestring.py │ │ │ │ │ │ ├── mutable_list.py │ │ │ │ │ │ ├── point.py │ │ │ │ │ │ ├── polygon.py │ │ │ │ │ │ ├── prepared.py │ │ │ │ │ │ └── prototypes │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-39.pyc │ │ │ │ │ │ │ ├── errcheck.cpython-39.pyc │ │ │ │ │ │ │ ├── geom.cpython-39.pyc │ │ │ │ │ │ │ ├── io.cpython-39.pyc │ │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ │ ├── predicates.cpython-39.pyc │ │ │ │ │ │ │ ├── prepared.cpython-39.pyc │ │ │ │ │ │ │ ├── threadsafe.cpython-39.pyc │ │ │ │ │ │ │ └── topology.cpython-39.pyc │ │ │ │ │ │ │ ├── coordseq.py │ │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ │ ├── io.py │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── predicates.py │ │ │ │ │ │ │ ├── prepared.py │ │ │ │ │ │ │ ├── threadsafe.py │ │ │ │ │ │ │ └── topology.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── inspectdb.cpython-39.pyc │ │ │ │ │ │ │ └── ogrinspect.cpython-39.pyc │ │ │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ │ │ └── ogrinspect.py │ │ │ │ │ ├── measure.py │ │ │ │ │ ├── ptr.py │ │ │ │ │ ├── serializers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── geojson.cpython-39.pyc │ │ │ │ │ │ └── geojson.py │ │ │ │ │ ├── shortcuts.py │ │ │ │ │ ├── sitemaps │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── kml.cpython-39.pyc │ │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ │ ├── kml.py │ │ │ │ │ │ └── views.py │ │ │ │ │ ├── static │ │ │ │ │ │ └── gis │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── ol3.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── draw_line_off.svg │ │ │ │ │ │ │ ├── draw_line_on.svg │ │ │ │ │ │ │ ├── draw_point_off.svg │ │ │ │ │ │ │ ├── draw_point_on.svg │ │ │ │ │ │ │ ├── draw_polygon_off.svg │ │ │ │ │ │ │ └── draw_polygon_on.svg │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── OLMapWidget.js │ │ │ │ │ ├── templates │ │ │ │ │ │ └── gis │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── openlayers.html │ │ │ │ │ │ │ ├── openlayers.js │ │ │ │ │ │ │ ├── osm.html │ │ │ │ │ │ │ └── osm.js │ │ │ │ │ │ │ ├── kml │ │ │ │ │ │ │ ├── base.kml │ │ │ │ │ │ │ └── placemarks.kml │ │ │ │ │ │ │ ├── openlayers-osm.html │ │ │ │ │ │ │ └── openlayers.html │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── layermapping.cpython-39.pyc │ │ │ │ │ │ │ ├── ogrinfo.cpython-39.pyc │ │ │ │ │ │ │ ├── ogrinspect.cpython-39.pyc │ │ │ │ │ │ │ └── srs.cpython-39.pyc │ │ │ │ │ │ ├── layermapping.py │ │ │ │ │ │ ├── ogrinfo.py │ │ │ │ │ │ ├── ogrinspect.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ └── views.py │ │ │ │ ├── humanize │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── apps.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ms │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ └── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── humanize.cpython-39.pyc │ │ │ │ │ │ └── humanize.py │ │ │ │ ├── messages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ │ ├── context_processors.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── api.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── cookie.cpython-39.pyc │ │ │ │ │ │ │ ├── fallback.cpython-39.pyc │ │ │ │ │ │ │ └── session.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cookie.py │ │ │ │ │ │ ├── fallback.py │ │ │ │ │ │ └── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── postgres │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── constraints.cpython-39.pyc │ │ │ │ │ │ ├── functions.cpython-39.pyc │ │ │ │ │ │ ├── indexes.cpython-39.pyc │ │ │ │ │ │ ├── lookups.cpython-39.pyc │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ │ ├── serializers.cpython-39.pyc │ │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── validators.cpython-39.pyc │ │ │ │ │ ├── aggregates │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── general.cpython-39.pyc │ │ │ │ │ │ │ ├── mixins.cpython-39.pyc │ │ │ │ │ │ │ └── statistics.cpython-39.pyc │ │ │ │ │ │ ├── general.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ └── statistics.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constraints.py │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ │ │ ├── citext.cpython-39.pyc │ │ │ │ │ │ │ ├── hstore.cpython-39.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-39.pyc │ │ │ │ │ │ │ ├── ranges.cpython-39.pyc │ │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── citext.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ ├── ranges.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ │ │ ├── hstore.cpython-39.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-39.pyc │ │ │ │ │ │ │ └── ranges.cpython-39.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ └── ranges.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── indexes.py │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── lookups.py │ │ │ │ │ ├── operations.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── serializers.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── utils.py │ │ │ │ │ └── validators.py │ │ │ │ ├── redirects │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ └── models.cpython-39.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_redirect_new_path_help_text.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ ├── 0002_alter_redirect_new_path_help_text.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── models.py │ │ │ │ ├── sessions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── base_session.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ └── serializers.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ │ ├── cached_db.cpython-39.pyc │ │ │ │ │ │ │ ├── db.cpython-39.pyc │ │ │ │ │ │ │ ├── file.cpython-39.pyc │ │ │ │ │ │ │ └── signed_cookies.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── cached_db.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ ├── file.py │ │ │ │ │ │ └── signed_cookies.py │ │ │ │ │ ├── base_session.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── clearsessions.cpython-39.pyc │ │ │ │ │ │ │ └── clearsessions.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── serializers.py │ │ │ │ ├── sitemaps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── ping_google.cpython-39.pyc │ │ │ │ │ │ │ └── ping_google.py │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ │ └── sitemap_index.xml │ │ │ │ │ └── views.py │ │ │ │ ├── sites │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── checks.cpython-39.pyc │ │ │ │ │ │ ├── management.cpython-39.pyc │ │ │ │ │ │ ├── managers.cpython-39.pyc │ │ │ │ │ │ ├── middleware.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── requests.cpython-39.pyc │ │ │ │ │ │ └── shortcuts.cpython-39.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar_DZ │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ky │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management.py │ │ │ │ │ ├── managers.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_domain_unique.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ │ │ │ ├── 0002_alter_domain_unique.cpython-39.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── requests.py │ │ │ │ │ └── shortcuts.py │ │ │ │ ├── staticfiles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ │ ├── checks.cpython-39.pyc │ │ │ │ │ │ ├── finders.cpython-39.pyc │ │ │ │ │ │ ├── handlers.cpython-39.pyc │ │ │ │ │ │ ├── storage.cpython-39.pyc │ │ │ │ │ │ ├── testing.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── finders.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── collectstatic.cpython-39.pyc │ │ │ │ │ │ │ ├── findstatic.cpython-39.pyc │ │ │ │ │ │ │ └── runserver.cpython-39.pyc │ │ │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ │ │ ├── findstatic.py │ │ │ │ │ │ │ └── runserver.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ └── syndication │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── apps.cpython-39.pyc │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ └── views.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── asgi.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── paginator.cpython-39.pyc │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ ├── signing.cpython-39.pyc │ │ │ │ │ ├── validators.cpython-39.pyc │ │ │ │ │ └── wsgi.cpython-39.pyc │ │ │ │ ├── asgi.py │ │ │ │ ├── cache │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── db.cpython-39.pyc │ │ │ │ │ │ │ ├── dummy.cpython-39.pyc │ │ │ │ │ │ │ ├── filebased.cpython-39.pyc │ │ │ │ │ │ │ ├── locmem.cpython-39.pyc │ │ │ │ │ │ │ └── memcached.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── filebased.py │ │ │ │ │ │ ├── locmem.py │ │ │ │ │ │ └── memcached.py │ │ │ │ │ └── utils.py │ │ │ │ ├── checks │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── async_checks.cpython-39.pyc │ │ │ │ │ │ ├── caches.cpython-39.pyc │ │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ │ ├── messages.cpython-39.pyc │ │ │ │ │ │ ├── model_checks.cpython-39.pyc │ │ │ │ │ │ ├── registry.cpython-39.pyc │ │ │ │ │ │ ├── templates.cpython-39.pyc │ │ │ │ │ │ ├── translation.cpython-39.pyc │ │ │ │ │ │ └── urls.cpython-39.pyc │ │ │ │ │ ├── async_checks.py │ │ │ │ │ ├── caches.py │ │ │ │ │ ├── compatibility │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── database.py │ │ │ │ │ ├── messages.py │ │ │ │ │ ├── model_checks.py │ │ │ │ │ ├── registry.py │ │ │ │ │ ├── security │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── csrf.cpython-39.pyc │ │ │ │ │ │ │ └── sessions.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── csrf.py │ │ │ │ │ │ └── sessions.py │ │ │ │ │ ├── templates.py │ │ │ │ │ ├── translation.py │ │ │ │ │ └── urls.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── files │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── images.cpython-39.pyc │ │ │ │ │ │ ├── locks.cpython-39.pyc │ │ │ │ │ │ ├── move.cpython-39.pyc │ │ │ │ │ │ ├── storage.cpython-39.pyc │ │ │ │ │ │ ├── temp.cpython-39.pyc │ │ │ │ │ │ ├── uploadedfile.cpython-39.pyc │ │ │ │ │ │ ├── uploadhandler.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── locks.py │ │ │ │ │ ├── move.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── temp.py │ │ │ │ │ ├── uploadedfile.py │ │ │ │ │ ├── uploadhandler.py │ │ │ │ │ └── utils.py │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── asgi.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── exception.cpython-39.pyc │ │ │ │ │ │ └── wsgi.cpython-39.pyc │ │ │ │ │ ├── asgi.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── wsgi.py │ │ │ │ ├── mail │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── message.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ │ │ │ ├── dummy.cpython-39.pyc │ │ │ │ │ │ │ ├── filebased.cpython-39.pyc │ │ │ │ │ │ │ ├── locmem.cpython-39.pyc │ │ │ │ │ │ │ └── smtp.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── console.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── filebased.py │ │ │ │ │ │ ├── locmem.py │ │ │ │ │ │ └── smtp.py │ │ │ │ │ ├── message.py │ │ │ │ │ └── utils.py │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── color.cpython-39.pyc │ │ │ │ │ │ ├── sql.cpython-39.pyc │ │ │ │ │ │ ├── templates.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ │ ├── compilemessages.cpython-39.pyc │ │ │ │ │ │ │ ├── createcachetable.cpython-39.pyc │ │ │ │ │ │ │ ├── dbshell.cpython-39.pyc │ │ │ │ │ │ │ ├── diffsettings.cpython-39.pyc │ │ │ │ │ │ │ ├── dumpdata.cpython-39.pyc │ │ │ │ │ │ │ ├── flush.cpython-39.pyc │ │ │ │ │ │ │ ├── inspectdb.cpython-39.pyc │ │ │ │ │ │ │ ├── loaddata.cpython-39.pyc │ │ │ │ │ │ │ ├── makemessages.cpython-39.pyc │ │ │ │ │ │ │ ├── makemigrations.cpython-39.pyc │ │ │ │ │ │ │ ├── migrate.cpython-39.pyc │ │ │ │ │ │ │ ├── runserver.cpython-39.pyc │ │ │ │ │ │ │ ├── sendtestemail.cpython-39.pyc │ │ │ │ │ │ │ ├── shell.cpython-39.pyc │ │ │ │ │ │ │ ├── showmigrations.cpython-39.pyc │ │ │ │ │ │ │ ├── sqlflush.cpython-39.pyc │ │ │ │ │ │ │ ├── sqlmigrate.cpython-39.pyc │ │ │ │ │ │ │ ├── sqlsequencereset.cpython-39.pyc │ │ │ │ │ │ │ ├── squashmigrations.cpython-39.pyc │ │ │ │ │ │ │ ├── startapp.cpython-39.pyc │ │ │ │ │ │ │ ├── startproject.cpython-39.pyc │ │ │ │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ │ │ │ └── testserver.cpython-39.pyc │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── compilemessages.py │ │ │ │ │ │ ├── createcachetable.py │ │ │ │ │ │ ├── dbshell.py │ │ │ │ │ │ ├── diffsettings.py │ │ │ │ │ │ ├── dumpdata.py │ │ │ │ │ │ ├── flush.py │ │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ │ ├── loaddata.py │ │ │ │ │ │ ├── makemessages.py │ │ │ │ │ │ ├── makemigrations.py │ │ │ │ │ │ ├── migrate.py │ │ │ │ │ │ ├── runserver.py │ │ │ │ │ │ ├── sendtestemail.py │ │ │ │ │ │ ├── shell.py │ │ │ │ │ │ ├── showmigrations.py │ │ │ │ │ │ ├── sqlflush.py │ │ │ │ │ │ ├── sqlmigrate.py │ │ │ │ │ │ ├── sqlsequencereset.py │ │ │ │ │ │ ├── squashmigrations.py │ │ │ │ │ │ ├── startapp.py │ │ │ │ │ │ ├── startproject.py │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ └── testserver.py │ │ │ │ │ ├── sql.py │ │ │ │ │ ├── templates.py │ │ │ │ │ └── utils.py │ │ │ │ ├── paginator.py │ │ │ │ ├── serializers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── json.cpython-39.pyc │ │ │ │ │ │ ├── jsonl.cpython-39.pyc │ │ │ │ │ │ ├── python.cpython-39.pyc │ │ │ │ │ │ ├── pyyaml.cpython-39.pyc │ │ │ │ │ │ └── xml_serializer.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── json.py │ │ │ │ │ ├── jsonl.py │ │ │ │ │ ├── python.py │ │ │ │ │ ├── pyyaml.py │ │ │ │ │ └── xml_serializer.py │ │ │ │ ├── servers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── basehttp.cpython-39.pyc │ │ │ │ │ └── basehttp.py │ │ │ │ ├── signals.py │ │ │ │ ├── signing.py │ │ │ │ ├── validators.py │ │ │ │ └── wsgi.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── transaction.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── ddl_references.cpython-39.pyc │ │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── base │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ ├── schema.cpython-39.pyc │ │ │ │ │ │ │ └── validation.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── ddl_references.py │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ └── features.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── features.py │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ ├── compiler.cpython-39.pyc │ │ │ │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ ├── schema.cpython-39.pyc │ │ │ │ │ │ │ └── validation.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ ├── functions.cpython-39.pyc │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ ├── schema.cpython-39.pyc │ │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ │ └── validation.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── postgresql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ │ │ │ └── schema.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ └── utils.py │ │ │ │ ├── migrations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── autodetector.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── executor.cpython-39.pyc │ │ │ │ │ │ ├── graph.cpython-39.pyc │ │ │ │ │ │ ├── loader.cpython-39.pyc │ │ │ │ │ │ ├── migration.cpython-39.pyc │ │ │ │ │ │ ├── optimizer.cpython-39.pyc │ │ │ │ │ │ ├── questioner.cpython-39.pyc │ │ │ │ │ │ ├── recorder.cpython-39.pyc │ │ │ │ │ │ ├── serializer.cpython-39.pyc │ │ │ │ │ │ ├── state.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── writer.cpython-39.pyc │ │ │ │ │ ├── autodetector.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── executor.py │ │ │ │ │ ├── graph.py │ │ │ │ │ ├── loader.py │ │ │ │ │ ├── migration.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ ├── special.cpython-39.pyc │ │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── special.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── optimizer.py │ │ │ │ │ ├── questioner.py │ │ │ │ │ ├── recorder.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── state.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── writer.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── aggregates.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ │ ├── constraints.cpython-39.pyc │ │ │ │ │ │ ├── deletion.cpython-39.pyc │ │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ │ ├── expressions.cpython-39.pyc │ │ │ │ │ │ ├── indexes.cpython-39.pyc │ │ │ │ │ │ ├── lookups.cpython-39.pyc │ │ │ │ │ │ ├── manager.cpython-39.pyc │ │ │ │ │ │ ├── options.cpython-39.pyc │ │ │ │ │ │ ├── query.cpython-39.pyc │ │ │ │ │ │ ├── query_utils.cpython-39.pyc │ │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── constraints.py │ │ │ │ │ ├── deletion.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── expressions.py │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── files.cpython-39.pyc │ │ │ │ │ │ │ ├── json.cpython-39.pyc │ │ │ │ │ │ │ ├── mixins.cpython-39.pyc │ │ │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ │ │ ├── related.cpython-39.pyc │ │ │ │ │ │ │ ├── related_descriptors.cpython-39.pyc │ │ │ │ │ │ │ ├── related_lookups.cpython-39.pyc │ │ │ │ │ │ │ └── reverse_related.cpython-39.pyc │ │ │ │ │ │ ├── files.py │ │ │ │ │ │ ├── json.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ ├── related.py │ │ │ │ │ │ ├── related_descriptors.py │ │ │ │ │ │ ├── related_lookups.py │ │ │ │ │ │ └── reverse_related.py │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── comparison.cpython-39.pyc │ │ │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ │ │ ├── math.cpython-39.pyc │ │ │ │ │ │ │ ├── mixins.cpython-39.pyc │ │ │ │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ │ │ │ └── window.cpython-39.pyc │ │ │ │ │ │ ├── comparison.py │ │ │ │ │ │ ├── datetime.py │ │ │ │ │ │ ├── math.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── text.py │ │ │ │ │ │ └── window.py │ │ │ │ │ ├── indexes.py │ │ │ │ │ ├── lookups.py │ │ │ │ │ ├── manager.py │ │ │ │ │ ├── options.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── query_utils.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── compiler.cpython-39.pyc │ │ │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ │ │ ├── datastructures.cpython-39.pyc │ │ │ │ │ │ │ ├── query.cpython-39.pyc │ │ │ │ │ │ │ ├── subqueries.cpython-39.pyc │ │ │ │ │ │ │ └── where.cpython-39.pyc │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── datastructures.py │ │ │ │ │ │ ├── query.py │ │ │ │ │ │ ├── subqueries.py │ │ │ │ │ │ └── where.py │ │ │ │ │ └── utils.py │ │ │ │ ├── transaction.py │ │ │ │ └── utils.py │ │ │ ├── dispatch │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── dispatcher.cpython-39.pyc │ │ │ │ ├── dispatcher.py │ │ │ │ └── license.txt │ │ │ ├── forms │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── boundfield.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── forms.cpython-39.pyc │ │ │ │ │ ├── formsets.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── renderers.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── widgets.cpython-39.pyc │ │ │ │ ├── boundfield.py │ │ │ │ ├── fields.py │ │ │ │ ├── forms.py │ │ │ │ ├── formsets.py │ │ │ │ ├── jinja2 │ │ │ │ │ └── django │ │ │ │ │ │ └── forms │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── attrs.html │ │ │ │ │ │ ├── checkbox.html │ │ │ │ │ │ ├── checkbox_option.html │ │ │ │ │ │ ├── checkbox_select.html │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ ├── datetime.html │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ ├── file.html │ │ │ │ │ │ ├── hidden.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── input_option.html │ │ │ │ │ │ ├── multiple_hidden.html │ │ │ │ │ │ ├── multiple_input.html │ │ │ │ │ │ ├── multiwidget.html │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ ├── password.html │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ ├── radio_option.html │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ ├── select_date.html │ │ │ │ │ │ ├── select_option.html │ │ │ │ │ │ ├── splitdatetime.html │ │ │ │ │ │ ├── splithiddendatetime.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── textarea.html │ │ │ │ │ │ ├── time.html │ │ │ │ │ │ └── url.html │ │ │ │ ├── models.py │ │ │ │ ├── renderers.py │ │ │ │ ├── templates │ │ │ │ │ └── django │ │ │ │ │ │ └── forms │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── attrs.html │ │ │ │ │ │ ├── checkbox.html │ │ │ │ │ │ ├── checkbox_option.html │ │ │ │ │ │ ├── checkbox_select.html │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ ├── datetime.html │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ ├── file.html │ │ │ │ │ │ ├── hidden.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── input_option.html │ │ │ │ │ │ ├── multiple_hidden.html │ │ │ │ │ │ ├── multiple_input.html │ │ │ │ │ │ ├── multiwidget.html │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ ├── password.html │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ ├── radio_option.html │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ ├── select_date.html │ │ │ │ │ │ ├── select_option.html │ │ │ │ │ │ ├── splitdatetime.html │ │ │ │ │ │ ├── splithiddendatetime.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── textarea.html │ │ │ │ │ │ ├── time.html │ │ │ │ │ │ └── url.html │ │ │ │ ├── utils.py │ │ │ │ └── widgets.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cookie.cpython-39.pyc │ │ │ │ │ ├── multipartparser.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ ├── cookie.py │ │ │ │ ├── multipartparser.py │ │ │ │ ├── request.py │ │ │ │ └── response.py │ │ │ ├── middleware │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── clickjacking.cpython-39.pyc │ │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ │ ├── csrf.cpython-39.pyc │ │ │ │ │ ├── gzip.cpython-39.pyc │ │ │ │ │ ├── http.cpython-39.pyc │ │ │ │ │ ├── locale.cpython-39.pyc │ │ │ │ │ └── security.cpython-39.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── clickjacking.py │ │ │ │ ├── common.py │ │ │ │ ├── csrf.py │ │ │ │ ├── gzip.py │ │ │ │ ├── http.py │ │ │ │ ├── locale.py │ │ │ │ └── security.py │ │ │ ├── shortcuts.py │ │ │ ├── template │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── autoreload.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── context.cpython-39.pyc │ │ │ │ │ ├── context_processors.cpython-39.pyc │ │ │ │ │ ├── defaultfilters.cpython-39.pyc │ │ │ │ │ ├── defaulttags.cpython-39.pyc │ │ │ │ │ ├── engine.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── library.cpython-39.pyc │ │ │ │ │ ├── loader.cpython-39.pyc │ │ │ │ │ ├── loader_tags.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── smartif.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── autoreload.py │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── django.cpython-39.pyc │ │ │ │ │ │ ├── dummy.cpython-39.pyc │ │ │ │ │ │ ├── jinja2.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── django.py │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── jinja2.py │ │ │ │ │ └── utils.py │ │ │ │ ├── base.py │ │ │ │ ├── context.py │ │ │ │ ├── context_processors.py │ │ │ │ ├── defaultfilters.py │ │ │ │ ├── defaulttags.py │ │ │ │ ├── engine.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── library.py │ │ │ │ ├── loader.py │ │ │ │ ├── loader_tags.py │ │ │ │ ├── loaders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── app_directories.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── cached.cpython-39.pyc │ │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ │ └── locmem.cpython-39.pyc │ │ │ │ │ ├── app_directories.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cached.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ └── locmem.py │ │ │ │ ├── response.py │ │ │ │ ├── smartif.py │ │ │ │ └── utils.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── i18n.cpython-39.pyc │ │ │ │ │ ├── l10n.cpython-39.pyc │ │ │ │ │ ├── static.cpython-39.pyc │ │ │ │ │ └── tz.cpython-39.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── i18n.py │ │ │ │ ├── l10n.py │ │ │ │ ├── static.py │ │ │ │ └── tz.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ │ ├── html.cpython-39.pyc │ │ │ │ │ ├── runner.cpython-39.pyc │ │ │ │ │ ├── selenium.cpython-39.pyc │ │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ │ ├── testcases.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── client.py │ │ │ │ ├── html.py │ │ │ │ ├── runner.py │ │ │ │ ├── selenium.py │ │ │ │ ├── signals.py │ │ │ │ ├── testcases.py │ │ │ │ └── utils.py │ │ │ ├── urls │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── conf.cpython-39.pyc │ │ │ │ │ ├── converters.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── conf.py │ │ │ │ ├── converters.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── resolvers.py │ │ │ │ └── utils.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _os.cpython-39.pyc │ │ │ │ │ ├── archive.cpython-39.pyc │ │ │ │ │ ├── asyncio.cpython-39.pyc │ │ │ │ │ ├── autoreload.cpython-39.pyc │ │ │ │ │ ├── baseconv.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── crypto.cpython-39.pyc │ │ │ │ │ ├── datastructures.cpython-39.pyc │ │ │ │ │ ├── dateformat.cpython-39.pyc │ │ │ │ │ ├── dateparse.cpython-39.pyc │ │ │ │ │ ├── dates.cpython-39.pyc │ │ │ │ │ ├── datetime_safe.cpython-39.pyc │ │ │ │ │ ├── deconstruct.cpython-39.pyc │ │ │ │ │ ├── decorators.cpython-39.pyc │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ ├── duration.cpython-39.pyc │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ ├── feedgenerator.cpython-39.pyc │ │ │ │ │ ├── formats.cpython-39.pyc │ │ │ │ │ ├── functional.cpython-39.pyc │ │ │ │ │ ├── hashable.cpython-39.pyc │ │ │ │ │ ├── html.cpython-39.pyc │ │ │ │ │ ├── http.cpython-39.pyc │ │ │ │ │ ├── inspect.cpython-39.pyc │ │ │ │ │ ├── ipv6.cpython-39.pyc │ │ │ │ │ ├── itercompat.cpython-39.pyc │ │ │ │ │ ├── jslex.cpython-39.pyc │ │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ │ ├── lorem_ipsum.cpython-39.pyc │ │ │ │ │ ├── module_loading.cpython-39.pyc │ │ │ │ │ ├── numberformat.cpython-39.pyc │ │ │ │ │ ├── regex_helper.cpython-39.pyc │ │ │ │ │ ├── safestring.cpython-39.pyc │ │ │ │ │ ├── termcolors.cpython-39.pyc │ │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ │ ├── timesince.cpython-39.pyc │ │ │ │ │ ├── timezone.cpython-39.pyc │ │ │ │ │ ├── topological_sort.cpython-39.pyc │ │ │ │ │ ├── tree.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── xmlutils.cpython-39.pyc │ │ │ │ ├── _os.py │ │ │ │ ├── archive.py │ │ │ │ ├── asyncio.py │ │ │ │ ├── autoreload.py │ │ │ │ ├── baseconv.py │ │ │ │ ├── cache.py │ │ │ │ ├── connection.py │ │ │ │ ├── crypto.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── dateformat.py │ │ │ │ ├── dateparse.py │ │ │ │ ├── dates.py │ │ │ │ ├── datetime_safe.py │ │ │ │ ├── deconstruct.py │ │ │ │ ├── decorators.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── duration.py │ │ │ │ ├── encoding.py │ │ │ │ ├── feedgenerator.py │ │ │ │ ├── formats.py │ │ │ │ ├── functional.py │ │ │ │ ├── hashable.py │ │ │ │ ├── html.py │ │ │ │ ├── http.py │ │ │ │ ├── inspect.py │ │ │ │ ├── ipv6.py │ │ │ │ ├── itercompat.py │ │ │ │ ├── jslex.py │ │ │ │ ├── log.py │ │ │ │ ├── lorem_ipsum.py │ │ │ │ ├── module_loading.py │ │ │ │ ├── numberformat.py │ │ │ │ ├── regex_helper.py │ │ │ │ ├── safestring.py │ │ │ │ ├── termcolors.py │ │ │ │ ├── text.py │ │ │ │ ├── timesince.py │ │ │ │ ├── timezone.py │ │ │ │ ├── topological_sort.py │ │ │ │ ├── translation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── reloader.cpython-39.pyc │ │ │ │ │ │ ├── template.cpython-39.pyc │ │ │ │ │ │ ├── trans_null.cpython-39.pyc │ │ │ │ │ │ └── trans_real.cpython-39.pyc │ │ │ │ │ ├── reloader.py │ │ │ │ │ ├── template.py │ │ │ │ │ ├── trans_null.py │ │ │ │ │ └── trans_real.py │ │ │ │ ├── tree.py │ │ │ │ ├── version.py │ │ │ │ └── xmlutils.py │ │ │ └── views │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── csrf.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── defaults.cpython-39.pyc │ │ │ │ ├── i18n.cpython-39.pyc │ │ │ │ └── static.cpython-39.pyc │ │ │ │ ├── csrf.py │ │ │ │ ├── debug.py │ │ │ │ ├── decorators │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── clickjacking.cpython-39.pyc │ │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ │ ├── csrf.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── gzip.cpython-39.pyc │ │ │ │ │ ├── http.cpython-39.pyc │ │ │ │ │ └── vary.cpython-39.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── clickjacking.py │ │ │ │ ├── common.py │ │ │ │ ├── csrf.py │ │ │ │ ├── debug.py │ │ │ │ ├── gzip.py │ │ │ │ ├── http.py │ │ │ │ └── vary.py │ │ │ │ ├── defaults.py │ │ │ │ ├── generic │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dates.cpython-39.pyc │ │ │ │ │ ├── detail.cpython-39.pyc │ │ │ │ │ ├── edit.cpython-39.pyc │ │ │ │ │ └── list.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dates.py │ │ │ │ ├── detail.py │ │ │ │ ├── edit.py │ │ │ │ └── list.py │ │ │ │ ├── i18n.py │ │ │ │ ├── static.py │ │ │ │ └── templates │ │ │ │ ├── default_urlconf.html │ │ │ │ ├── technical_404.html │ │ │ │ ├── technical_500.html │ │ │ │ └── technical_500.txt │ │ │ ├── djongo-1.3.6-py3.9.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ │ ├── djongo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── admin.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── compiler.cpython-39.pyc │ │ │ │ ├── creation.cpython-39.pyc │ │ │ │ ├── cursor.cpython-39.pyc │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── features.cpython-39.pyc │ │ │ │ ├── introspection.cpython-39.pyc │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ ├── schema.cpython-39.pyc │ │ │ │ ├── storage.cpython-39.pyc │ │ │ │ └── transaction.cpython-39.pyc │ │ │ ├── admin.py │ │ │ ├── base.py │ │ │ ├── compiler.py │ │ │ ├── creation.py │ │ │ ├── cursor.py │ │ │ ├── database.py │ │ │ ├── dynamic_formsets │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── apps.cpython-39.pyc │ │ │ │ ├── apps.py │ │ │ │ ├── static │ │ │ │ │ └── dynamic_formsets │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ └── delete.png │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── jquery-formset │ │ │ │ │ │ ├── jquery.formset.js │ │ │ │ │ │ └── jquery.formset.min.js │ │ │ │ │ │ └── jquery │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ │ └── jquery.slim.min.map │ │ │ │ ├── templates │ │ │ │ │ └── admin │ │ │ │ │ │ └── change_form.html │ │ │ │ └── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── formset_tags.cpython-39.pyc │ │ │ │ │ └── formset_tags.py │ │ │ ├── exceptions.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── indexes.cpython-39.pyc │ │ │ │ │ └── json.cpython-39.pyc │ │ │ │ ├── fields.py │ │ │ │ ├── indexes.py │ │ │ │ └── json.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ ├── sql2mongo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── aggregation.cpython-39.pyc │ │ │ │ │ ├── constraints.cpython-39.pyc │ │ │ │ │ ├── converters.cpython-39.pyc │ │ │ │ │ ├── functions.cpython-39.pyc │ │ │ │ │ ├── operators.cpython-39.pyc │ │ │ │ │ ├── query.cpython-39.pyc │ │ │ │ │ ├── sql_tokens.cpython-39.pyc │ │ │ │ │ └── validation.cpython-39.pyc │ │ │ │ ├── aggregation.py │ │ │ │ ├── constraints.py │ │ │ │ ├── converters.py │ │ │ │ ├── functions.py │ │ │ │ ├── operators.py │ │ │ │ ├── query.py │ │ │ │ ├── sql_tokens.py │ │ │ │ └── validation.py │ │ │ ├── storage.py │ │ │ └── transaction.py │ │ │ ├── dns │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _asyncbackend.cpython-39.pyc │ │ │ │ ├── _asyncio_backend.cpython-39.pyc │ │ │ │ ├── _curio_backend.cpython-39.pyc │ │ │ │ ├── _immutable_attr.cpython-39.pyc │ │ │ │ ├── _immutable_ctx.cpython-39.pyc │ │ │ │ ├── _trio_backend.cpython-39.pyc │ │ │ │ ├── asyncbackend.cpython-39.pyc │ │ │ │ ├── asyncquery.cpython-39.pyc │ │ │ │ ├── asyncresolver.cpython-39.pyc │ │ │ │ ├── dnssec.cpython-39.pyc │ │ │ │ ├── e164.cpython-39.pyc │ │ │ │ ├── edns.cpython-39.pyc │ │ │ │ ├── entropy.cpython-39.pyc │ │ │ │ ├── enum.cpython-39.pyc │ │ │ │ ├── exception.cpython-39.pyc │ │ │ │ ├── flags.cpython-39.pyc │ │ │ │ ├── grange.cpython-39.pyc │ │ │ │ ├── immutable.cpython-39.pyc │ │ │ │ ├── inet.cpython-39.pyc │ │ │ │ ├── ipv4.cpython-39.pyc │ │ │ │ ├── ipv6.cpython-39.pyc │ │ │ │ ├── message.cpython-39.pyc │ │ │ │ ├── name.cpython-39.pyc │ │ │ │ ├── namedict.cpython-39.pyc │ │ │ │ ├── node.cpython-39.pyc │ │ │ │ ├── opcode.cpython-39.pyc │ │ │ │ ├── query.cpython-39.pyc │ │ │ │ ├── rcode.cpython-39.pyc │ │ │ │ ├── rdata.cpython-39.pyc │ │ │ │ ├── rdataclass.cpython-39.pyc │ │ │ │ ├── rdataset.cpython-39.pyc │ │ │ │ ├── rdatatype.cpython-39.pyc │ │ │ │ ├── renderer.cpython-39.pyc │ │ │ │ ├── resolver.cpython-39.pyc │ │ │ │ ├── reversename.cpython-39.pyc │ │ │ │ ├── rrset.cpython-39.pyc │ │ │ │ ├── serial.cpython-39.pyc │ │ │ │ ├── set.cpython-39.pyc │ │ │ │ ├── tokenizer.cpython-39.pyc │ │ │ │ ├── transaction.cpython-39.pyc │ │ │ │ ├── tsig.cpython-39.pyc │ │ │ │ ├── tsigkeyring.cpython-39.pyc │ │ │ │ ├── ttl.cpython-39.pyc │ │ │ │ ├── update.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── versioned.cpython-39.pyc │ │ │ │ ├── wire.cpython-39.pyc │ │ │ │ ├── xfr.cpython-39.pyc │ │ │ │ ├── zone.cpython-39.pyc │ │ │ │ └── zonefile.cpython-39.pyc │ │ │ ├── _asyncbackend.py │ │ │ ├── _asyncio_backend.py │ │ │ ├── _curio_backend.py │ │ │ ├── _immutable_attr.py │ │ │ ├── _immutable_ctx.py │ │ │ ├── _trio_backend.py │ │ │ ├── asyncbackend.py │ │ │ ├── asyncquery.py │ │ │ ├── asyncresolver.py │ │ │ ├── dnssec.py │ │ │ ├── e164.py │ │ │ ├── edns.py │ │ │ ├── entropy.py │ │ │ ├── enum.py │ │ │ ├── exception.py │ │ │ ├── flags.py │ │ │ ├── grange.py │ │ │ ├── immutable.py │ │ │ ├── inet.py │ │ │ ├── ipv4.py │ │ │ ├── ipv6.py │ │ │ ├── message.py │ │ │ ├── name.py │ │ │ ├── namedict.py │ │ │ ├── node.py │ │ │ ├── opcode.py │ │ │ ├── py.typed │ │ │ ├── query.py │ │ │ ├── rcode.py │ │ │ ├── rdata.py │ │ │ ├── rdataclass.py │ │ │ ├── rdataset.py │ │ │ ├── rdatatype.py │ │ │ ├── rdtypes │ │ │ │ ├── ANY │ │ │ │ │ ├── AFSDB.py │ │ │ │ │ ├── AMTRELAY.py │ │ │ │ │ ├── AVC.py │ │ │ │ │ ├── CAA.py │ │ │ │ │ ├── CDNSKEY.py │ │ │ │ │ ├── CDS.py │ │ │ │ │ ├── CERT.py │ │ │ │ │ ├── CNAME.py │ │ │ │ │ ├── CSYNC.py │ │ │ │ │ ├── DLV.py │ │ │ │ │ ├── DNAME.py │ │ │ │ │ ├── DNSKEY.py │ │ │ │ │ ├── DS.py │ │ │ │ │ ├── EUI48.py │ │ │ │ │ ├── EUI64.py │ │ │ │ │ ├── GPOS.py │ │ │ │ │ ├── HINFO.py │ │ │ │ │ ├── HIP.py │ │ │ │ │ ├── ISDN.py │ │ │ │ │ ├── LOC.py │ │ │ │ │ ├── MX.py │ │ │ │ │ ├── NINFO.py │ │ │ │ │ ├── NS.py │ │ │ │ │ ├── NSEC.py │ │ │ │ │ ├── NSEC3.py │ │ │ │ │ ├── NSEC3PARAM.py │ │ │ │ │ ├── OPENPGPKEY.py │ │ │ │ │ ├── OPT.py │ │ │ │ │ ├── PTR.py │ │ │ │ │ ├── RP.py │ │ │ │ │ ├── RRSIG.py │ │ │ │ │ ├── RT.py │ │ │ │ │ ├── SMIMEA.py │ │ │ │ │ ├── SOA.py │ │ │ │ │ ├── SPF.py │ │ │ │ │ ├── SSHFP.py │ │ │ │ │ ├── TKEY.py │ │ │ │ │ ├── TLSA.py │ │ │ │ │ ├── TSIG.py │ │ │ │ │ ├── TXT.py │ │ │ │ │ ├── URI.py │ │ │ │ │ ├── X25.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── AFSDB.cpython-39.pyc │ │ │ │ │ │ ├── AMTRELAY.cpython-39.pyc │ │ │ │ │ │ ├── AVC.cpython-39.pyc │ │ │ │ │ │ ├── CAA.cpython-39.pyc │ │ │ │ │ │ ├── CDNSKEY.cpython-39.pyc │ │ │ │ │ │ ├── CDS.cpython-39.pyc │ │ │ │ │ │ ├── CERT.cpython-39.pyc │ │ │ │ │ │ ├── CNAME.cpython-39.pyc │ │ │ │ │ │ ├── CSYNC.cpython-39.pyc │ │ │ │ │ │ ├── DLV.cpython-39.pyc │ │ │ │ │ │ ├── DNAME.cpython-39.pyc │ │ │ │ │ │ ├── DNSKEY.cpython-39.pyc │ │ │ │ │ │ ├── DS.cpython-39.pyc │ │ │ │ │ │ ├── EUI48.cpython-39.pyc │ │ │ │ │ │ ├── EUI64.cpython-39.pyc │ │ │ │ │ │ ├── GPOS.cpython-39.pyc │ │ │ │ │ │ ├── HINFO.cpython-39.pyc │ │ │ │ │ │ ├── HIP.cpython-39.pyc │ │ │ │ │ │ ├── ISDN.cpython-39.pyc │ │ │ │ │ │ ├── LOC.cpython-39.pyc │ │ │ │ │ │ ├── MX.cpython-39.pyc │ │ │ │ │ │ ├── NINFO.cpython-39.pyc │ │ │ │ │ │ ├── NS.cpython-39.pyc │ │ │ │ │ │ ├── NSEC.cpython-39.pyc │ │ │ │ │ │ ├── NSEC3.cpython-39.pyc │ │ │ │ │ │ ├── NSEC3PARAM.cpython-39.pyc │ │ │ │ │ │ ├── OPENPGPKEY.cpython-39.pyc │ │ │ │ │ │ ├── OPT.cpython-39.pyc │ │ │ │ │ │ ├── PTR.cpython-39.pyc │ │ │ │ │ │ ├── RP.cpython-39.pyc │ │ │ │ │ │ ├── RRSIG.cpython-39.pyc │ │ │ │ │ │ ├── RT.cpython-39.pyc │ │ │ │ │ │ ├── SMIMEA.cpython-39.pyc │ │ │ │ │ │ ├── SOA.cpython-39.pyc │ │ │ │ │ │ ├── SPF.cpython-39.pyc │ │ │ │ │ │ ├── SSHFP.cpython-39.pyc │ │ │ │ │ │ ├── TKEY.cpython-39.pyc │ │ │ │ │ │ ├── TLSA.cpython-39.pyc │ │ │ │ │ │ ├── TSIG.cpython-39.pyc │ │ │ │ │ │ ├── TXT.cpython-39.pyc │ │ │ │ │ │ ├── URI.cpython-39.pyc │ │ │ │ │ │ ├── X25.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── CH │ │ │ │ │ ├── A.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── A.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── IN │ │ │ │ │ ├── A.py │ │ │ │ │ ├── AAAA.py │ │ │ │ │ ├── APL.py │ │ │ │ │ ├── DHCID.py │ │ │ │ │ ├── HTTPS.py │ │ │ │ │ ├── IPSECKEY.py │ │ │ │ │ ├── KX.py │ │ │ │ │ ├── NAPTR.py │ │ │ │ │ ├── NSAP.py │ │ │ │ │ ├── NSAP_PTR.py │ │ │ │ │ ├── PX.py │ │ │ │ │ ├── SRV.py │ │ │ │ │ ├── SVCB.py │ │ │ │ │ ├── WKS.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── A.cpython-39.pyc │ │ │ │ │ │ ├── AAAA.cpython-39.pyc │ │ │ │ │ │ ├── APL.cpython-39.pyc │ │ │ │ │ │ ├── DHCID.cpython-39.pyc │ │ │ │ │ │ ├── HTTPS.cpython-39.pyc │ │ │ │ │ │ ├── IPSECKEY.cpython-39.pyc │ │ │ │ │ │ ├── KX.cpython-39.pyc │ │ │ │ │ │ ├── NAPTR.cpython-39.pyc │ │ │ │ │ │ ├── NSAP.cpython-39.pyc │ │ │ │ │ │ ├── NSAP_PTR.cpython-39.pyc │ │ │ │ │ │ ├── PX.cpython-39.pyc │ │ │ │ │ │ ├── SRV.cpython-39.pyc │ │ │ │ │ │ ├── SVCB.cpython-39.pyc │ │ │ │ │ │ ├── WKS.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── dnskeybase.cpython-39.pyc │ │ │ │ │ ├── dsbase.cpython-39.pyc │ │ │ │ │ ├── euibase.cpython-39.pyc │ │ │ │ │ ├── mxbase.cpython-39.pyc │ │ │ │ │ ├── nsbase.cpython-39.pyc │ │ │ │ │ ├── svcbbase.cpython-39.pyc │ │ │ │ │ ├── tlsabase.cpython-39.pyc │ │ │ │ │ ├── txtbase.cpython-39.pyc │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ ├── dnskeybase.py │ │ │ │ ├── dsbase.py │ │ │ │ ├── euibase.py │ │ │ │ ├── mxbase.py │ │ │ │ ├── nsbase.py │ │ │ │ ├── svcbbase.py │ │ │ │ ├── tlsabase.py │ │ │ │ ├── txtbase.py │ │ │ │ └── util.py │ │ │ ├── renderer.py │ │ │ ├── resolver.py │ │ │ ├── reversename.py │ │ │ ├── rrset.py │ │ │ ├── serial.py │ │ │ ├── set.py │ │ │ ├── tokenizer.py │ │ │ ├── transaction.py │ │ │ ├── tsig.py │ │ │ ├── tsigkeyring.py │ │ │ ├── ttl.py │ │ │ ├── update.py │ │ │ ├── version.py │ │ │ ├── versioned.py │ │ │ ├── wire.py │ │ │ ├── xfr.py │ │ │ ├── zone.py │ │ │ └── zonefile.py │ │ │ ├── dnspython-2.1.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── gridfs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ └── grid_file.cpython-39.pyc │ │ │ ├── errors.py │ │ │ └── grid_file.py │ │ │ ├── pip-21.2.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── __main__.cpython-39.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ │ │ └── sources.cpython-39.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ ├── package_finder.py │ │ │ │ │ └── sources.py │ │ │ │ ├── locations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ │ ├── _distutils.py │ │ │ │ │ ├── _sysconfig.py │ │ │ │ │ └── base.py │ │ │ │ ├── main.py │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ └── pkg_resources.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── reporter.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _log.cpython-39.pyc │ │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── _log.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langrussianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ │ │ └── languages.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ └── wheel.py │ │ │ │ ├── distro.py │ │ │ │ ├── html5lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ └── py.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ │ └── whitespace.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ └── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── ext.py │ │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── dirtools.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ ├── in_process │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ │ │ └── _in_process.py │ │ │ │ │ ├── meta.py │ │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── counter.py │ │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ ├── providers.py │ │ │ │ │ ├── reporters.py │ │ │ │ │ ├── resolvers.py │ │ │ │ │ └── structs.py │ │ │ │ ├── six.py │ │ │ │ ├── tenacity │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ │ ├── _asyncio.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── after.py │ │ │ │ │ ├── before.py │ │ │ │ │ ├── before_sleep.py │ │ │ │ │ ├── nap.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── stop.py │ │ │ │ │ ├── tornadoweb.py │ │ │ │ │ └── wait.py │ │ │ │ ├── tomli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _parser.cpython-39.pyc │ │ │ │ │ │ └── _re.cpython-39.pyc │ │ │ │ │ ├── _parser.py │ │ │ │ │ └── _re.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ └── py.typed │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _typing.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ └── pyparsing.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ └── tests │ │ │ │ └── data │ │ │ │ └── my-test-package-source │ │ │ │ ├── __pycache__ │ │ │ │ └── setup.cpython-39.pyc │ │ │ │ └── setup.py │ │ │ ├── pymongo-3.12.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── pymongo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _ipaddress.cpython-39.pyc │ │ │ │ ├── aggregation.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── auth_aws.cpython-39.pyc │ │ │ │ ├── bulk.cpython-39.pyc │ │ │ │ ├── change_stream.cpython-39.pyc │ │ │ │ ├── client_options.cpython-39.pyc │ │ │ │ ├── client_session.cpython-39.pyc │ │ │ │ ├── collation.cpython-39.pyc │ │ │ │ ├── collection.cpython-39.pyc │ │ │ │ ├── command_cursor.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── compression_support.cpython-39.pyc │ │ │ │ ├── cursor.cpython-39.pyc │ │ │ │ ├── cursor_manager.cpython-39.pyc │ │ │ │ ├── daemon.cpython-39.pyc │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ ├── driver_info.cpython-39.pyc │ │ │ │ ├── encryption.cpython-39.pyc │ │ │ │ ├── encryption_options.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── event_loggers.cpython-39.pyc │ │ │ │ ├── hello.cpython-39.pyc │ │ │ │ ├── hello_compat.cpython-39.pyc │ │ │ │ ├── helpers.cpython-39.pyc │ │ │ │ ├── ismaster.cpython-39.pyc │ │ │ │ ├── max_staleness_selectors.cpython-39.pyc │ │ │ │ ├── message.cpython-39.pyc │ │ │ │ ├── mongo_client.cpython-39.pyc │ │ │ │ ├── mongo_replica_set_client.cpython-39.pyc │ │ │ │ ├── monitor.cpython-39.pyc │ │ │ │ ├── monitoring.cpython-39.pyc │ │ │ │ ├── monotonic.cpython-39.pyc │ │ │ │ ├── network.cpython-39.pyc │ │ │ │ ├── ocsp_cache.cpython-39.pyc │ │ │ │ ├── ocsp_support.cpython-39.pyc │ │ │ │ ├── operations.cpython-39.pyc │ │ │ │ ├── periodic_executor.cpython-39.pyc │ │ │ │ ├── pool.cpython-39.pyc │ │ │ │ ├── pyopenssl_context.cpython-39.pyc │ │ │ │ ├── read_concern.cpython-39.pyc │ │ │ │ ├── read_preferences.cpython-39.pyc │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ ├── results.cpython-39.pyc │ │ │ │ ├── saslprep.cpython-39.pyc │ │ │ │ ├── server.cpython-39.pyc │ │ │ │ ├── server_api.cpython-39.pyc │ │ │ │ ├── server_description.cpython-39.pyc │ │ │ │ ├── server_selectors.cpython-39.pyc │ │ │ │ ├── server_type.cpython-39.pyc │ │ │ │ ├── settings.cpython-39.pyc │ │ │ │ ├── socket_checker.cpython-39.pyc │ │ │ │ ├── son_manipulator.cpython-39.pyc │ │ │ │ ├── srv_resolver.cpython-39.pyc │ │ │ │ ├── ssl_context.cpython-39.pyc │ │ │ │ ├── ssl_match_hostname.cpython-39.pyc │ │ │ │ ├── ssl_support.cpython-39.pyc │ │ │ │ ├── thread_util.cpython-39.pyc │ │ │ │ ├── topology.cpython-39.pyc │ │ │ │ ├── topology_description.cpython-39.pyc │ │ │ │ ├── uri_parser.cpython-39.pyc │ │ │ │ └── write_concern.cpython-39.pyc │ │ │ ├── _cmessage.cp39-win_amd64.pyd │ │ │ ├── _ipaddress.py │ │ │ ├── aggregation.py │ │ │ ├── auth.py │ │ │ ├── auth_aws.py │ │ │ ├── bulk.py │ │ │ ├── change_stream.py │ │ │ ├── client_options.py │ │ │ ├── client_session.py │ │ │ ├── collation.py │ │ │ ├── collection.py │ │ │ ├── command_cursor.py │ │ │ ├── common.py │ │ │ ├── compression_support.py │ │ │ ├── cursor.py │ │ │ ├── cursor_manager.py │ │ │ ├── daemon.py │ │ │ ├── database.py │ │ │ ├── driver_info.py │ │ │ ├── encryption.py │ │ │ ├── encryption_options.py │ │ │ ├── errors.py │ │ │ ├── event_loggers.py │ │ │ ├── hello.py │ │ │ ├── hello_compat.py │ │ │ ├── helpers.py │ │ │ ├── ismaster.py │ │ │ ├── max_staleness_selectors.py │ │ │ ├── message.py │ │ │ ├── mongo_client.py │ │ │ ├── mongo_replica_set_client.py │ │ │ ├── monitor.py │ │ │ ├── monitoring.py │ │ │ ├── monotonic.py │ │ │ ├── network.py │ │ │ ├── ocsp_cache.py │ │ │ ├── ocsp_support.py │ │ │ ├── operations.py │ │ │ ├── periodic_executor.py │ │ │ ├── pool.py │ │ │ ├── pyopenssl_context.py │ │ │ ├── read_concern.py │ │ │ ├── read_preferences.py │ │ │ ├── response.py │ │ │ ├── results.py │ │ │ ├── saslprep.py │ │ │ ├── server.py │ │ │ ├── server_api.py │ │ │ ├── server_description.py │ │ │ ├── server_selectors.py │ │ │ ├── server_type.py │ │ │ ├── settings.py │ │ │ ├── socket_checker.py │ │ │ ├── son_manipulator.py │ │ │ ├── srv_resolver.py │ │ │ ├── ssl_context.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssl_support.py │ │ │ ├── thread_util.py │ │ │ ├── topology.py │ │ │ ├── topology_description.py │ │ │ ├── uri_parser.py │ │ │ └── write_concern.py │ │ │ ├── pytz-2021.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ ├── pytz │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── lazy.cpython-39.pyc │ │ │ │ ├── reference.cpython-39.pyc │ │ │ │ ├── tzfile.cpython-39.pyc │ │ │ │ └── tzinfo.cpython-39.pyc │ │ │ ├── exceptions.py │ │ │ ├── lazy.py │ │ │ ├── reference.py │ │ │ ├── tzfile.py │ │ │ ├── tzinfo.py │ │ │ └── zoneinfo │ │ │ │ ├── Africa │ │ │ │ ├── Abidjan │ │ │ │ ├── Accra │ │ │ │ ├── Addis_Ababa │ │ │ │ ├── Algiers │ │ │ │ ├── Asmara │ │ │ │ ├── Asmera │ │ │ │ ├── Bamako │ │ │ │ ├── Bangui │ │ │ │ ├── Banjul │ │ │ │ ├── Bissau │ │ │ │ ├── Blantyre │ │ │ │ ├── Brazzaville │ │ │ │ ├── Bujumbura │ │ │ │ ├── Cairo │ │ │ │ ├── Casablanca │ │ │ │ ├── Ceuta │ │ │ │ ├── Conakry │ │ │ │ ├── Dakar │ │ │ │ ├── Dar_es_Salaam │ │ │ │ ├── Djibouti │ │ │ │ ├── Douala │ │ │ │ ├── El_Aaiun │ │ │ │ ├── Freetown │ │ │ │ ├── Gaborone │ │ │ │ ├── Harare │ │ │ │ ├── Johannesburg │ │ │ │ ├── Juba │ │ │ │ ├── Kampala │ │ │ │ ├── Khartoum │ │ │ │ ├── Kigali │ │ │ │ ├── Kinshasa │ │ │ │ ├── Lagos │ │ │ │ ├── Libreville │ │ │ │ ├── Lome │ │ │ │ ├── Luanda │ │ │ │ ├── Lubumbashi │ │ │ │ ├── Lusaka │ │ │ │ ├── Malabo │ │ │ │ ├── Maputo │ │ │ │ ├── Maseru │ │ │ │ ├── Mbabane │ │ │ │ ├── Mogadishu │ │ │ │ ├── Monrovia │ │ │ │ ├── Nairobi │ │ │ │ ├── Ndjamena │ │ │ │ ├── Niamey │ │ │ │ ├── Nouakchott │ │ │ │ ├── Ouagadougou │ │ │ │ ├── Porto-Novo │ │ │ │ ├── Sao_Tome │ │ │ │ ├── Timbuktu │ │ │ │ ├── Tripoli │ │ │ │ ├── Tunis │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ ├── Adak │ │ │ │ ├── Anchorage │ │ │ │ ├── Anguilla │ │ │ │ ├── Antigua │ │ │ │ ├── Araguaina │ │ │ │ ├── Argentina │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── La_Rioja │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ ├── Salta │ │ │ │ │ ├── San_Juan │ │ │ │ │ ├── San_Luis │ │ │ │ │ ├── Tucuman │ │ │ │ │ └── Ushuaia │ │ │ │ ├── Aruba │ │ │ │ ├── Asuncion │ │ │ │ ├── Atikokan │ │ │ │ ├── Atka │ │ │ │ ├── Bahia │ │ │ │ ├── Bahia_Banderas │ │ │ │ ├── Barbados │ │ │ │ ├── Belem │ │ │ │ ├── Belize │ │ │ │ ├── Blanc-Sablon │ │ │ │ ├── Boa_Vista │ │ │ │ ├── Bogota │ │ │ │ ├── Boise │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Cambridge_Bay │ │ │ │ ├── Campo_Grande │ │ │ │ ├── Cancun │ │ │ │ ├── Caracas │ │ │ │ ├── Catamarca │ │ │ │ ├── Cayenne │ │ │ │ ├── Cayman │ │ │ │ ├── Chicago │ │ │ │ ├── Chihuahua │ │ │ │ ├── Coral_Harbour │ │ │ │ ├── Cordoba │ │ │ │ ├── Costa_Rica │ │ │ │ ├── Creston │ │ │ │ ├── Cuiaba │ │ │ │ ├── Curacao │ │ │ │ ├── Danmarkshavn │ │ │ │ ├── Dawson │ │ │ │ ├── Dawson_Creek │ │ │ │ ├── Denver │ │ │ │ ├── Detroit │ │ │ │ ├── Dominica │ │ │ │ ├── Edmonton │ │ │ │ ├── Eirunepe │ │ │ │ ├── El_Salvador │ │ │ │ ├── Ensenada │ │ │ │ ├── Fort_Nelson │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── Glace_Bay │ │ │ │ ├── Godthab │ │ │ │ ├── Goose_Bay │ │ │ │ ├── Grand_Turk │ │ │ │ ├── Grenada │ │ │ │ ├── Guadeloupe │ │ │ │ ├── Guatemala │ │ │ │ ├── Guayaquil │ │ │ │ ├── Guyana │ │ │ │ ├── Halifax │ │ │ │ ├── Havana │ │ │ │ ├── Hermosillo │ │ │ │ ├── Indiana │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Knox │ │ │ │ │ ├── Marengo │ │ │ │ │ ├── Petersburg │ │ │ │ │ ├── Tell_City │ │ │ │ │ ├── Vevay │ │ │ │ │ ├── Vincennes │ │ │ │ │ └── Winamac │ │ │ │ ├── Indianapolis │ │ │ │ ├── Inuvik │ │ │ │ ├── Iqaluit │ │ │ │ ├── Jamaica │ │ │ │ ├── Jujuy │ │ │ │ ├── Juneau │ │ │ │ ├── Kentucky │ │ │ │ │ ├── Louisville │ │ │ │ │ └── Monticello │ │ │ │ ├── Knox_IN │ │ │ │ ├── Kralendijk │ │ │ │ ├── La_Paz │ │ │ │ ├── Lima │ │ │ │ ├── Los_Angeles │ │ │ │ ├── Louisville │ │ │ │ ├── Lower_Princes │ │ │ │ ├── Maceio │ │ │ │ ├── Managua │ │ │ │ ├── Manaus │ │ │ │ ├── Marigot │ │ │ │ ├── Martinique │ │ │ │ ├── Matamoros │ │ │ │ ├── Mazatlan │ │ │ │ ├── Mendoza │ │ │ │ ├── Menominee │ │ │ │ ├── Merida │ │ │ │ ├── Metlakatla │ │ │ │ ├── Mexico_City │ │ │ │ ├── Miquelon │ │ │ │ ├── Moncton │ │ │ │ ├── Monterrey │ │ │ │ ├── Montevideo │ │ │ │ ├── Montreal │ │ │ │ ├── Montserrat │ │ │ │ ├── Nassau │ │ │ │ ├── New_York │ │ │ │ ├── Nipigon │ │ │ │ ├── Nome │ │ │ │ ├── Noronha │ │ │ │ ├── North_Dakota │ │ │ │ │ ├── Beulah │ │ │ │ │ ├── Center │ │ │ │ │ └── New_Salem │ │ │ │ ├── Nuuk │ │ │ │ ├── Ojinaga │ │ │ │ ├── Panama │ │ │ │ ├── Pangnirtung │ │ │ │ ├── Paramaribo │ │ │ │ ├── Phoenix │ │ │ │ ├── Port-au-Prince │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── Porto_Velho │ │ │ │ ├── Puerto_Rico │ │ │ │ ├── Punta_Arenas │ │ │ │ ├── Rainy_River │ │ │ │ ├── Rankin_Inlet │ │ │ │ ├── Recife │ │ │ │ ├── Regina │ │ │ │ ├── Resolute │ │ │ │ ├── Rio_Branco │ │ │ │ ├── Rosario │ │ │ │ ├── Santa_Isabel │ │ │ │ ├── Santarem │ │ │ │ ├── Santiago │ │ │ │ ├── Santo_Domingo │ │ │ │ ├── Sao_Paulo │ │ │ │ ├── Scoresbysund │ │ │ │ ├── Shiprock │ │ │ │ ├── Sitka │ │ │ │ ├── St_Barthelemy │ │ │ │ ├── St_Johns │ │ │ │ ├── St_Kitts │ │ │ │ ├── St_Lucia │ │ │ │ ├── St_Thomas │ │ │ │ ├── St_Vincent │ │ │ │ ├── Swift_Current │ │ │ │ ├── Tegucigalpa │ │ │ │ ├── Thule │ │ │ │ ├── Thunder_Bay │ │ │ │ ├── Tijuana │ │ │ │ ├── Toronto │ │ │ │ ├── Tortola │ │ │ │ ├── Vancouver │ │ │ │ ├── Virgin │ │ │ │ ├── Whitehorse │ │ │ │ ├── Winnipeg │ │ │ │ ├── Yakutat │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ ├── Casey │ │ │ │ ├── Davis │ │ │ │ ├── DumontDUrville │ │ │ │ ├── Macquarie │ │ │ │ ├── Mawson │ │ │ │ ├── McMurdo │ │ │ │ ├── Palmer │ │ │ │ ├── Rothera │ │ │ │ ├── South_Pole │ │ │ │ ├── Syowa │ │ │ │ ├── Troll │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ ├── Aden │ │ │ │ ├── Almaty │ │ │ │ ├── Amman │ │ │ │ ├── Anadyr │ │ │ │ ├── Aqtau │ │ │ │ ├── Aqtobe │ │ │ │ ├── Ashgabat │ │ │ │ ├── Ashkhabad │ │ │ │ ├── Atyrau │ │ │ │ ├── Baghdad │ │ │ │ ├── Bahrain │ │ │ │ ├── Baku │ │ │ │ ├── Bangkok │ │ │ │ ├── Barnaul │ │ │ │ ├── Beirut │ │ │ │ ├── Bishkek │ │ │ │ ├── Brunei │ │ │ │ ├── Calcutta │ │ │ │ ├── Chita │ │ │ │ ├── Choibalsan │ │ │ │ ├── Chongqing │ │ │ │ ├── Chungking │ │ │ │ ├── Colombo │ │ │ │ ├── Dacca │ │ │ │ ├── Damascus │ │ │ │ ├── Dhaka │ │ │ │ ├── Dili │ │ │ │ ├── Dubai │ │ │ │ ├── Dushanbe │ │ │ │ ├── Famagusta │ │ │ │ ├── Gaza │ │ │ │ ├── Harbin │ │ │ │ ├── Hebron │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ ├── Hong_Kong │ │ │ │ ├── Hovd │ │ │ │ ├── Irkutsk │ │ │ │ ├── Istanbul │ │ │ │ ├── Jakarta │ │ │ │ ├── Jayapura │ │ │ │ ├── Jerusalem │ │ │ │ ├── Kabul │ │ │ │ ├── Kamchatka │ │ │ │ ├── Karachi │ │ │ │ ├── Kashgar │ │ │ │ ├── Kathmandu │ │ │ │ ├── Katmandu │ │ │ │ ├── Khandyga │ │ │ │ ├── Kolkata │ │ │ │ ├── Krasnoyarsk │ │ │ │ ├── Kuala_Lumpur │ │ │ │ ├── Kuching │ │ │ │ ├── Kuwait │ │ │ │ ├── Macao │ │ │ │ ├── Macau │ │ │ │ ├── Magadan │ │ │ │ ├── Makassar │ │ │ │ ├── Manila │ │ │ │ ├── Muscat │ │ │ │ ├── Nicosia │ │ │ │ ├── Novokuznetsk │ │ │ │ ├── Novosibirsk │ │ │ │ ├── Omsk │ │ │ │ ├── Oral │ │ │ │ ├── Phnom_Penh │ │ │ │ ├── Pontianak │ │ │ │ ├── Pyongyang │ │ │ │ ├── Qatar │ │ │ │ ├── Qostanay │ │ │ │ ├── Qyzylorda │ │ │ │ ├── Rangoon │ │ │ │ ├── Riyadh │ │ │ │ ├── Saigon │ │ │ │ ├── Sakhalin │ │ │ │ ├── Samarkand │ │ │ │ ├── Seoul │ │ │ │ ├── Shanghai │ │ │ │ ├── Singapore │ │ │ │ ├── Srednekolymsk │ │ │ │ ├── Taipei │ │ │ │ ├── Tashkent │ │ │ │ ├── Tbilisi │ │ │ │ ├── Tehran │ │ │ │ ├── Tel_Aviv │ │ │ │ ├── Thimbu │ │ │ │ ├── Thimphu │ │ │ │ ├── Tokyo │ │ │ │ ├── Tomsk │ │ │ │ ├── Ujung_Pandang │ │ │ │ ├── Ulaanbaatar │ │ │ │ ├── Ulan_Bator │ │ │ │ ├── Urumqi │ │ │ │ ├── Ust-Nera │ │ │ │ ├── Vientiane │ │ │ │ ├── Vladivostok │ │ │ │ ├── Yakutsk │ │ │ │ ├── Yangon │ │ │ │ ├── Yekaterinburg │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ ├── Azores │ │ │ │ ├── Bermuda │ │ │ │ ├── Canary │ │ │ │ ├── Cape_Verde │ │ │ │ ├── Faeroe │ │ │ │ ├── Faroe │ │ │ │ ├── Jan_Mayen │ │ │ │ ├── Madeira │ │ │ │ ├── Reykjavik │ │ │ │ ├── South_Georgia │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ ├── Amsterdam │ │ │ │ ├── Andorra │ │ │ │ ├── Astrakhan │ │ │ │ ├── Athens │ │ │ │ ├── Belfast │ │ │ │ ├── Belgrade │ │ │ │ ├── Berlin │ │ │ │ ├── Bratislava │ │ │ │ ├── Brussels │ │ │ │ ├── Bucharest │ │ │ │ ├── Budapest │ │ │ │ ├── Busingen │ │ │ │ ├── Chisinau │ │ │ │ ├── Copenhagen │ │ │ │ ├── Dublin │ │ │ │ ├── Gibraltar │ │ │ │ ├── Guernsey │ │ │ │ ├── Helsinki │ │ │ │ ├── Isle_of_Man │ │ │ │ ├── Istanbul │ │ │ │ ├── Jersey │ │ │ │ ├── Kaliningrad │ │ │ │ ├── Kiev │ │ │ │ ├── Kirov │ │ │ │ ├── Lisbon │ │ │ │ ├── Ljubljana │ │ │ │ ├── London │ │ │ │ ├── Luxembourg │ │ │ │ ├── Madrid │ │ │ │ ├── Malta │ │ │ │ ├── Mariehamn │ │ │ │ ├── Minsk │ │ │ │ ├── Monaco │ │ │ │ ├── Moscow │ │ │ │ ├── Nicosia │ │ │ │ ├── Oslo │ │ │ │ ├── Paris │ │ │ │ ├── Podgorica │ │ │ │ ├── Prague │ │ │ │ ├── Riga │ │ │ │ ├── Rome │ │ │ │ ├── Samara │ │ │ │ ├── San_Marino │ │ │ │ ├── Sarajevo │ │ │ │ ├── Saratov │ │ │ │ ├── Simferopol │ │ │ │ ├── Skopje │ │ │ │ ├── Sofia │ │ │ │ ├── Stockholm │ │ │ │ ├── Tallinn │ │ │ │ ├── Tirane │ │ │ │ ├── Tiraspol │ │ │ │ ├── Ulyanovsk │ │ │ │ ├── Uzhgorod │ │ │ │ ├── Vaduz │ │ │ │ ├── Vatican │ │ │ │ ├── Vienna │ │ │ │ ├── Vilnius │ │ │ │ ├── Volgograd │ │ │ │ ├── Warsaw │ │ │ │ ├── Zagreb │ │ │ │ ├── Zaporozhye │ │ │ │ └── Zurich │ │ │ │ ├── Factory │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ ├── Apia │ │ │ │ ├── Auckland │ │ │ │ ├── Bougainville │ │ │ │ ├── Chatham │ │ │ │ ├── Chuuk │ │ │ │ ├── Easter │ │ │ │ ├── Efate │ │ │ │ ├── Enderbury │ │ │ │ ├── Fakaofo │ │ │ │ ├── Fiji │ │ │ │ ├── Funafuti │ │ │ │ ├── Galapagos │ │ │ │ ├── Gambier │ │ │ │ ├── Guadalcanal │ │ │ │ ├── Guam │ │ │ │ ├── Honolulu │ │ │ │ ├── Johnston │ │ │ │ ├── Kiritimati │ │ │ │ ├── Kosrae │ │ │ │ ├── Kwajalein │ │ │ │ ├── Majuro │ │ │ │ ├── Marquesas │ │ │ │ ├── Midway │ │ │ │ ├── Nauru │ │ │ │ ├── Niue │ │ │ │ ├── Norfolk │ │ │ │ ├── Noumea │ │ │ │ ├── Pago_Pago │ │ │ │ ├── Palau │ │ │ │ ├── Pitcairn │ │ │ │ ├── Pohnpei │ │ │ │ ├── Ponape │ │ │ │ ├── Port_Moresby │ │ │ │ ├── Rarotonga │ │ │ │ ├── Saipan │ │ │ │ ├── Samoa │ │ │ │ ├── Tahiti │ │ │ │ ├── Tarawa │ │ │ │ ├── Tongatapu │ │ │ │ ├── Truk │ │ │ │ ├── Wake │ │ │ │ ├── Wallis │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ ├── Zulu │ │ │ │ ├── iso3166.tab │ │ │ │ ├── leapseconds │ │ │ │ ├── tzdata.zi │ │ │ │ ├── zone.tab │ │ │ │ └── zone1970.tab │ │ │ ├── setuptools-57.4.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _deprecation_warning.cpython-39.pyc │ │ │ │ ├── _imp.cpython-39.pyc │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ ├── build_meta.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ ├── depends.cpython-39.pyc │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── glob.cpython-39.pyc │ │ │ │ ├── installer.cpython-39.pyc │ │ │ │ ├── launch.cpython-39.pyc │ │ │ │ ├── lib2to3_ex.cpython-39.pyc │ │ │ │ ├── monkey.cpython-39.pyc │ │ │ │ ├── msvc.cpython-39.pyc │ │ │ │ ├── namespaces.cpython-39.pyc │ │ │ │ ├── package_index.cpython-39.pyc │ │ │ │ ├── py34compat.cpython-39.pyc │ │ │ │ ├── sandbox.cpython-39.pyc │ │ │ │ ├── unicode_utils.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ └── windows_support.cpython-39.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ │ ├── py35compat.cpython-39.pyc │ │ │ │ │ ├── py38compat.cpython-39.pyc │ │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ │ ├── _msvccompiler.py │ │ │ │ ├── archive_util.py │ │ │ │ ├── bcppcompiler.py │ │ │ │ ├── ccompiler.py │ │ │ │ ├── cmd.py │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ └── upload.cpython-39.pyc │ │ │ │ │ ├── bdist.py │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── clean.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_data.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_headers.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── py37compat.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── upload.py │ │ │ │ ├── config.py │ │ │ │ ├── core.py │ │ │ │ ├── cygwinccompiler.py │ │ │ │ ├── debug.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── dir_util.py │ │ │ │ ├── dist.py │ │ │ │ ├── errors.py │ │ │ │ ├── extension.py │ │ │ │ ├── fancy_getopt.py │ │ │ │ ├── file_util.py │ │ │ │ ├── filelist.py │ │ │ │ ├── log.py │ │ │ │ ├── msvc9compiler.py │ │ │ │ ├── msvccompiler.py │ │ │ │ ├── py35compat.py │ │ │ │ ├── py38compat.py │ │ │ │ ├── spawn.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── text_file.py │ │ │ │ ├── unixccompiler.py │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ └── versionpredicate.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ │ ├── more_itertools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── more.cpython-39.pyc │ │ │ │ │ │ └── recipes.cpython-39.pyc │ │ │ │ │ ├── more.py │ │ │ │ │ └── recipes.py │ │ │ │ ├── ordered_set.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _typing.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ └── pyparsing.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── alias.cpython-39.pyc │ │ │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ │ ├── dist_info.cpython-39.pyc │ │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ ├── py36compat.cpython-39.pyc │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ ├── rotate.cpython-39.pyc │ │ │ │ │ ├── saveopts.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ ├── setopt.cpython-39.pyc │ │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ │ └── upload_docs.cpython-39.pyc │ │ │ │ ├── alias.py │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── develop.py │ │ │ │ ├── dist_info.py │ │ │ │ ├── easy_install.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── py36compat.py │ │ │ │ ├── register.py │ │ │ │ ├── rotate.py │ │ │ │ ├── saveopts.py │ │ │ │ ├── sdist.py │ │ │ │ ├── setopt.py │ │ │ │ ├── test.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_docs.py │ │ │ ├── config.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ │ ├── sqlparse-0.2.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ │ └── sqlparse │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __main__.cpython-39.pyc │ │ │ ├── cli.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── formatter.cpython-39.pyc │ │ │ ├── keywords.cpython-39.pyc │ │ │ ├── lexer.cpython-39.pyc │ │ │ ├── sql.cpython-39.pyc │ │ │ ├── tokens.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── filter_stack.cpython-39.pyc │ │ │ │ ├── grouping.cpython-39.pyc │ │ │ │ └── statement_splitter.cpython-39.pyc │ │ │ ├── filter_stack.py │ │ │ ├── grouping.py │ │ │ └── statement_splitter.py │ │ │ ├── exceptions.py │ │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── aligned_indent.cpython-39.pyc │ │ │ │ ├── others.cpython-39.pyc │ │ │ │ ├── output.cpython-39.pyc │ │ │ │ ├── reindent.cpython-39.pyc │ │ │ │ ├── right_margin.cpython-39.pyc │ │ │ │ └── tokens.cpython-39.pyc │ │ │ ├── aligned_indent.py │ │ │ ├── others.py │ │ │ ├── output.py │ │ │ ├── reindent.py │ │ │ ├── right_margin.py │ │ │ └── tokens.py │ │ │ ├── formatter.py │ │ │ ├── keywords.py │ │ │ ├── lexer.py │ │ │ ├── sql.py │ │ │ ├── tokens.py │ │ │ └── utils.py │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── __pycache__ │ │ │ └── django-admin.cpython-39.pyc │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── django-admin.exe │ │ ├── django-admin.py │ │ ├── pip.exe │ │ ├── pip3.9.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ ├── pythonw.exe │ │ └── sqlformat.exe │ │ └── pyvenv.cfg │ ├── MongoWithNode.rar │ ├── MongoWithNode │ └── demo.js │ ├── MongoWithPython.rar │ └── MongoWithPython │ └── main.py └── README.md /Course Description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Course Description.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/LICENSE -------------------------------------------------------------------------------- /Part 1/Codes/BS4/Lec 11-17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/BS4/Lec 11-17.py -------------------------------------------------------------------------------- /Part 1/Codes/BS4/Lec 18-21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/BS4/Lec 18-21.py -------------------------------------------------------------------------------- /Part 1/Codes/BS4/Lec 4-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/BS4/Lec 4-6.py -------------------------------------------------------------------------------- /Part 1/Codes/BS4/Lec 9-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/BS4/Lec 9-10.py -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/BS4/Quiz 2 (07-Quiz(Extracting Author Names)).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/BS4/Quiz 2 (07-Quiz(Extracting Author Names)).py -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/BS4/quiz2solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/BS4/quiz2solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/BS4/quiz3solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/BS4/quiz3solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 1 (03-Quiz(Tags)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 1 (03-Quiz(Tags)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 10 (28-Quiz(Last Child)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 10 (28-Quiz(Last Child)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 11 (31-Quiz(Negation)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 11 (31-Quiz(Negation)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 2 (06-Quiz(Descendants)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 2 (06-Quiz(Descendants)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 3 (08-Quiz(ID)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 3 (08-Quiz(ID)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 4 (13-Quiz(Class with Tag)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 4 (13-Quiz(Class with Tag)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 7 (21-Quiz(General Sibling)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 7 (21-Quiz(General Sibling)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 8 (24-Quiz(First Child)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 8 (24-Quiz(First Child)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/CSS Selectors/Quiz 9 (26-Quiz(Only Child)).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/CSS Selectors/Quiz 9 (26-Quiz(Only Child)).html -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Requests/Quiz 1 (04-Quiz(Extracting Authors)).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Requests/Quiz 1 (04-Quiz(Extracting Authors)).py -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Requests/quiz1solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Requests/quiz1solution.txt -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Requests/quiz2solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Requests/quiz2solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Requests/quiz3solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Requests/quiz3solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Scrapy/Quiz 1 (24-Quiz(Get The Tags)).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Scrapy/Quiz 1 (24-Quiz(Get The Tags)).py -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Scrapy/Quiz 2 (33-Quiz(Extracting the Year)).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Scrapy/Quiz 2 (33-Quiz(Extracting the Year)).py -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Scrapy/quiz1solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Scrapy/quiz1solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Scrapy/quiz2solution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Scrapy/quiz2solution.csv -------------------------------------------------------------------------------- /Part 1/Codes/Quizes/Selenium/Quiz 1 (06-Quiz(Extracting Quotes)).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Quizes/Selenium/Quiz 1 (06-Quiz(Extracting Quotes)).py -------------------------------------------------------------------------------- /Part 1/Codes/Requests/Lec 10-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Requests/Lec 10-12.py -------------------------------------------------------------------------------- /Part 1/Codes/Requests/Lec 2-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Requests/Lec 2-6.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/items.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/middlewares.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/pipelines.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/settings.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/__init__.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/BOSS/spiders/main.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/products.csv -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/BOSS/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/BOSS/scrapy.cfg -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/items.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/middlewares.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/pipelines.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/settings.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__init__.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__pycache__/Quiz2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__pycache__/Quiz2.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/IMDB/spiders/main.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/imdb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/imdb.csv -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/IMDB/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/IMDB/scrapy.cfg -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/items.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/middlewares.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/pipelines.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/settings.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/ProjQuotes/spiders/__init__.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ProjQuotes/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ProjQuotes/scrapy.cfg -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/items.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/middlewares.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/pipelines.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/settings.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/spiders/__init__.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/spiders/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/ScratchQuotes/spiders/main.py -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/quotes.csv -------------------------------------------------------------------------------- /Part 1/Codes/SCRAPY/ScratchQuotes/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/SCRAPY/ScratchQuotes/scrapy.cfg -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/DeepL Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/DeepL Script.py -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 11.py -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 4.py -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 5.py -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 9-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/Selenium Different Lectures Scripts/lec 9-10.py -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/chromedriver.exe -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/chromedriver_win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/Codes/Selenium/chromedriver_win32.zip -------------------------------------------------------------------------------- /Part 1/Codes/Selenium/input.txt: -------------------------------------------------------------------------------- 1 | Happy data scraping, Hope this helps you. -------------------------------------------------------------------------------- /Part 1/PPTs/Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 1/PPTs/Slides.pptx -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/02-Scala Installation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/02-Scala Installation.docx -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/06-Strings Basics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/06-Strings Basics.scala -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/08-Solution (Arithmatic Operations).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/08-Solution (Arithmatic Operations).scala -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/10-Solution (Strings).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/10-Solution (Strings).scala -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/11-Type Casting.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/11-Type Casting.scala -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/12-Taking input from User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/12-Taking input from User.scala -------------------------------------------------------------------------------- /Part 2/Codes/01-Overview/14-Solution (User Input and Type Casting).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/01-Overview/14-Solution (User Input and Type Casting).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/11-Solution (Logical operators).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/11-Solution (Logical operators).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/12-If else if.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/12-If else if.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/14-Solution(if else if).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/14-Solution(if else if).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/16-Overview of While Loop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/16-Overview of While Loop.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/17-While Loop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/17-While Loop.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/19-Solution 1 (while loop).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/19-Solution 1 (while loop).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/2-If else statements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/2-If else statements.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/20-Solution 2 (while loop).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/20-Solution 2 (while loop).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/21-Do While Loop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/21-Do While Loop.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/22-For Loop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/22-For Loop.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/24-Solution (For Loop).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/24-Solution (For Loop).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/26-Solution(For Loop).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/26-Solution(For Loop).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/27-Break.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/27-Break.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/28-Break Fix.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/28-Break Fix.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/3-Conditions in If.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/3-Conditions in If.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/30-Project Solution Code 1.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/30-Project Solution Code 1.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/31-Project Solution Code 2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/31-Project Solution Code 2.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/32-Project Solution Code 3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/32-Project Solution Code 3.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/33-Project Solution Code 4.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/33-Project Solution Code 4.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/5-Solution (if statement).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/5-Solution (if statement).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/6-Nested if else.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/6-Nested if else.scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/8-Solution (nested if else).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/8-Solution (nested if else).scala -------------------------------------------------------------------------------- /Part 2/Codes/02-Control Statements/9-Logical operators.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/02-Control Statements/9-Logical operators.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/02-Writing addition function.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/02-Writing addition function.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/04-Solution (Basic Function).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/04-Solution (Basic Function).scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/06-Strings basics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/06-Strings basics.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/10-Solution (Dividing Code in Functions).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/10-Solution (Dividing Code in Functions).scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/11-Default Arguments.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/11-Default Arguments.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/13-Solution(Default Arguments).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/13-Solution(Default Arguments).scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/14-Anonymous Functions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/14-Anonymous Functions.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/16-Solution(Anonymous Functions).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/16-Solution(Anonymous Functions).scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/17-Scopes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/17-Scopes.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/19- Project Structure.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/19- Project Structure.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/20-Prompting the menu.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/20-Prompting the menu.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/21-Baisc Functions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/21-Baisc Functions.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/22-Breaking code in more functions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/22-Breaking code in more functions.scala -------------------------------------------------------------------------------- /Part 2/Codes/03-Functions/23-Final Run.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/03-Functions/23-Final Run.scala -------------------------------------------------------------------------------- /Part 2/Codes/04-Classes/02-Creating Class.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/04-Classes/02-Creating Class.scala -------------------------------------------------------------------------------- /Part 2/Codes/04-Classes/03-Class Constructor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/04-Classes/03-Class Constructor.scala -------------------------------------------------------------------------------- /Part 2/Codes/04-Classes/04-Functions and Classes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/04-Classes/04-Functions and Classes.scala -------------------------------------------------------------------------------- /Part 2/Codes/04-Classes/06-Basic Strucuture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/04-Classes/06-Basic Strucuture.scala -------------------------------------------------------------------------------- /Part 2/Codes/04-Classes/07-FInal Run.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/04-Classes/07-FInal Run.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/02-Lists introduction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/02-Lists introduction.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/04-Lists Take.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/04-Lists Take.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/05-ListBuffer Introduction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/05-ListBuffer Introduction.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/06-Add data in ListBuffer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/06-Add data in ListBuffer.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/07-Remove data from ListBuffer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/07-Remove data from ListBuffer.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/08-Take data from ListBuffer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/08-Take data from ListBuffer.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/11-User Input for Objects.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/11-User Input for Objects.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/12-Implementing the control flow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/12-Implementing the control flow.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/15-Creating Maps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/15-Creating Maps.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/16-Check Key in Map.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/16-Check Key in Map.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/17-Update Value in Map.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/17-Update Value in Map.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/18-Add and Remove items from Maps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/18-Add and Remove items from Maps.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/19-Iterating on Maps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/19-Iterating on Maps.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/22-Project Structure Code.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/22-Project Structure Code.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/23-Using Maps for word count.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/23-Using Maps for word count.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/24-Final Run.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/24-Final Run.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/25-Sets Overview.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/25-Sets Overview.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/29-Push and Pop in Stack.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/29-Push and Pop in Stack.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/30-Stack Attributes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/30-Stack Attributes.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/33-Project Architecture Code.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/33-Project Architecture Code.scala -------------------------------------------------------------------------------- /Part 2/Codes/05-Data Structures/34-Extra Starting Bracket Use Case.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/05-Data Structures/34-Extra Starting Bracket Use Case.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/11-Spark RDDs (textFile, collect).scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/11-Spark RDDs (textFile, collect).scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/13-Understanding Map.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/13-Understanding Map.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/14-Understanding Flat Map.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/14-Understanding Flat Map.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/16-Word Count Example.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/16-Word Count Example.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/17-data - Spark DFs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/17-data - Spark DFs.csv -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/18-Spark DF Read Data.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/18-Spark DF Read Data.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/19-Spark Print Schema, Select.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/19-Spark Print Schema, Select.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/20-Spark GroupBy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/20-Spark GroupBy.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/21-Spark DF Write.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/21-Spark DF Write.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/data.csv -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/postgresql-42.2.18.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/postgresql-42.2.18.jar -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/rdschecker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/rdschecker.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/s3-rds-etl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/s3-rds-etl.scala -------------------------------------------------------------------------------- /Part 2/Codes/06-Project/sample_text_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/Codes/06-Project/sample_text_data.txt -------------------------------------------------------------------------------- /Part 2/PPTs/Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 2/PPTs/Slides.pptx -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/02-Creating Spark RDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/02-Creating Spark RDD.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/04 , 05-MAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/04 , 05-MAP.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/07-Solution 1 (Map).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/07-Solution 1 (Map).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/08-Solution 2 (Map).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/08-Solution 2 (Map).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/09-RDD FlatMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/09-RDD FlatMap.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/10-RDD Filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/10-RDD Filter.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/12-Solution (Filter).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/12-Solution (Filter).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/13-RDD Distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/13-RDD Distinct.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/14-RDD GroupByKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/14-RDD GroupByKey.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/15-RDD ReduceByKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/15-RDD ReduceByKey.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/17-Solution (Word Count).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/17-Solution (Word Count).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/18-RDD (Count and CountByValue).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/18-RDD (Count and CountByValue).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/19-RDD (saveAsTextFile).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/19-RDD (saveAsTextFile).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/20-RDD (Partition).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/20-RDD (Partition).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/22-Finding Average-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/22-Finding Average-2.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/24-Solution (Average).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/24-Solution (Average).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/25-Finding Min and Max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/25-Finding Min and Max.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/27-Solution (Min and Max).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/27-Solution (Min and Max).py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/28-36 Project Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/28-36 Project Code.py -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/StudentData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/StudentData.csv -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/average_quiz_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/average_quiz_sample.csv -------------------------------------------------------------------------------- /Part 3/Code/02-Spark RDDs/movie_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/02-Spark RDDs/movie_ratings.csv -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/02-Creating Spark DFs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/02-Creating Spark DFs.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/03-Spark Infer Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/03-Spark Infer Schema.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/04-Spark Provide Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/04-Spark Provide Schema.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/05-Create DF from Rdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/05-Create DF from Rdd.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/06-Rectifying the Error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/06-Rectifying the Error.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/07-Select DF Colums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/07-Select DF Colums.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/08-Spark DF withColumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/08-Spark DF withColumn.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/09-Spark DF withColumnRenamed and Alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/09-Spark DF withColumnRenamed and Alias.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/10-Spark DF Filter rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/10-Spark DF Filter rows.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/12-Solution (select, withColumn, filter).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/12-Solution (select, withColumn, filter).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/13-Spark DF (Count, Distinct, Duplicate).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/13-Spark DF (Count, Distinct, Duplicate).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/15-Solution (Distinct, Duplicate).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/15-Solution (Distinct, Duplicate).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/16-Spark DF (sort, orderBy).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/16-Spark DF (sort, orderBy).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/18-Solution (sort, orderBy).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/18-Solution (sort, orderBy).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/19-Spark DF (Group By).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/19-Spark DF (Group By).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/22-Spark DF (Group By - Filtering).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/22-Spark DF (Group By - Filtering).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/24-Solution (Group By).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/24-Solution (Group By).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/26-Solution (Word Count).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/26-Solution (Word Count).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/27-Spark DF (UDFs).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/27-Spark DF (UDFs).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/29-Solution (UDFs).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/29-Solution (UDFs).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/30-Solution (Cache and Presist).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/30-Solution (Cache and Presist).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/31-Spark DF (DF to RDD).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/31-Spark DF (DF to RDD).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/32-Spark DF (Spark SQL).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/32-Spark DF (Spark SQL).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/33-Spark DF (Write DF).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/33-Spark DF (Write DF).py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/34-39 Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/34-39 Project.py -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/OfficeData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/OfficeData.csv -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/OfficeDataProject.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/OfficeDataProject.csv -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/StudentData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/StudentData.csv -------------------------------------------------------------------------------- /Part 3/Code/03-Spark DFs/WordData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/03-Spark DFs/WordData.txt -------------------------------------------------------------------------------- /Part 3/Code/04-Collaborative filtering/Collaborative filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/04-Collaborative filtering/Collaborative filtering.py -------------------------------------------------------------------------------- /Part 3/Code/05-Spark Streaming/2-6 Spark Streaming RDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/05-Spark Streaming/2-6 Spark Streaming RDD.py -------------------------------------------------------------------------------- /Part 3/Code/05-Spark Streaming/7-9 Spark Streaming DF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/05-Spark Streaming/7-9 Spark Streaming DF.py -------------------------------------------------------------------------------- /Part 3/Code/05-Spark Streaming/WordData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/05-Spark Streaming/WordData.txt -------------------------------------------------------------------------------- /Part 3/Code/06-ETL/1-13 ETL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/06-ETL/1-13 ETL.py -------------------------------------------------------------------------------- /Part 3/Code/06-ETL/WordData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/06-ETL/WordData.txt -------------------------------------------------------------------------------- /Part 3/Code/07-Project (CDC)/Dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/07-Project (CDC)/Dump -------------------------------------------------------------------------------- /Part 3/Code/07-Project (CDC)/Glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/07-Project (CDC)/Glue.py -------------------------------------------------------------------------------- /Part 3/Code/07-Project (CDC)/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/Code/07-Project (CDC)/lambda_function.py -------------------------------------------------------------------------------- /Part 3/PPT/Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 3/PPT/Slides.pptx -------------------------------------------------------------------------------- /Part 4/01-PPTs/Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/01-PPTs/Slides.pptx -------------------------------------------------------------------------------- /Part 4/Codes/$ operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$ operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$addToSet operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$addToSet operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$all operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$all operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$all quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$all quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$and operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$and operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$and quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$and quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$currentDate operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$currentDate operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$delete quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$delete quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$each operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$each operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$elemMatch operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$elemMatch operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$elemMatch quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$elemMatch quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$eq operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$eq operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$eq quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$eq quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$exists operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$exists operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$exists quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$exists quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$expr operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$expr operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$expr quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$expr quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$gt operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$gt operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$gt quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$gt quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$gte quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$gte quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$in operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$in operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$in quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$in quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$inc operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$inc operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$lt operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$lt operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$lt quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$lt quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$lte quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$lte quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$max operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$max operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$min operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$min operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$mod operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$mod operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$mod quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$mod quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$mul operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$mul operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$ne operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$ne operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$ne quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$ne quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$nin operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$nin operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$nin quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$nin quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$not operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$not operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$not quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$not quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$or operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$or operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$or quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$or quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$pop operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$pop operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$position operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$position operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$pull operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$pull operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$read quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$read quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$rename operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$rename operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$set operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$set operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$size operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$size operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$size quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$size quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$slice operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$slice operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$sort operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$sort operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$text operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$text operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$text quiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$text quiz.txt -------------------------------------------------------------------------------- /Part 4/Codes/$type operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$type operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$unset operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$unset operator.txt -------------------------------------------------------------------------------- /Part 4/Codes/$update quiz 1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$update quiz 1.txt -------------------------------------------------------------------------------- /Part 4/Codes/$update quiz 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/$update quiz 2.txt -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo.rar -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/asgi.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/settings.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/urls.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/CRUDWithMongo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/CRUDWithMongo/wsgi.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/admin.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/apps.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/models.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/tests.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/DjangoCRUDApp/views.py -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/CRUDWithMongo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/CRUDWithMongo/manage.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo.rar -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/.idea/DjangoWithMongo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/.idea/DjangoWithMongo.iml -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/.idea/misc.xml -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/.idea/modules.xml -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/asgi.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/settings.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/urls.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/CRUDWithMongo/wsgi.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/admin.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/apps.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/models.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/tests.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/DjangoCRUDApp/views.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/CRUDWithMongo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/CRUDWithMongo/manage.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/Django-3.2.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/Django-3.2.6.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/Django-3.2.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/Django-3.2.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref-3.4.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref-3.4.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref-3.4.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | asgiref 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.4.1" 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/_pep562.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/_pep562.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/local.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/server.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/sync.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/testing.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/timeout.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/typing.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/asgiref/wsgi.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/binary.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/code.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/dbref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/dbref.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/decimal128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/decimal128.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/errors.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/int64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/int64.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/json_util.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/max_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/max_key.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/min_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/min_key.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/objectid.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/py3compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/py3compat.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/raw_bson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/raw_bson.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/regex.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/son.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/son.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/timestamp.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/tz_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/bson/tz_util.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/__main__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ky/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/tg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/tk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/uz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/auth/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/postgres/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sessions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sitemaps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/staticfiles/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/asgi.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/core/wsgi.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/db/utils.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/shortcuts.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/test/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/test/html.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/test/utils.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/base.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/conf.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/urls/utils.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/_os.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/html.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/http.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/ipv6.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/log.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/text.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/utils/tree.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/views/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/views/csrf.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/views/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/django/views/i18n.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo-1.3.6-py3.9.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo-1.3.6-py3.9.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | djongo 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/admin.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/base.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/compiler.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/creation.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/cursor.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/database.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/dynamic_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/dynamic_formsets/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/exceptions.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/features.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/models/indexes.py: -------------------------------------------------------------------------------- 1 | # This version of djongo does not support indexes 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/operations.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/schema.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/sql2mongo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/djongo/storage.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/_asyncbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/_asyncbackend.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/_trio_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/_trio_backend.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncbackend.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncquery.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/asyncresolver.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/dnssec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/dnssec.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/e164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/e164.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/edns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/edns.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/entropy.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/enum.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/exception.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/flags.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/grange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/grange.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/immutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/immutable.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/inet.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ipv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ipv4.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ipv6.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/message.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/name.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/namedict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/namedict.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/node.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/opcode.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/query.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rcode.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdata.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdataclass.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdataset.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdatatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdatatype.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/CH/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/CH/A.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/A.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/KX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/KX.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/PX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/IN/PX.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rdtypes/util.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/renderer.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/resolver.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/reversename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/reversename.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rrset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/rrset.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/serial.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/set.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tokenizer.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/transaction.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tsig.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tsigkeyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/tsigkeyring.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/ttl.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/update.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/version.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/versioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/versioned.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/wire.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/xfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/xfr.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/zone.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/zonefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dns/zonefile.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dnspython-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dnspython-2.1.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dnspython-2.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/dnspython-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dns 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/errors.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/grid_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/gridfs/grid_file.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip-21.2.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.6" 3 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pip/py.typed -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo-3.12.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo-3.12.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bson 2 | gridfs 3 | pymongo 4 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/auth.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/auth_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/auth_aws.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/bulk.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/collation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/collation.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/common.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/cursor.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/daemon.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/database.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/errors.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/hello.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/helpers.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/message.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/monitor.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/network.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/pool.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/results.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pymongo/server.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz-2021.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz-2021.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz-2021.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/__init__.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/exceptions.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/lazy.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/reference.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/tzfile.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/tzinfo.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GMT -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/GMT0 -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/UCT -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/UTC -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/pytz/zoneinfo/Zulu -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools-57.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools-57.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools-57.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse-0.2.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse-0.2.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlparse 2 | -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/cli.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/compat.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/lexer.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/sql.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/tokens.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Lib/site-packages/sqlparse/utils.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/activate -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/django-admin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/django-admin.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/django-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/django-admin.py -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/Scripts/sqlformat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/Scripts/sqlformat.exe -------------------------------------------------------------------------------- /Part 4/Codes/DjangoWithMongo/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/DjangoWithMongo/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Part 4/Codes/MongoWithNode.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/MongoWithNode.rar -------------------------------------------------------------------------------- /Part 4/Codes/MongoWithNode/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/MongoWithNode/demo.js -------------------------------------------------------------------------------- /Part 4/Codes/MongoWithPython.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/MongoWithPython.rar -------------------------------------------------------------------------------- /Part 4/Codes/MongoWithPython/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping/HEAD/Part 4/Codes/MongoWithPython/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 50-Hours-of-Big-Data-PySpark-AWS-Scala-and-Scraping 5 | --------------------------------------------------------------------------------