This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"regexp" | |
"strings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&{[{"analysisInput":{"documents":{"id":"1","language":"en","text":[{"id":"1","language":"en","text":"[]interface {}{[]interface {}{\"implies that the mishna \u003cb\u003eteaches\u003c/b\u003e a case in which \u003ci\u003eḥalitza\u003c/i\u003e is performed \u003cb\u003e\u003ci\u003eab initio\u003c/i\u003e.\u003c/b\u003e This indicates that this is the first course of action and the only way to resolve the situation. The Gemara asks further: And \u003cb\u003elet him say to him\u003c/b\u003e the following: The mishna prohibits levirate marriage \u003ci\u003eab initio\u003c/i\u003e in this case, due to a rabbinic \u003cb\u003edecree lest he proceed and perform the \u003ci\u003eḥalitza\u003c/i\u003e with the first\u003c/b\u003e sister \u003cb\u003efirst,\u003c/b\u003e whereby it would be prohibited to consummate the levirate marriage with the second. Perhaps for this reason the Sages decreed that it is prohibited to consummate the levirate marriage even if \u003ci\u003eḥalitza\u003c/i\u003e was performed with the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"github.com/xuri/excelize/v2" | |
"log" | |
"os" | |
"strconv" | |
"strings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
import os | |
import tkinter as tk | |
from tkinter import Frame | |
from tkinter import messagebox | |
class App(Frame): |